hexsha stringlengths 40 40 | size int64 5 1.05M | ext stringclasses 98
values | lang stringclasses 21
values | max_stars_repo_path stringlengths 3 945 | max_stars_repo_name stringlengths 4 118 | max_stars_repo_head_hexsha stringlengths 40 78 | max_stars_repo_licenses listlengths 1 10 | max_stars_count int64 1 368k ⌀ | max_stars_repo_stars_event_min_datetime stringlengths 24 24 ⌀ | max_stars_repo_stars_event_max_datetime stringlengths 24 24 ⌀ | max_issues_repo_path stringlengths 3 945 | max_issues_repo_name stringlengths 4 118 | max_issues_repo_head_hexsha stringlengths 40 78 | max_issues_repo_licenses listlengths 1 10 | max_issues_count int64 1 134k ⌀ | max_issues_repo_issues_event_min_datetime stringlengths 24 24 ⌀ | max_issues_repo_issues_event_max_datetime stringlengths 24 24 ⌀ | max_forks_repo_path stringlengths 3 945 | max_forks_repo_name stringlengths 4 135 | max_forks_repo_head_hexsha stringlengths 40 78 | max_forks_repo_licenses listlengths 1 10 | max_forks_count int64 1 105k ⌀ | max_forks_repo_forks_event_min_datetime stringlengths 24 24 ⌀ | max_forks_repo_forks_event_max_datetime stringlengths 24 24 ⌀ | content stringlengths 5 1.05M | avg_line_length float64 1 1.03M | max_line_length int64 2 1.03M | alphanum_fraction float64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0ed3d197e3cd391e3083716391349df6e20e85a6 | 3,159 | h | C | sdk_k64f/middleware/secure-subsystem/inc/fsl_sscp_commands.h | Sir-Branch/k64f-starter-template | f8959fd185f090363d180d69f84c2727e37cbeeb | [
"MIT"
] | 1 | 2020-08-23T20:24:19.000Z | 2020-08-23T20:24:19.000Z | sdk_k64f/middleware/secure-subsystem/inc/fsl_sscp_commands.h | Sir-Branch/xxxx-starter-template | f8959fd185f090363d180d69f84c2727e37cbeeb | [
"MIT"
] | 1 | 2020-08-24T00:41:48.000Z | 2020-08-24T02:17:44.000Z | sdk_k64f/middleware/secure-subsystem/inc/fsl_sscp_commands.h | Sir-Branch/xxxx-starter-template | f8959fd185f090363d180d69f84c2727e37cbeeb | [
"MIT"
] | null | null | null | /*
* Copyright 2018 NXP
* All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef _FSL_SSCP_COMMANDS_H_
#define _FSL_SSCP_COMMANDS_H_
/*!
@defgroup sscp_cmd SSCP commands
@details This section describes the SSCP commands and parameters.
@ingroup sscp
*/
/*!
* @addtogroup sscp_cmd
* @{
*/
/*! @brief SSCP common commands */
typedef enum _sscp_command
{
kSSCP_CMD_SSS_OpenSession,
kSSCP_CMD_SSS_CloseSession,
kSSCP_CMD_SSS_SymmetricCipherOneGo,
kSSCP_CMD_SSS_SymmetricCipherInit,
kSSCP_CMD_SSS_SymmetricCipherUpdate,
kSSCP_CMD_SSS_SymmetricCipherFinish,
kSSCP_CMD_SSS_SymmetricCryptCtr,
kSSCP_CMD_SSS_AeadOneGo,
kSSCP_CMD_SSS_AeadOneInit,
kSSCP_CMD_SSS_AeadOneUpdateAad,
kSSCP_CMD_SSS_AeadOneUpdate,
kSSCP_CMD_SSS_AeadOneFinish,
kSSCP_CMD_SSS_DigestOneGo,
kSSCP_CMD_SSS_DigestInit,
kSSCP_CMD_SSS_DigestUpdate,
kSSCP_CMD_SSS_DigestFinish,
kSSCP_CMD_SSS_MacOneGo,
kSSCP_CMD_SSS_MacInit,
kSSCP_CMD_SSS_MacUpdate,
kSSCP_CMD_SSS_MacFinish,
kSSCP_CMD_SSS_AsymmetricEncrypt,
kSSCP_CMD_SSS_AsymmetricDecrypt,
kSSCP_CMD_SSS_AsymmetricSignDigest,
kSSCP_CMD_SSS_AsymmetricVerifyDigest,
kSSCP_CMD_SSS_Tunnel,
kSSCP_CMD_SSS_DeriveKey,
kSSCP_CMD_SSS_AsymmetricDeriveKey,
kSSCP_CMD_SSS_KeyObjectAllocateHandle,
kSSCP_CMD_SSS_KeyObjectGetHandle,
kSSCP_CMD_SSS_KeyStoreAllocate,
kSSCP_CMD_SSS_KeyStoreSave,
kSSCP_CMD_SSS_KeyStoreLoad,
kSSCP_CMD_SSS_KeyStoreSetKey,
kSSCP_CMD_SSS_KeyStoreGenerateKey,
kSSCP_CMD_SSS_KeyStoreGetKey,
kSSCP_CMD_SSS_KeyStoreOpenKey,
kSSCP_CMD_SSS_KeyStoreFreezeKey,
kSSCP_CMD_SSS_KeyStoreEraseKey,
kSSCP_CMD_SSS_KeyStoreEraseAll,
/* TODO: Remove TEE */
TEE_CMD_NONE,
TEE_CMD_GENERATE_KEY,
TEE_CMD_ERASE_KEY,
TEE_CMD_GET_KEY,
TEE_CMD_FREEZE_KEY,
// TEE_CMD_ALLOCATE_KEY,
TEE_CMD_ALLOCATE_KEYSTORE,
TEE_CMD_SAVE_KEYSTORE,
TEE_CMD_LOAD_KEYSTORE,
TEE_CMD_SET_KEY,
TEE_KEYOBJ_CMD_ALLOCATE_HANDLE,
TEE_KEYOBJ_CMD_GET_HANDLE,
TEE_KEYOBJ_CMD_SET_USER,
TEE_KEYOBJ_CMD_SET_PURPOSE,
TEE_KEYOBJ_CMD_SET_ACCESS,
TEE_KEYOBJ_CMD_GET_USER,
TEE_KEYOBJ_CMD_GET_PURPOSE,
TEE_KEYOBJ_CMD_GET_ACCESS,
TEE_ASYMMETRIC_CTX_INIT,
TEE_ASYMMETRIC_CMD_ENCRYPT,
TEE_ASYMMETRIC_CMD_DECRYPT,
TEE_ASYMMETRIC_CMD_SIGN_DIGEST,
TEE_ASYMMETRIC_CMD_VERIFY_DIGEST,
TEE_SYMM_CIPHER_CTX_INIT,
TEE_SYMM_CIPHER_ONE_GO,
TEE_SYMM_CIPHER_INIT,
TEE_SYMM_CIPHER_UPDATE,
TEE_SYMM_CIPHER_FINISH,
TEE_SYMM_CIPHER_CRYPT_CTR,
TEE_DERIVE_CTX_INIT,
TEE_DERIVE_KEY,
TEE_ASYMM_DH_DERIVE_KEY,
TEE_CMD_LAST
} sscp_command_t;
enum _sscp_context_type
{
kSSCP_ParamContextType_SSS_Symmetric = 1u,
kSSCP_ParamContextType_SSS_Aead,
kSSCP_ParamContextType_SSS_Digest,
kSSCP_ParamContextType_SSS_Mac,
kSSCP_ParamContextType_SSS_Asymmetric,
kSSCP_ParamContextType_SSS_Tunnel,
kSSCP_ParamContextType_SSS_DeriveKey,
kSSCP_ParamContextType_SSS_Object,
kSSCP_ParamContextType_SSS_KeyStore,
};
/*!
*@}
*/ /* end of sscp */
#endif /* _FSL_SSCP_COMMANDS_H_ */
| 26.771186 | 65 | 0.792339 |
04a6de087616d1ef45f80b260488b5da726450a3 | 827,764 | html | HTML | docs/da.html | bramp/khan-index | 4990a20645997bf32ceb62cd55fff46cf6db9d2d | [
"Apache-2.0"
] | null | null | null | docs/da.html | bramp/khan-index | 4990a20645997bf32ceb62cd55fff46cf6db9d2d | [
"Apache-2.0"
] | null | null | null | docs/da.html | bramp/khan-index | 4990a20645997bf32ceb62cd55fff46cf6db9d2d | [
"Apache-2.0"
] | null | null | null | <!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="da" xml:lang="da">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>Khan Academy</title>
<style>
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
span.underline{text-decoration: underline;}
div.column{display: inline-block; vertical-align: top; width: 50%;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
ul.task-list{list-style: none;}
</style>
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
<![endif]-->
</head>
<body>
<header id="title-block-header">
<h1 class="title">Khan Academy</h1>
</header>
<nav id="TOC" role="doc-toc">
<ul>
<li><a href="#matematik-160-topics"><span>Matematik</span> (160 Topics)</a>
<ul>
<li><a href="#begyndermatematik-8-topics"><span>Begyndermatematik</span> (8 Topics)</a></li>
<li><a href="#1-klasse-3-topics"><span>1. klasse</span> (3 Topics)</a></li>
<li><a href="#2-klasse-4-topics"><span>2. klasse</span> (4 Topics)</a></li>
<li><a href="#3-klasse-6-topics"><span>3. klasse</span> (6 Topics)</a></li>
<li><a href="#4-klasse-8-topics"><span>4. klasse</span> (8 Topics)</a></li>
<li><a href="#5-klasse-7-topics"><span>5. klasse</span> (7 Topics)</a></li>
<li><a href="#6-klasse-8-topics"><span>6. klasse</span> (8 Topics)</a></li>
<li><a href="#7-klasse-7-topics"><span>7. klasse</span> (7 Topics)</a></li>
<li><a href="#8-klasse-7-topics"><span>8. klasse</span> (7 Topics)</a></li>
<li><a href="#grundlæggende-aritmetik-5-topics"><span>Grundlæggende aritmetik</span> (5 Topics)</a></li>
<li><a href="#grundlæggende-geometri-8-topics"><span>Grundlæggende geometri</span> (8 Topics)</a></li>
<li><a href="#opvarmning-til-algebra-10-topics"><span>Opvarmning til algebra</span> (10 Topics)</a></li>
<li><a href="#grundlæggende-algebra-8-topics"><span>Grundlæggende algebra</span> (8 Topics)</a></li>
<li><a href="#algebra-i-17-topics"><span>Algebra I</span> (17 Topics)</a></li>
<li><a href="#geometri-gymnasie-niveau-8-topics"><span>Geometri (gymnasie-niveau)</span> (8 Topics)</a></li>
<li><a href="#algebra-ii-13-topics"><span>Algebra II</span> (13 Topics)</a></li>
<li><a href="#trigonometri-5-topics"><span>Trigonometri</span> (5 Topics)</a></li>
<li><a href="#statistik-gymnasie-niveau-7-topics"><span>Statistik (gymnasie-niveau)</span> (7 Topics)</a></li>
<li><a href="#precalculus-7-topics"><span>Precalculus</span> (7 Topics)</a></li>
<li><a href="#differentialregning-6-topics"><span>Differentialregning</span> (6 Topics)</a></li>
<li><a href="#integralregning-5-topics"><span>Integralregning</span> (5 Topics)</a></li>
<li><a href="#multivariabel-infinitesimalregning--5-topics"><span>Multivariabel infinitesimalregning </span> (5 Topics)</a></li>
<li><a href="#differentialligninger-3-topics"><span>Differentialligninger</span> (3 Topics)</a></li>
<li><a href="#lineær-algebra-3-topics"><span>Lineær algebra</span> (3 Topics)</a></li>
<li><a href="#infinitesimalregning-al-indhold-2017-udgave-9-topics"><span>Infinitesimalregning al indhold (2017 udgave)</span> (9 Topics)</a></li>
<li><a href="#matematik-for-sjov-og-ære-5-topics"><span>Matematik for sjov og ære</span> (5 Topics)</a></li>
</ul></li>
<li><a href="#biologi-43-topics"><span>Biologi</span> (43 Topics)</a>
<ul>
<li><a href="#fysik-20-topics"><span>Fysik</span> (20 Topics)</a></li>
<li><a href="#kemi-17-topics"><span>Kemi</span> (17 Topics)</a></li>
<li><a href="#organisk-kemi-14-topics"><span>Organisk kemi</span> (14 Topics)</a></li>
<li><a href="#biologi-32-topics"><span>Biologi</span> (32 Topics)</a></li>
<li><a href="#kosmologi-og-astronomi-4-topics"><span>Kosmologi og astronomi</span> (4 Topics)</a></li>
<li><a href="#sundhed-og-medicin-25-topics"><span>Sundhed og medicin</span> (25 Topics)</a></li>
</ul></li>
<li><a href="#økonomi-og-finans-8-topics"><span>Økonomi og Finans</span> (8 Topics)</a>
<ul>
<li><a href="#makroøkonomi-6-topics"><span>Makroøkonomi</span> (6 Topics)</a></li>
<li><a href="#mikroøkonomi-9-topics"><span>Mikroøkonomi</span> (9 Topics)</a></li>
<li><a href="#finans--og-kapitalmarkederne-10-topics"><span>Finans- og kapitalmarkederne</span> (10 Topics)</a></li>
</ul></li>
<li><a href="#kunst-og-humaniora-34-topics"><span>Kunst og Humaniora</span> (34 Topics)</a>
<ul>
<li><a href="#ap︎-art-history-12-topics"><span>AP®︎ Art history</span> (12 Topics)</a></li>
<li><a href="#historie-6-topics"><span>Historie</span> (6 Topics)</a></li>
<li><a href="#musik-4-topics"><span>Musik</span> (4 Topics)</a></li>
<li><a href="#prehistoric-art-in-europe-3-topics"><span>Prehistoric art in Europe</span> (3 Topics)</a></li>
<li><a href="#art-of-the-ancient-mediterranean-9-topics"><span>Art of the ancient Mediterranean</span> (9 Topics)</a></li>
<li><a href="#brought-to-you-by-smarthistory-medieval-europe-9-topics"><span>Brought to you by Smarthistory. Medieval Europe</span> (9 Topics)</a></li>
<li><a href="#kunst-fra-den-islamiske-verden-5-topics"><span>Kunst fra den islamiske verden</span> (5 Topics)</a></li>
<li><a href="#renaissance-and-reformation-in-europe-8-topics"><span>Renaissance and Reformation in Europe</span> (8 Topics)</a></li>
<li><a href="#barok-rokoko-og-nyklassicistisk-kunst-i-europa-4-topics"><span>Barok, Rokoko og Nyklassicistisk kunst i Europa</span> (4 Topics)</a></li>
<li><a href="#art-of-the-americas-8-topics"><span>Art of the Americas</span> (8 Topics)</a></li>
<li><a href="#kunst-fra-det-19-århundredes-europa-7-topics"><span>Kunst fra det 19. århundredes Europa</span> (7 Topics)</a></li>
<li><a href="#expressionism-to-pop-art-13-topics"><span>Expressionism to Pop Art</span> (13 Topics)</a></li>
<li><a href="#toward-a-global-culture-4-topics"><span>Toward a global culture</span> (4 Topics)</a></li>
<li><a href="#kunst-fra-asien-7-topics"><span>Kunst fra Asien</span> (7 Topics)</a></li>
</ul></li>
<li><a href="#datalogi-5-topics"><span>Datalogi</span> (5 Topics)</a>
<ul>
<li><a href="#programmering-14-topics"><span>Programmering</span> (14 Topics)</a></li>
<li><a href="#datalogi-6-topics"><span>Datalogi</span> (6 Topics)</a></li>
<li><a href="#resources--11-topics"><span>Resources </span> (11 Topics)</a></li>
</ul></li>
</ul>
</nav>
<p>An index of all the articles on <span><a href="https://da.khanacademy.org/" class="uri">https://da.khanacademy.org/</a></span> with links to video playlists.</p>
<p>Generated by <a href="https://github.com/bramp/khan-index">https://github.com/bramp/khan-index</a></p>
<h1 id="matematik-160-topics"><a href="https://da.khanacademy.org/math">Matematik</a> (160 Topics)</h1>
<h2 id="begyndermatematik-8-topics"><a href="https://da.khanacademy.org/math/early-math">Begyndermatematik</a> (8 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-counting-topic">Lær at tælle</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-counting-topic/cc-early-math-counting">Lær at tælle</a> (3 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=L%C3%A6r+at+t%C3%A6lle&video_ids=y2-uaPiyoxc%2CPEeUTQ0Gri8">2m 54s</a> )</li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-counting-topic/cc-early-math-numbers-120">Tallene 0 til 120</a> (4 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Tallene+0+til+120&video_ids=9XZypM2Z3Ro%2C1AqkBdCBm9o%2CUnPpFw3natI">8m 27s</a> )</li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-counting-topic/cc-early-math-count-object-topic">Vi tæller ting</a> (3 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Vi+t%C3%A6ller+ting&video_ids=leDYnoNSvD4%2CI9S5CvSqb5A%2CEUqhLxFccbM">4m</a> )</li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-counting-topic/cc-early-math-comparing-numbers">Sammenligning af små tal</a> (3 Exercises, 1 Quiz, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Sammenligning+af+sm%C3%A5+tal&video_ids=__nkbr6DeTg%2CtJrSILRXOUc%2CUA975j_qsTQ">4m 18s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-add-sub-basics">Introduktion til addition og subtraktion (plus og minus)</a> (6 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-add-sub-basics/cc-early-math-add-sub-intro">Hvad er addition? Hvad er subtraktion?</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Hvad+er+addition%3F+Hvad+er+subtraktion%3F&video_ids=fsTD_jqseBA%2CAO9bHbUdg-M">6m 50s</a> )</li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-add-sub-basics/cc-early-math-making-5-9">Lav små tal</a> (2 Exercises, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Lav+sm%C3%A5+tal&video_ids=A-ykhY_IoaU">4m 6s</a> )</li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-add-sub-basics/cc-early-math-make-10">Giv mig 10</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Giv+mig+10&video_ids=An46SYAxhtc%2C9FC0WT186aY">3m 54s</a> )</li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-add-sub-basics/cc-early-math-together-apart">Læg sammen, træk fra</a> (2 Exercises, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=L%C3%A6g+sammen%2C+tr%C3%A6k+fra&video_ids=ie0waMJxnTs%2CkpEJwpemL2Q">4m 32s</a> )</li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-add-sub-basics/cc-early-math-add-subtract-10">Sammenhæng mellem plus og minus</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Sammenh%C3%A6ng+mellem+plus+og+minus&video_ids=zVLjWIftX_o">2m 5s</a> )</li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-add-sub-basics/cc-early-math-add-sub-word-problem-within-10">Tekstopgaver med plus og minus</a> (2 Exercises, 1 Quiz, 1 Test, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+med+plus+og+minus&video_ids=-3DFzxbP9Fk%2CqSkpZswoZTc">2m 45s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-place-value-topic">Pladsværdi (tiere og hundreder)</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-place-value-topic/cc-early-math-teens">Tal mellem 10 og 20</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Tal+mellem+10+og+20&video_ids=ourH3ueWNmA%2CzqwVKhQV_2w">5m 58s</a> )</li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-place-value-topic/cc-early-math-tens">Tiernes</a> (3 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Tiernes&video_ids=wx2gI8iwMCA%2CX_PnRFAKbkg%2C-Zlq5tNl94M">13m 13s</a> )</li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-place-value-topic/cc-early-math-two-digit-compare">Sammenligning af 2-cifrede tal</a> (1 Article, 2 Exercises, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Sammenligning+af+2-cifrede+tal&video_ids=nFsQA2Zvy1o">5m 4s</a> )</li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-place-value-topic/cc-early-math-three-digit-compare">Sammenligning af 3-cifrede tal</a> (1 Exercise, 1 Quiz, 1 Test, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Sammenligning+af+3-cifrede+tal&video_ids=9Jg5S7F2SMQ">2m 4s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-add-sub-20">Addition og subtraktion med tal under 20</a> (7 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-add-sub-20/cc-early-math-add-20">Addition med tal under 20</a> (2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Addition+med+tal+under+20&video_ids=ZgzpTx-s9Zo%2CAK0NZITv5Ns%2CUtm875JRi-o">9m 50s</a> )</li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-add-sub-20/cc-early-math-sub-20">Subtraktion med tal under 20</a> (1 Exercise, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Subtraktion+med+tal+under+20&video_ids=9McJ3GobPaY">4m 3s</a> )</li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-add-sub-20/cc-early-math-equals-sign">Lighedstegn</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Lighedstegn&video_ids=gEGKvx1wlFg">4m 56s</a> )</li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-add-sub-20/cc-early-math-word-problems-within-20">Tekstopgaver med tal op til 20</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+med+tal+op+til+20&video_ids=fGok2nHOjnI%2CSfgD7Sm08ns">9m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-add-sub-20/cc-early-math-word-problems-more-fewer-20">Tekstopgaver med "mere" eller "mindre"</a> (2 Exercises, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+med+%22mere%22+eller+%22mindre%22&video_ids=osIFa9zcI-w%2C3rs7sFPoiZ4">6m 37s</a> )</li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-add-sub-20/cc-early-math-repeated-addition">Gentagen addition</a> (1 Exercise, 1 Test, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Gentagen+addition&video_ids=j5c6pqAP2IA">2m 9s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-add-sub-100">Addition og subtraktion med tal under 100</a> (11 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-add-sub-100/cc-early-math-skip-counting">Tæl i spring</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=T%C3%A6l+i+spring&video_ids=UwWn84u6i8s%2CrfZokAnD7QM">4m 41s</a> )</li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-add-sub-100/cc-early-math-add-ones-tens">Plus med enere og tiere</a> (1 Article, 2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Plus+med+enere+og+tiere&video_ids=mKsKU0BAiRM%2CDy5uDkOoMNc%2C7_QPAdHILzw">8m 9s</a> )</li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-add-sub-100/cc-early-math-sub-ones-tens">Minus med enere og tiere</a> (2 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Minus+med+enere+og+tiere&video_ids=8YR1E7XWPz8%2CFWEqB0J6mgA%2CbNNrlzel4Gw">7m 54s</a> )</li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-add-sub-100/cc-early-math-add-two-dig-intro">Introduktion af plus med to-cifrede tal</a> (3 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+af+plus+med+to-cifrede+tal&video_ids=EV38zfiY6Vs%2CK5rmfHlHy20%2CUjfmOmPARyk%2CG1cNKc3PD74%2CDzJvR56Suss">16m 18s</a> )</li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-add-sub-100/cc-early-math-sub-two-dig-intro">Introduktion til minus med to-cifrede tal</a> (2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+minus+med+to-cifrede+tal&video_ids=slIX9EDcHgE%2CRzEFGpe0rv4%2CzvetEuVJ0bE">8m 8s</a> )</li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-add-sub-100/cc-early-math-strategies-for-adding-within-100">Metoder til at plusse tal under 100</a> (4 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Metoder+til+at+plusse+tal+under+100&video_ids=Q35CH9B3tvc%2CDzJvR56Suss%2CkMHFY6ZrKbU%2CI5xcZgyY4ag">11m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-add-sub-100/cc-early-math-add-subtract-100">Addition med tal under 100</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Addition+med+tal+under+100&video_ids=K5rmfHlHy20%2C8mcTsyV56jI">7m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-add-sub-100/subtraction-within-100">Subtraktion med tal under 100</a> (1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Subtraktion+med+tal+under+100&video_ids=slIX9EDcHgE%2CegjDLFX9VHg">8m 3s</a> )</li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-add-sub-100/cc-early-math-add-sub-100-word-problems">Tekstopgaver med tal under 100</a> (3 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+med+tal+under+100&video_ids=EQrCdEF3vNE%2Crm3NjcSmFFo%2C1dZsuE0vxEI%2CwyWy4PouQxQ%2CZJ39gHgz_Dk">20m 15s</a> )</li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-add-sub-100/cc-early-math-more-fewer-100">Tekstopgaver med "mere" eller "mindre" med tal op til 100</a> (2 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+med+%22mere%22+eller+%22mindre%22+med+tal+op+til+100&video_ids=qyvwN-2PoXA%2CQYOieJuzDr4%2CpvyqucC-0NU">9m 12s</a> )</li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-add-sub-100/cc-early-math-add-sub-miss-value-prob">Addition og subtraktion hvor tallet mangler</a> (1 Exercise, 1 Quiz, 1 Test, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Addition+og+subtraktion+hvor+tallet+mangler&video_ids=zTK6XUF0HAs">5m 44s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-add-sub-1000">Addition og subtraktion med tal under 1000</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-add-sub-1000/skip-counting-by-100s">Skip counting by 100s</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Skip+counting+by+100s&video_ids=ruAXk6RnkG8">2m 49s</a> )</li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-add-sub-1000/cc-early-math-add-ones-tens-hundreds">Plus og enere, tiere og hundreder</a> (2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Plus+og+enere%2C+tiere+og+hundreder&video_ids=wwO6DjL_wFw%2CSCBp0d6zR2I%2Cd3109sV6izY">10m 16s</a> )</li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-add-sub-1000/cc-early-math-sub-ones-tens-hundreds">Minus og enere, tiere og hundreder</a> (2 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Minus+og+enere%2C+tiere+og+hundreder&video_ids=4BNIGTHUTTM%2CycBxbgjQns4%2Ci8r7ZTUqB9w">10m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-add-sub-1000/cc-early-math-strategies-for-adding-two-and-three-digit-numbers">Metoder til at lægge 2- og 3-cifrede tal sammen</a> (3 Exercises, 1 Quiz, 1 Test, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Metoder+til+at+l%C3%A6gge+2-+og+3-cifrede+tal+sammen&video_ids=Hc9mcx739js%2CjAfJcgPGqgI%2CNq88IHw4Y9E%2CWevZMyikGV4">17m 33s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-measure-data-topic">Måling og data</a> (9 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-measure-data-topic/cc-early-math-length-intro">Introduktion til længde</a> (3 Exercises, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+l%C3%A6ngde&video_ids=SQmyTmO8OKw">2m 37s</a> )</li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-measure-data-topic/cc-early-math-measuring-length">Måling af længder</a> (1 Article, 2 Exercises, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=M%C3%A5ling+af+l%C3%A6ngder&video_ids=muC7HMIEYDU%2C_irJM-um6HE">7m 34s</a> )</li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-measure-data-topic/cc-early-math-compare-estimate-length">Sammenligning og estimering af længder</a> (1 Article, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Sammenligning+og+estimering+af+l%C3%A6ngder&video_ids=o-D-8B_5ibU%2C0B91xPrwcPE">5m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-measure-data-topic/cc-early-math-length-word-problems">Tekstopgaver med længder</a> (1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+med+l%C3%A6ngder&video_ids=Ei5mgFtUGns%2CpdleRJd9YNY">9m 58s</a> )</li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-measure-data-topic/cc-early-picture-graphs">Piktogrammer (billeddiagrammer)</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Piktogrammer+%28billeddiagrammer%29&video_ids=w49ddHSDGUA%2CHN6FNS7lRhw">5m 57s</a> )</li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-measure-data-topic/cc-early-math-bar-graphs">Søjlediagrammer (pindediagrammer)</a> (3 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=S%C3%B8jlediagrammer+%28pindediagrammer%29&video_ids=OmLl6pkvV-I%2CJCdbCdwqXbc%2CDvV0e5F98NQ">9m 38s</a> )</li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-measure-data-topic/cc-early-math-line-plots">Prikdiagrammer</a> (1 Article, 2 Exercises, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Prikdiagrammer&video_ids=AtiOjlyOQf4%2CHN6FNS7lRhw">7m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-measure-data-topic/cc-early-math-time">Tidsregning</a> (3 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Tidsregning&video_ids=obtZ7_qL6FU%2CybOvYqAQKQw">5m 7s</a> )</li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-measure-data-topic/cc-early-math-money">Penge</a> (1 Article, 1 Exercise, 1 Quiz, 1 Test, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Penge&video_ids=s6NOa1KTCxQ%2CpJ8KwRztfF0">7m 49s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-geometry-topic">Geometri</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-geometry-topic/cc-early-math-shapes">Grundlæggende figurer</a> (4 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Grundl%C3%A6ggende+figurer&video_ids=8xbIS2UkQxI%2C10dTx1Zy_4w">10m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-geometry-topic/cc-early-math-properties-shapes">Genkend figurer</a> (1 Article, 2 Exercises, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Genkend+figurer&video_ids=8xbIS2UkQxI%2C10dTx1Zy_4w">10m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-geometry-topic/cc-early-math-composing-shapes">Sammensatte figurer</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Sammensatte+figurer&video_ids=K3GV13uokbk">2m 4s</a> )</li>
<li><a href="https://da.khanacademy.org/math/early-math/cc-early-math-geometry-topic/cc-early-math-fractions-of-shapes">Brøkdele af figurer</a> (2 Exercises, 1 Quiz, 1 Test, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Br%C3%B8kdele+af+figurer&video_ids=0lSTXtwPuOU%2CYwNX9uWszQY">5m 30s</a> )</li>
</ul></li>
</ul>
<h2 id="1-klasse-3-topics"><a href="https://da.khanacademy.org/math/cc-1st-grade-math">1. klasse</a> (3 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/math/cc-1st-grade-math/cc-1st-place-value">Pladsværdi</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-1st-grade-math/cc-1st-place-value/cc-1st-numbers-120">Tallene 0 til 120</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Tallene+0+til+120&video_ids=9XZypM2Z3Ro%2C1AqkBdCBm9o">6m 52s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-1st-grade-math/cc-1st-place-value/cc-1st-ones-tens">Enere og tiere</a> (3 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Enere+og+tiere&video_ids=wx2gI8iwMCA%2CX_PnRFAKbkg%2C-Zlq5tNl94M">13m 13s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-1st-grade-math/cc-1st-place-value/cc-1st-two-digit-compare">Sammenligning af 2-cifrede tal</a> (2 Exercises, 1 Test, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Sammenligning+af+2-cifrede+tal&video_ids=nFsQA2Zvy1o">5m 4s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-1st-grade-math/cc-1st-add-subtract">Addition og subtraktion</a> (9 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-1st-grade-math/cc-1st-add-subtract/cc-1st-add-subtract-10">Sammenhæng mellem plus og minus</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Sammenh%C3%A6ng+mellem+plus+og+minus&video_ids=zVLjWIftX_o">2m 5s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-1st-grade-math/cc-1st-add-subtract/cc-1st-add-20">Addition med tal under 20</a> (2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Addition+med+tal+under+20&video_ids=ZgzpTx-s9Zo%2CAK0NZITv5Ns%2CUtm875JRi-o">9m 50s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-1st-grade-math/cc-1st-add-subtract/cc-1st-sub-20">Subtraktion med tal under 20</a> (1 Exercise, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Subtraktion+med+tal+under+20&video_ids=9McJ3GobPaY">4m 3s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-1st-grade-math/cc-1st-add-subtract/cc-1st-equal-sign">Lighedstegn</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Lighedstegn&video_ids=gEGKvx1wlFg">4m 56s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-1st-grade-math/cc-1st-add-subtract/cc-1st-word-problems-within-20">Tekstopgaver med tal op til 20</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+med+tal+op+til+20&video_ids=fGok2nHOjnI%2CSfgD7Sm08ns">9m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-1st-grade-math/cc-1st-add-subtract/cc-1st-word-problems-more-fewer-20">Tekstopgaver med "mere" eller "mindre"</a> (2 Exercises, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+med+%22mere%22+eller+%22mindre%22&video_ids=osIFa9zcI-w%2C3rs7sFPoiZ4">6m 37s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-1st-grade-math/cc-1st-add-subtract/cc-1st-add-ones-tens">Plus med enere og tiere</a> (1 Article, 2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Plus+med+enere+og+tiere&video_ids=mKsKU0BAiRM%2CDy5uDkOoMNc%2C7_QPAdHILzw">8m 9s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-1st-grade-math/cc-1st-add-subtract/cc-1st-add-two-dig-intro">Introduktion af plus med to-cifrede tal</a> (3 Exercises, 1 Quiz, 1 Test, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+af+plus+med+to-cifrede+tal&video_ids=EV38zfiY6Vs%2CK5rmfHlHy20%2CUjfmOmPARyk%2CG1cNKc3PD74%2CDzJvR56Suss">16m 18s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-1st-grade-math/cc-1st-measurement-geometry">Måling, data og geometri</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-1st-grade-math/cc-1st-measurement-geometry/copy-of-cc-early-math-length-intro">Introduktion til længde</a> (3 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+l%C3%A6ngde&video_ids=SQmyTmO8OKw%2CpdleRJd9YNY">6m 45s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-1st-grade-math/cc-1st-measurement-geometry/cc-1st-bar-graphs">Søjlediagrammer (pindediagrammer)</a> (1 Exercise, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=S%C3%B8jlediagrammer+%28pindediagrammer%29&video_ids=OmLl6pkvV-I">2m 57s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-1st-grade-math/cc-1st-measurement-geometry/cc-1st-time">Tidsregning</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Tidsregning&video_ids=obtZ7_qL6FU">2m 51s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-1st-grade-math/cc-1st-measurement-geometry/cc-1st-shapes">Figurer</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Figurer&video_ids=8xbIS2UkQxI%2C10dTx1Zy_4w">10m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-1st-grade-math/cc-1st-measurement-geometry/cc-1st-fractions-of-shapes">Brøkdele af figurer</a> (1 Exercise, 1 Quiz, 1 Test, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Br%C3%B8kdele+af+figurer&video_ids=0lSTXtwPuOU">2m 25s</a> )</li>
</ul></li>
</ul>
<h2 id="2-klasse-4-topics"><a href="https://da.khanacademy.org/math/cc-2nd-grade-math">2. klasse</a> (4 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/math/cc-2nd-grade-math/cc-2nd-place-value">Pladsværdi</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-2nd-grade-math/cc-2nd-place-value/cc-2nd-hundreds">Hundredernes</a> (2 Exercises, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Hundredernes&video_ids=v3gdX07Q6qE">3m 2s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-2nd-grade-math/cc-2nd-place-value/cc-2nd-three-digit-compare">Sammenligning af 3-cifrede tal</a> (1 Exercise, 1 Test, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Sammenligning+af+3-cifrede+tal&video_ids=9Jg5S7F2SMQ">2m 4s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-2nd-grade-math/cc-2nd-add-subtract-100">Addition og subtraktion med tal under 100</a> (12 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-2nd-grade-math/cc-2nd-add-subtract-100/cc-2nd-repeated-addition">Gentagen addition</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Gentagen+addition&video_ids=j5c6pqAP2IA">2m 9s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-2nd-grade-math/cc-2nd-add-subtract-100/cc-2nd-add-ones-tens">Plus med enere og tiere</a> (1 Article, 2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Plus+med+enere+og+tiere&video_ids=mKsKU0BAiRM%2CDy5uDkOoMNc%2C7_QPAdHILzw">8m 9s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-2nd-grade-math/cc-2nd-add-subtract-100/cc-2nd-sub-ones-tens">Minus med enere og tiere</a> (2 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Minus+med+enere+og+tiere&video_ids=8YR1E7XWPz8%2CFWEqB0J6mgA%2CbNNrlzel4Gw">7m 54s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-2nd-grade-math/cc-2nd-add-subtract-100/cc-2nd-add-two-dig-intro">Introduktion af plus med to-cifrede tal</a> (3 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+af+plus+med+to-cifrede+tal&video_ids=EV38zfiY6Vs%2CK5rmfHlHy20%2CUjfmOmPARyk%2CG1cNKc3PD74%2CDzJvR56Suss">16m 18s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-2nd-grade-math/cc-2nd-add-subtract-100/cc-2nd-sub-two-dig-intro">Introduktion til minus med to-cifrede tal</a> (2 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+minus+med+to-cifrede+tal&video_ids=slIX9EDcHgE%2CRzEFGpe0rv4%2CzvetEuVJ0bE">8m 8s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-2nd-grade-math/cc-2nd-add-subtract-100/cc-2nd-math-strategies-for-adding-within-100">Metoder til at plusse tal under 100</a> (4 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Metoder+til+at+plusse+tal+under+100&video_ids=Q35CH9B3tvc%2CDzJvR56Suss%2CkMHFY6ZrKbU%2CI5xcZgyY4ag">11m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-2nd-grade-math/cc-2nd-add-subtract-100/cc-2nd-add-100">Addition med tal under 100</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Addition+med+tal+under+100&video_ids=K5rmfHlHy20%2C8mcTsyV56jI">7m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-2nd-grade-math/cc-2nd-add-subtract-100/cc-2nd-subtraction-within-100">Subtraktion med tal under 100</a> (1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Subtraktion+med+tal+under+100&video_ids=slIX9EDcHgE%2CegjDLFX9VHg">8m 3s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-2nd-grade-math/cc-2nd-add-subtract-100/cc-2nd-add-sub-100-word-problems">Tekstopgaver med tal under 100</a> (3 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+med+tal+under+100&video_ids=EQrCdEF3vNE%2Crm3NjcSmFFo%2C1dZsuE0vxEI%2CwyWy4PouQxQ%2CZJ39gHgz_Dk">20m 15s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-2nd-grade-math/cc-2nd-add-subtract-100/cc-2nd-more-fewer-100">Tekstopgaver med "mere" eller "mindre" med tal op til 100</a> (2 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+med+%22mere%22+eller+%22mindre%22+med+tal+op+til+100&video_ids=qyvwN-2PoXA%2CQYOieJuzDr4%2CpvyqucC-0NU">9m 12s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-2nd-grade-math/cc-2nd-add-subtract-100/cc-2nd-skip-counting">Tæl i spring</a> (3 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=T%C3%A6l+i+spring&video_ids=UwWn84u6i8s%2CrfZokAnD7QM%2CruAXk6RnkG8">7m 30s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-2nd-grade-math/cc-2nd-add-subtract-100/cc-2nd-add-sub-miss-value-prob">Addition og subtraktion hvor tallet mangler</a> (1 Exercise, 1 Quiz, 1 Test, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Addition+og+subtraktion+hvor+tallet+mangler&video_ids=zTK6XUF0HAs">5m 44s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-2nd-grade-math/cc-2nd-add-subtract-1000">Addition og subtraktion med tal under 1000</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-2nd-grade-math/cc-2nd-add-subtract-1000/cc-2nd-add-ones-tens-hundreds">Plus og enere, tiere og hundreder</a> (2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Plus+og+enere%2C+tiere+og+hundreder&video_ids=wwO6DjL_wFw%2CSCBp0d6zR2I%2Cd3109sV6izY">10m 16s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-2nd-grade-math/cc-2nd-add-subtract-1000/cc-2nd-sub-ones-tens-hundreds">Minus og enere, tiere og hundreder</a> (2 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Minus+og+enere%2C+tiere+og+hundreder&video_ids=4BNIGTHUTTM%2CycBxbgjQns4%2Ci8r7ZTUqB9w">10m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-2nd-grade-math/cc-2nd-add-subtract-1000/cc-2nd-strategies-for-adding-two-and-three-digit-numbers">Metoder til at lægge 2- og 3-cifrede tal sammen</a> (4 Exercises, 1 Quiz, 1 Test, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Metoder+til+at+l%C3%A6gge+2-+og+3-cifrede+tal+sammen&video_ids=cUKmbQjpu5A%2CHc9mcx739js%2CjAfJcgPGqgI%2CNq88IHw4Y9E%2CWevZMyikGV4">21m 2s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-2nd-grade-math/cc-2nd-measurement-data">Måling, data og geometri</a> (10 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-2nd-grade-math/cc-2nd-measurement-data/cc-2nd-measuring-length">Måling af længder</a> (1 Article, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=M%C3%A5ling+af+l%C3%A6ngder&video_ids=muC7HMIEYDU%2C_irJM-um6HE">7m 34s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-2nd-grade-math/cc-2nd-measurement-data/cc-2nd-compare-estimate-length">Sammenligning og estimering af længder</a> (1 Article, 2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Sammenligning+og+estimering+af+l%C3%A6ngder&video_ids=o-D-8B_5ibU%2C0B91xPrwcPE">5m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-2nd-grade-math/cc-2nd-measurement-data/cc-2nd-length-word-problems">Tekstopgaver med længder</a> (1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+med+l%C3%A6ngder&video_ids=Ei5mgFtUGns%2CpdleRJd9YNY">9m 58s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-2nd-grade-math/cc-2nd-measurement-data/cc-2nd-picture-graphs">Piktogrammer (billeddiagrammer)</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Piktogrammer+%28billeddiagrammer%29&video_ids=w49ddHSDGUA%2CHN6FNS7lRhw">5m 57s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-2nd-grade-math/cc-2nd-measurement-data/cc-2nd-bar-graphs">Søjlediagrammer (pindediagrammer)</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=S%C3%B8jlediagrammer+%28pindediagrammer%29&video_ids=JCdbCdwqXbc%2Cte52RK_Iea0">2m 50s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-2nd-grade-math/cc-2nd-measurement-data/cc-2nd-line-plots">Prikdiagrammer</a> (2 Exercises, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Prikdiagrammer&video_ids=AtiOjlyOQf4%2CHN6FNS7lRhw">7m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-2nd-grade-math/cc-2nd-measurement-data/cc-2nd-time">Tidsregning</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Tidsregning&video_ids=obtZ7_qL6FU%2CybOvYqAQKQw">5m 7s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-2nd-grade-math/cc-2nd-measurement-data/cc-2nd-money">Penge</a> (1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Penge&video_ids=s6NOa1KTCxQ%2CpJ8KwRztfF0">7m 49s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-2nd-grade-math/cc-2nd-measurement-data/cc-2nd-shapes">Figurer</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Figurer&video_ids=8xbIS2UkQxI%2C10dTx1Zy_4w">10m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-2nd-grade-math/cc-2nd-measurement-data/cc-2nd-fractions-of-shapes">Brøkdele af figurer</a> (1 Exercise, 1 Quiz, 1 Test, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Br%C3%B8kdele+af+figurer&video_ids=YwNX9uWszQY">3m 5s</a> )</li>
</ul></li>
</ul>
<h2 id="3-klasse-6-topics"><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018">3. klasse</a> (6 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/cc-3rd-add-sub-topic">Addition og subtraktion</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/cc-3rd-add-sub-topic/cc-3rd-strategies-for-adding-two-and-three-digit-numbers">Metoder til at lægge 2- og 3-cifrede tal sammen</a> (4 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Metoder+til+at+l%C3%A6gge+2-+og+3-cifrede+tal+sammen&video_ids=Hc9mcx739js%2CNq88IHw4Y9E%2CWevZMyikGV4%2CcUKmbQjpu5A">13m 34s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/cc-3rd-add-sub-topic/cc-3rd-adding-carrying">Addition med mente med tal under 1000</a> (1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Addition+med+mente+med+tal+under+1000&video_ids=dz4cQ9gr8Rk%2C_eawSQuZ8jY%2Cxs7IS4IVouM">8m</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/cc-3rd-add-sub-topic/cc-3rd-regrouping-3-dig">Brug af omgruppering til fratrækning under 1000</a> (1 Exercise, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Brug+af+omgruppering+til+fratr%C3%A6kning+under+1000&video_ids=IVWP0vVDcbM%2CMIw30EOiZ5M%2CLYgIfp1KPkE%2Ca5FifaKS_Wg%2CmeGOEBsaHi4">14m 56s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/cc-3rd-add-sub-topic/cc-3rd-add-sub-missing-value">Addition og subtraktion hvor tallet mangler</a> (1 Exercise, 1 Quiz, 1 Test, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Addition+og+subtraktion+hvor+tallet+mangler&video_ids=5ZMHdtGySvI">3m 53s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/cc-3rd-mult-div-topic">Multiplikation og division</a> (10 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/cc-3rd-mult-div-topic/cc-3rd-mult">Introduktion til multiplikation</a> (1 Article, 4 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+multiplikation&video_ids=RNxwasijbAo%2COu04jLURVWU%2CP37Av9WxrTA">13m 21s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/cc-3rd-mult-div-topic/cc-3rd-relate-mult-div">Sammenhæng mellem multiplikation og division</a> (2 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Sammenh%C3%A6ng+mellem+multiplikation+og+division&video_ids=qcMJ1pN36r4%2C6QZCj4O9sk0%2CzHSyo6U0-04%2CzbuJo-5y1ds%2CX_uha_ZitR4">16m 7s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/cc-3rd-mult-div-topic/cc-3rd-division">Introduktion til division</a> (1 Article, 2 Exercises, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+division&video_ids=1WV6Ui8xsuA">8m 1s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/cc-3rd-mult-div-topic/1-digit-multiplication-division">Multiplikation og division med 1-cifrede tal</a> (3 Exercises, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Multiplikation+og+division+med+1-cifrede+tal&video_ids=MAZLq6uPa3k">5m 18s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/cc-3rd-mult-div-topic/cc-3rd-grade-properties-of-multiplication">Egenskaber for multiplikation</a> (6 Articles, 3 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Egenskaber+for+multiplikation&video_ids=_S6aNpWey0A%2CDnpxuBxCC_I%2CWqxfm7EPcjo">17m 43s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/cc-3rd-mult-div-topic/cc-3rd-two-step-word-problemsa">Fler-trins tekstopgaver</a> (4 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Fler-trins+tekstopgaver&video_ids=_zK9Da-8xUI%2CujIf_6pP8ZE%2C61wR1J3cVm4%2CUHJyYgRGQ08">17m 16s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/cc-3rd-mult-div-topic/cc-3rd-grade-multiplying-by-10">Gange med 10</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Gange+med+10&video_ids=1yDTeQEgz4U%2CaGdO1Y6ciwc">5m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/cc-3rd-mult-div-topic/cc-3rd-grade-properties-patterns">Mønstre i aritmetik</a> (3 Exercises, 1 Quiz, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=M%C3%B8nstre+i+aritmetik&video_ids=l-6uEtTBH7g%2CSFRTTUtAjg4%2CCIoPn6BnLNM">16m 23s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/cc-3rd-fractions-topic">Brøker</a> (8 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/cc-3rd-fractions-topic/cc-3rd-fractions-intro">Introduktion til brøker</a> (2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+br%C3%B8ker&video_ids=q9Na7YgsXN4%2CgEE6yIObbmg%2CKGSwhRXMa3M">7m 33s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/cc-3rd-fractions-topic/cc-3rd-fractions-meaning">Forståelse af en brøk</a> (3 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Forst%C3%A5else+af+en+br%C3%B8k&video_ids=41dyPu6vIoU%2CeBzQdDgBB_8%2CbnQAfGLfby8">7m 22s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/cc-3rd-fractions-topic/cc-3rd-fractions-on-the-number-line">Brøker på tallinjen</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Br%C3%B8ker+p%C3%A5+tallinjen&video_ids=WoJqJE-tRWw%2CxeoVPSBP9WI">5m 15s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/cc-3rd-fractions-topic/cc-3rd-fractions-and-whole-numbers">Brøker og hele tal</a> (3 Exercises, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Br%C3%B8ker+og+hele+tal&video_ids=QZD1fwk_b94%2Co1lYRuyzRy0">8m 9s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/cc-3rd-fractions-topic/cc-3rd-equivalent-fractions">Ækvivalente brøker</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=%C3%86kvivalente+br%C3%B8ker&video_ids=oGAVi4xb7Sg%2CG4VxHxwi6DY">10m 37s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/cc-3rd-fractions-topic/cc-3rd-equivalent-fractions-number-line">Ækvivalente brøker på tallinjen</a> (1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=%C3%86kvivalente+br%C3%B8ker+p%C3%A5+tallinjen&video_ids=O8IYzD-yRFI%2CbjByitl-kX0">8m 14s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/cc-3rd-fractions-topic/cc-3rd-comparing-fractions">Sammenligning af brøker</a> (4 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Sammenligning+af+br%C3%B8ker&video_ids=8uYQTj7mfEk%2Cd7398FKkgk4%2C_Esc4JPE_FY%2C2BxsmPo-zXI">16m 58s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/cc-3rd-fractions-topic/cc-3rd-different-wholes">Sammenligning af brøkdele af forskellige hele</a> (1 Exercise, 1 Quiz, 1 Test, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Sammenligning+af+br%C3%B8kdele+af+forskellige+hele&video_ids=5P8x3Q39VpU%2COgTpVth-aUk">7m 57s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/cc-third-grade-measurement">Måling og geometri</a> (6 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/cc-third-grade-measurement/cc-third-grade-telling-time">Hvad er klokken?</a> (1 Article, 5 Exercises, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Hvad+er+klokken%3F&video_ids=Ll3QzXftlS0%2CUowW7ua4TK8%2CPCPmpPV9KR0%2CDA2w8lRelIc%2CSr8YtMHy8gE%2CgZzsYhyjIXA">23m 46s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/cc-third-grade-measurement/cc-third-grade-mass-volume">Vægt</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=V%C3%A6gt&video_ids=zqduFg0s5Q4%2C4HnyNMhkBs0">11m 16s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/cc-third-grade-measurement/cc-third-grade-volume">Rumfang</a> (2 Exercises, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Rumfang&video_ids=mLRYCaYVWFc%2Clf4BBZK1Vzs">8m 27s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/cc-third-grade-measurement/cc-third-grade-data">Data</a> (3 Articles, 3 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Data&video_ids=DvV0e5F98NQ%2CLm7-_do9jMA%2CR48KimqkYTA%2CuftnBXB98l8">13m 44s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/cc-third-grade-measurement/cc-third-grade-picture-graphs">Piktogrammer (billeddiagrammer)</a> (3 Articles, 3 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Piktogrammer+%28billeddiagrammer%29&video_ids=DvV0e5F98NQ%2CIjcLW7Y7Ndk%2CnH6dfMMlcfI%2Cst-rVFChzHA">13m 45s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/cc-third-grade-measurement/cc-third-grade-line-plots">Prikdiagrammer</a> (1 Article, 2 Exercises, 1 Quiz, 1 Test, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Prikdiagrammer&video_ids=AtiOjlyOQf4%2COc1XmBVyXMk">9m 6s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/3rd-geometry">Geometri</a> (10 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/3rd-geometry/cc-third-grade-area">Areal</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Areal&video_ids=eFtRRdVLmHQ">4m 17s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/3rd-geometry/cc-third-grade-unit-squares-area">Tæl enhedskvadrater for at finde areal</a> (3 Exercises, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=T%C3%A6l+enhedskvadrater+for+at+finde+areal&video_ids=eFtRRdVLmHQ%2CGJMrsxoH6Xo%2CYA7ZrKcbteA%2CJX_ZgrFf2j8%2CcYyfwJSvT-k">17m 32s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/3rd-geometry/cc-third-grade-area-formula-intuition">Arealformlen</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Arealformlen&video_ids=BjF8UGX97Fw%2Cmu3HHCdYYtY">8m 42s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/3rd-geometry/cc-third-grade-multiply-to-find-area">Gang for at finde areal</a> (1 Article, 3 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Gang+for+at+finde+areal&video_ids=BjF8UGX97Fw%2C_JdgDBzQ0Us%2CArvnBba_ogI">11m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/3rd-geometry/cc-third-grade-area-distributive-property">Areal og den distributive lov</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Areal+og+den+distributive+lov&video_ids=RvOHmFW5cpk">3m 49s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/3rd-geometry/cc-third-grade-decompose-to-find-area">Opdeling af figurer for at finde areal</a> (2 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Opdeling+af+figurer+for+at+finde+areal&video_ids=oL9iF9Se6lc%2CJTg8gyQ37pM%2CqS4stB9LfJA%2CIOiQlRhh1jE">15m 43s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/3rd-geometry/cc-third-grade-perimeter">Omkreds</a> (2 Articles, 4 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Omkreds&video_ids=7Z0tK4DVZ9w%2C9cTe_KaFhVQ%2Ctmt5fXhU7Rs%2C_sQ3dqhLsIw">13m 50s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/3rd-geometry/cc-third-grade-compare-area-perimeter">Sammenligning af areal og omkreds</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Sammenligning+af+areal+og+omkreds&video_ids=I-RGa3aexpY">5m 34s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/3rd-geometry/cc-third-grade-perimeter-word-problems">Tekstopgaver med omkreds</a> (1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+med+omkreds&video_ids=Wz8grvnFDHM%2CdNBNepJ_Ut8">6m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/3rd-geometry/cc-third-grade-geometry">Figurer</a> (2 Articles, 2 Exercises, 1 Quiz, 1 Test, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Figurer&video_ids=H-ykHosJW9c">8m 7s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/cc-3rd-place-value-rounding">Positionssystemet - pladsværdi og afrunding</a> (1 Topic)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-third-grade-math-2018/cc-3rd-place-value-rounding/cc-3rd-grade-rounding">Afrunding</a> (3 Exercises, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Afrunding&video_ids=o9wjbhizC6A%2CGmYqdiYakC8%2Chzc6zu67uqY">17m 35s</a> )</li>
</ul></li>
</ul>
<h2 id="4-klasse-8-topics"><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018">4. klasse</a> (8 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-add-sub-topic">Addition og subtraktion</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-add-sub-topic/cc-4th-adding">Addition af fler-cifrede tal</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Addition+af+fler-cifrede+tal&video_ids=DqaHhReVpZI%2CTVtdqRNJmiw">8m 40s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-add-sub-topic/cc-4th-subtracting">Subtraktion af fler-cifrede tal</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Subtraktion+af+fler-cifrede+tal&video_ids=XAPhD7EDQUk%2CbuyK1y4rV3E">9m 59s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-mult-div-topic">Multiplikation og division</a> (9 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-mult-div-topic/cc-4th-mult-10s-100s-1000s">Multiplikation med tiere, hundreder og tusinder</a> (3 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Multiplikation+med+tiere%2C+hundreder+og+tusinder&video_ids=SG4gX-VGzog%2CtHQOAvbyRL0%2CuHHnwafYivk">19m 29s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-mult-div-topic/cc-4th-area-models">Multiplikation: pladsværdi og arealmodeller</a> (3 Exercises, 1 Quiz, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Multiplikation%3A+pladsv%C3%A6rdi+og+arealmodeller&video_ids=NWJinKmWzx8%2CInzLSBSw9Os%2CBTqEtpcfu44%2Cov_lqS-yVh4%2CF5DwoWLDcnA%2CfQ1zZYWjvwc">37m 45s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-mult-div-topic/cc-4th-multiplication">Multiplikation af fler-cifrede tal</a> (3 Exercises, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Multiplikation+af+fler-cifrede+tal&video_ids=gDFJPQF-SU4%2CWEfmiMUJcHU%2CdKhCOJ5F_x8%2CZwWV5yvR5Kw%2CwLvirtlmPEM%2CmhkydP7L9lg">15m 40s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-mult-div-topic/cc-4th-mult-comparing">Sammenligning med multiplikation</a> (2 Exercises, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Sammenligning+med+multiplikation&video_ids=lzFTaEn6LIM%2CldJywKiLing%2CIHF_P71YyMU%2CCpkMF6dcM5c%2CUF6bi4eM2v8">17m 38s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-mult-div-topic/cc-4th-nice-division">Divisionsstykker uden rest</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Divisionsstykker+uden+rest&video_ids=UzXoxglkr98%2CccS5Fy5yLjk">13m 52s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-mult-div-topic/cc-4th-div-pv-area">Division: pladsværdi og areal</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Division%3A+pladsv%C3%A6rdi+og+areal&video_ids=xUjRwepN7dk%2CFKJjqEdfB9Y">16m 22s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-mult-div-topic/cc-4th-division">Division af fler-cifrede tal</a> (3 Exercises, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Division+af+fler-cifrede+tal&video_ids=jXF0j7iJxm0%2C9H_2jqXiGsg">6m 58s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-mult-div-topic/cc-4th-remainders">Rest</a> (2 Articles, 3 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Rest&video_ids=ISIjTqy6FWg%2Cf3GA2aPx2t4%2CvtzL1ZSO2ck">16m 33s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-mult-div-topic/cc-4th-multistep-word-problems">Flere Trin Tekstopgaver</a> (4 Exercises, 1 Quiz, 1 Test, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Flere+Trin+Tekstopgaver&video_ids=y0EAEMoCmu0%2CSwiUoJt5Yss">5m 37s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-fractions-topic">Brøker</a> (13 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-fractions-topic/cc-4th-visualizing-equiv-frac">Visualisering af ækvivalente brøker</a> (1 Article, 3 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Visualisering+af+%C3%A6kvivalente+br%C3%B8ker&video_ids=-I-Tjzsg4O8%2C_35vTmi2WJk%2C44JEvUmDwXo%2C8VjhtS3KlOY">19m 3s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-fractions-topic/cc-5th-common-denominators">Fællesnævnere</a> (1 Article, 1 Exercise, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=F%C3%A6llesn%C3%A6vnere&video_ids=BBpXlajHVK4%2CT8U7hCmUdpo%2C0EwwoDVJVPQ">17m 16s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-fractions-topic/cc-4th-comparing-fractions-visually">Sammenligning af brøker uden fællesnævner</a> (1 Article, 1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Sammenligning+af+br%C3%B8ker+uden+f%C3%A6llesn%C3%A6vner&video_ids=ory05j2jgBM%2C7vWzd-ZV6-Q%2CuCtXyhepAmQ">8m 2s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-fractions-topic/cc-4th-comparing-fractions">Sammenligning af brøker</a> (1 Article, 2 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Sammenligning+af+br%C3%B8ker&video_ids=zRjLZROI7wc%2CONsI-yIbsBg%2CAK4xaJL8UOA">17m 23s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-fractions-topic/cc-4th-decomposing-fractions">Opdeling af brøker</a> (1 Article, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Opdeling+af+br%C3%B8ker&video_ids=DCuhPy-gM48%2Cp18Bi2s8Nns">9m 59s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-fractions-topic/cc-4th-adding-subtracting-frac">Addition og subtraktion af brøker med fællesnævner</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Addition+og+subtraktion+af+br%C3%B8ker+med+f%C3%A6llesn%C3%A6vner&video_ids=hjK3RUyDW9U%2CL9M7CC8yQgw">5m 44s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-fractions-topic/cc-4th-add-sub-word-problems">Addition og subtraktion af brøker: tekstopgaver</a> (1 Exercise, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Addition+og+subtraktion+af+br%C3%B8ker%3A+tekstopgaver&video_ids=LK7nJeJSaq0%2CR763SDlndUE%2CFAAivrExpi0">10m 8s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-fractions-topic/cc-4th-mixed-numbers">Blandede tal</a> (1 Article, 2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Blandede+tal&video_ids=qwmYqIadXLs%2CY_0L_OVrjBI%2C_FRxr2MeMDc">15m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-fractions-topic/cc-4th-add-sub-mixed-numbers">Addition og subtraktion af blandede tal</a> (3 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Addition+og+subtraktion+af+blandede+tal&video_ids=pxX07gUbIQQ%2Czm3TXDZrifU%2CrqeuI4diWzA%2C9aD5Z_EMxos">14m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-fractions-topic/cc-4th-mult-unit-frac">Multiplikation af enhedsbrøker og hele tal</a> (2 Exercises, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Multiplikation+af+enhedsbr%C3%B8ker+og+hele+tal&video_ids=D59vIZpNdxs">3m 8s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-fractions-topic/cc-4th-mult-whole-number-frac">Multiplikation af hele tal og brøker</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Multiplikation+af+hele+tal+og+br%C3%B8ker&video_ids=KimE8b6cnoo%2CwefivHjlDac">6m 50s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-fractions-topic/cc-4th-mult-whole-frac-word-problems">Tekstopgaver med multiplikation af hele tal og brøker</a> (2 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+med+multiplikation+af+hele+tal+og+br%C3%B8ker&video_ids=geUtQYLsTzo%2CTPpqZtzFbB4%2C6PMQdHCtUtA">8m 22s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-fractions-topic/cc-4th-fractions-unlike-denom">Addition af brøker med 10 og 100 i nævneren</a> (5 Exercises, 1 Quiz, 1 Test, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Addition+af+br%C3%B8ker+med+10+og+100+i+n%C3%A6vneren&video_ids=zEd67cLFnuQ%2CkAm9x3uWF9I%2Ck4bqucu56Ig%2C1XPPV2bJ6XM%2CD5yQESfE4Bw">17m 48s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-decimals">Decimaltal</a> (8 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-decimals/cc-4th-decimals-intro">Introduktion til decimaltal</a> (2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+decimaltal&video_ids=BItpeFXC4vA%2CqSPwUDmpnJ4%2Cs9PvbFG2yJA">15m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-decimals/cc-4th-decimals-number-line">Decimaltal på en tallinje</a> (4 Exercises, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Decimaltal+p%C3%A5+en+tallinje&video_ids=7oUBK0cNxV8%2Cqb0QSP7Sfz4%2CSrL8abwGKyA%2CbFjaZ_8pi3c%2CgWqYXa7r_V0">13m 1s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-decimals/cc-4th-decimal-fractions">Decimaltal i forhold til brøker</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Decimaltal+i+forhold+til+br%C3%B8ker&video_ids=4LvGU1a9Z5Q%2CNfU7cmajLAY">8m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-decimals/cc-4th-decimals-greater-than-one">Decimaltal større end 1</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Decimaltal+st%C3%B8rre+end+1&video_ids=-BYomxn8Rss">6m 55s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-decimals/cc-4th-decimals-to-fractions">Omskrivning af decimaltal til brøker</a> (1 Article, 1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Omskrivning+af+decimaltal+til+br%C3%B8ker&video_ids=up1WzOOtDXs%2CrIxJYwDOUFo%2Cz5mPVqL6R9Q%2Cfk3nQxG8U6c">6m 45s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-decimals/cc-4th-common-fractions-decimals">De mest kendte brøker og deres decimaltal</a> (1 Article, 1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=De+mest+kendte+br%C3%B8ker+og+deres+decimaltal&video_ids=lh2mp0aqSh8%2CgWz08PB7b6E">9m 33s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-decimals/cc-4th-compare-decimals-visually">Sammenligning af decimaltal visuelt</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Sammenligning+af+decimaltal+visuelt&video_ids=ftEVCrKfIVM%2CYM4lE4q0fSk">11m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-decimals/cc-4th-compare-decimals">Sammenligning af decimaltal</a> (1 Exercise, 1 Quiz, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Sammenligning+af+decimaltal&video_ids=cgIgLlRT2As%2CEX9CdUAMpgE%2CekibnsVqE-k">9m 58s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-measurement-topic">Måling og data</a> (12 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-measurement-topic/cc-4th-us-customary-units">Introduktion til metriske og US-rumfangsenheder</a> (2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+metriske+og+US-rumfangsenheder&video_ids=ojqPncR8bME%2CV1LloSp4PV4%2CDj1rbIP8PHM">9m 21s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-measurement-topic/cc-4th-metric-us-customary">Introduktion til metriske og US-rumfangsenheder</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+metriske+og+US-rumfangsenheder&video_ids=O6TNQvWLayU%2CeqKnx5Yk508">11m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-measurement-topic/cc-4th-unit-sense">Introduktion til metriske og US-afstandsenheder</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+metriske+og+US-afstandsenheder&video_ids=h-3lrgGRaBE%2CM9bisHkXbKc">12m 7s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-measurement-topic/cc-4th-estimating-time">Overslagsregning med tid</a> (3 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Overslagsregning+med+tid&video_ids=eQyMw0mKnYw%2CPCPmpPV9KR0%2CgZzsYhyjIXA%2CSr8YtMHy8gE">13m 46s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-measurement-topic/cc-4th-unit-conversion">Omregning af vægtenheder</a> (2 Articles, 2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Omregning+af+v%C3%A6gtenheder&video_ids=1oFv56vSvvA%2CIrvEHVn-fks">5m 58s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-measurement-topic/cc-4th-convert-volume">Omregning af rumfangsenheder</a> (2 Articles, 2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Omregning+af+rumfangsenheder&video_ids=OfTTjQW0CBw%2C9UVgO8zS474">4m 44s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-measurement-topic/cc-4th-convert-length">Omregning af længdeenheder</a> (2 Articles, 2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Omregning+af+l%C3%A6ngdeenheder&video_ids=aTKwtWu51Ag%2CzsI4g5XSlbw%2C8C5kAIKLcZo">9m 17s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-measurement-topic/cc-4th-convert-time">Omregning af tidsenheder</a> (1 Article, 2 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Omregning+af+tidsenheder&video_ids=bIaHzGbmMVQ%2CSr8YtMHy8gE%2CZSBwRCW2Cu8">11m 9s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-measurement-topic/cc-4th-money">Tekstopgaver med penge</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+med+penge&video_ids=C05GaOoon7I%2CKIVnwpGN5EI">4m 8s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-measurement-topic/conversion-word-problems">Tekstopgaver med omregning</a> (2 Exercises, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+med+omregning&video_ids=ODJzxGj_zvU%2C5QFwaG5oM_A">11m</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-measurement-topic/cc-4th-area-and-perimeter">Areal og omkreds</a> (2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Areal+og+omkreds&video_ids=h2ekVWw24ug%2CtSrT8Au-gMk%2CsXLTPLTk0Yo">10m 21s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-measurement-topic/cc-4th-line-plots-with-fractions">Data</a> (1 Exercise, 1 Test, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Data&video_ids=g2tMJHcpnG8">3m 33s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-geometry-topic">Geometri</a> (11 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-geometry-topic/cc-4th-lines-rays-angles">Linjer, linjestykker og halvlinjer</a> (1 Article, 2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Linjer%2C+linjestykker+og+halvlinjer&video_ids=UiGHAFx3bCU%2C-DcovWfpl6Y">16m 36s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-geometry-topic/cc-4th-parallel-and-perpendicular">Parallel og ortogonal (vinkelret)</a> (1 Article, 2 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Parallel+og+ortogonal+%28vinkelret%29&video_ids=uaL8KMxfw9Q%2CbWR2GYKm560%2CdavepigwSd0">7m 38s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-geometry-topic/cc-4th-angles">Introduktion til vinkler</a> (1 Article, 2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+vinkler&video_ids=fxkOOeowtiA%2Ct_8ojukiHgg">8m</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-geometry-topic/cc-4th-measuring-angles">Måling af vinkler</a> (1 Article, 1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=M%C3%A5ling+af+vinkler&video_ids=Bk6wNity7uM%2CqR_SybHn_QM%2Ciyu9hsxI3PA">15m 52s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-geometry-topic/cc-4th-constructing-angles">Konstruktion af vinkler</a> (1 Article, 1 Exercise, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Konstruktion+af+vinkler&video_ids=QmfoIvgIVlE">2m 41s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-geometry-topic/cc-4th-angles-in-circle">Vinkler i cirkler</a> (1 Article, 1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Vinkler+i+cirkler&video_ids=MOkRYWJJyAA%2CTtji2_wBSEo%2C_jRXtJz3CYc">12m 45s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-geometry-topic/cc-4th-interpreting-angles">Vinkeltyper</a> (1 Article, 4 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Vinkeltyper&video_ids=8s_ZHzKazAE%2Cq-1sYo__fNU%2C4ZyTVTGVPgE%2C2mzuFKCuDg4">12m 30s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-geometry-topic/4th-decomposing-angles">Opdeling af vinkler</a> (1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Opdeling+af+vinkler&video_ids=G8jkObCeDzg%2CuMj46crbLaw">4m 48s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-geometry-topic/cc-4th-line-of-symmetry">Symmetriakser</a> (1 Article, 3 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Symmetriakser&video_ids=2ajNdiCPuIA%2C59s_CQjTD6w">8m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-geometry-topic/cc-4th-classifying-triangles">Kategorisering af trekanter</a> (1 Article, 2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Kategorisering+af+trekanter&video_ids=bbHS_iJR7gg%2CsZMezOCZr40%2CVbFtOeQ3BS4">13m 53s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-geometry-topic/cc-4th-classifying-shapes">Klassificering af figurer</a> (1 Article, 1 Exercise, 1 Quiz, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Klassificering+af+figurer&video_ids=daE-7MY1CEI%2CDcIS_wHFpkw%2CxO4n3LfmVag">10m 59s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-fact-mult-topic">Faktorer, multipla og mønstre</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-fact-mult-topic/cc-4th-factors-multiples">Faktorer og multipla</a> (2 Articles, 2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Faktorer+og+multipla&video_ids=o-OsNGzTm0g%2C7VdHTQSgMTs">13m 53s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-fact-mult-topic/cc-4th-prime-composite">Primtal og sammensatte tal</a> (2 Articles, 2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Primtal+og+sammensatte+tal&video_ids=uECSFhJYdLc%2CzGS_ecPE3WE">12m 53s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-fact-mult-topic/cc-4th-number-patterns">Matematiske mønstre</a> (1 Exercise, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Matematiske+m%C3%B8nstre&video_ids=_3gxe9V2hac%2C9vqu71qL50I%2Cpb7YMZcxFgI">14m 41s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-place-value-rounding">Positionssystemet - pladsværdi og afrunding</a> (6 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-place-value-rounding/cc-4th-place-value-intro">Introduktion til pladsværdi</a> (1 Article, 3 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+pladsv%C3%A6rdi&video_ids=hby3vUhL638%2Cw5b6c5eaYns%2CzVhQY173Yyo">10m 23s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-place-value-rounding/cc-4th-10-relates-to-place-value">Hvordan tallet 10 hænger sammen med positionssystemet</a> (4 Exercises, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Hvordan+tallet+10+h%C3%A6nger+sammen+med+positionssystemet&video_ids=TXaWqy52dZY%2CbVi7_6tqiQo%2CAs-DvTDLe2A%2CA-KLUhbRUk8%2CEhd3cgRBvl0">25m 24s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-place-value-rounding/cc-4th-num-forms">Måder at skrive tal på (standard, skreven og udvidet form)</a> (2 Articles, 2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=M%C3%A5der+at+skrive+tal+p%C3%A5+%28standard%2C+skreven+og+udvidet+form%29&video_ids=6RcpnvlrCXg%2CslodUCY2-xw">9m 29s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-place-value-rounding/regrouping-numbers">Opdeling af hele tal</a> (1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Opdeling+af+hele+tal&video_ids=DCqwSUibAsU%2Ci7lqWXKuhhQ%2C35HD5UTScN0">14m 48s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-place-value-rounding/cc-4th-comparing-multi-digit-numbers">Sammenligning af fler-cifrede tal</a> (3 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Sammenligning+af+fler-cifrede+tal&video_ids=nrOA1U5jH6Q%2CNvzCyOTvmbU%2CPqyS66_mE24">13m 21s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fourth-grade-math-2018/cc-4th-place-value-rounding/cc-4th-rounding">Afrunding af hele tal</a> (3 Exercises, 1 Quiz, 1 Test, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Afrunding+af+hele+tal&video_ids=1CLESXYDnhk%2CqNCYucHtYkg%2CudfKQRQ75kg%2CHixy7TX-Nwo%2CGg-GD5QfbB4">17m 10s</a> )</li>
</ul></li>
</ul>
<h2 id="5-klasse-7-topics"><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018">5. klasse</a> (7 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-arith-operations">Addition og subtraktion</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-arith-operations/common-fractions-and-decimals">De mest kendte brøker og deres decimaltal</a> (1 Article, 1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=De+mest+kendte+br%C3%B8ker+og+deres+decimaltal&video_ids=lh2mp0aqSh8">5m 33s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-arith-operations/adding-decimals-intro">Introduktion til addition af decimaltal</a> (1 Article, 5 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+addition+af+decimaltal&video_ids=dj3tcEbWBDQ%2C7I_AILEWTL4%2C66_Sb1dP81E">16m 1s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-arith-operations/cc-5th-add-sub-decimals">Addition af decimaltal</a> (3 Exercises, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Addition+af+decimaltal&video_ids=fWi-i_mdUOI%2C6NBkb98nFOM%2ChCaOTzUFSjw%2CLaI7ercRxoM%2Cl3GVeYfb7aE">21m 1s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-arith-operations/subtracting-decimals-intro">Introduktion til subtraktion af decimaltal </a> (1 Article, 6 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+subtraktion+af+decimaltal+&video_ids=LQmAGFCJMqo%2CN5xWYgeIWmU%2CIE0HQoLrbX4">18m 2s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-arith-operations/cc-5th-sub-decimals">Subtraktion af decimaltal</a> (4 Exercises, 1 Quiz, 1 Test, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Subtraktion+af+decimaltal&video_ids=GUK9aup5HOs%2CURdTZ38JvOI%2CMufbvU4tGh8%2CZf5iTL8wMUk">13m 45s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/multiplication-and-division">Multiplikation og division</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/multiplication-and-division/cc-5th-multiplication">Multiplikation af fler-cifrede tal</a> (3 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Multiplikation+af+fler-cifrede+tal&video_ids=fQ1zZYWjvwc%2CiFy0oH-3Pn4%2CplzbnyvdaIQ%2CFmAgttYiBVY">26m 42s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/multiplication-and-division/cc-5th-mult-decimals">Multiplikation af decimaltal</a> (1 Article, 5 Exercises, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Multiplikation+af+decimaltal&video_ids=1serq4kmeZc%2Cep4uT1aHuXU%2CxBseQOzMB7A%2CAj5M8NDauv4%2CekDTjvF_CJw">23m 9s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/multiplication-and-division/cc-5th-division">Division af fler-cifrede tal</a> (4 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Division+af+fler-cifrede+tal&video_ids=dejocl4sYfw%2CPssLxfFqHoA%2CKzdbThwGNGI%2CfVu5jI3o2ns%2C6N_ICFs9OoE">22m 38s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/multiplication-and-division/cc-5th-dividing-decimals">Division af decimaltal</a> (1 Article, 10 Exercises, 1 Quiz, 1 Test, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Division+af+decimaltal&video_ids=xGbrcOF8Z98%2Czlq_jQYD1mA%2CxUDlKV8lJbM%2CbRRtp9XdDrY%2CdToPqCXHNDA">25m 6s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-fractions-topic">Brøker</a> (15 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-fractions-topic/cc-5th-vis-add-sub-frac-unlike-denom">Visuel addition og subtraktion af brøker med forskellige nævnere</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Visuel+addition+og+subtraktion+af+br%C3%B8ker+med+forskellige+n%C3%A6vnere&video_ids=fvtv2uYjo_E%2CpoGjjX_VNbM">9m 26s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-fractions-topic/fractions-common-denominators">Fællesnævnere</a> (1 Article, 2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=F%C3%A6llesn%C3%A6vnere&video_ids=BBpXlajHVK4%2CT8U7hCmUdpo%2C0EwwoDVJVPQ">17m 16s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-fractions-topic/tcc-5th-add-sub-fractions">Addition og subtraktion af brøker med forskellige nævnere</a> (3 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Addition+og+subtraktion+af+br%C3%B8ker+med+forskellige+n%C3%A6vnere&video_ids=bcCLKACsYJ0%2C2DPivVFCdqA%2CHSf9O1Domms%2COPpmp-kAuE4">23m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-fractions-topic/tcc-5th-add-sub-mix-num-w-unlike-den">Addition og subtraktion af blandede tal med forskellige nævnere</a> (2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Addition+og+subtraktion+af+blandede+tal+med+forskellige+n%C3%A6vnere&video_ids=A_eb2HprnVU%2Cr3EMZcAh0ms%2CI01O0r8b-po%2Cr3M68V9Joac">13m 51s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-fractions-topic/tcc-5th-add-sub-frac-w-unlike-d-word-probs">Tekstogaver med addition og subtraktion af brøker med forskellige nævnere</a> (1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Tekstogaver+med+addition+og+subtraktion+af+br%C3%B8ker+med+forskellige+n%C3%A6vnere&video_ids=PKh5B9xyzSc%2C6Zyt4uFfOSU">9m 6s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-fractions-topic/tcc-5th-multiplication-as-scaling">Multiplikation som skalering</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Multiplikation+som+skalering&video_ids=jKdH-YkX-Vc">5m 6s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-fractions-topic/tcc-5th-mult-fract-and-whole">Multiplikation af brøker og hele tal</a> (2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Multiplikation+af+br%C3%B8ker+og+hele+tal&video_ids=QDvKqUc7Mj4%2CD59vIZpNdxs%2CKimE8b6cnoo%2CkVRWIR93rw8">11m 59s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-fractions-topic/tcc-5th-mult-frac-and-whole-word-prob">Multiplikation af brøker og heltal tekstopgaver</a> (2 Exercises, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Multiplikation+af+br%C3%B8ker+og+heltal+tekstopgaver&video_ids=TPpqZtzFbB4%2CgeUtQYLsTzo">6m 1s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-fractions-topic/tcc-5th-multiplying-fractions">Multiplikation af brøker</a> (1 Article, 3 Exercises, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Multiplikation+af+br%C3%B8ker&video_ids=QAaTWX3NsRM%2CxKDHYVNss1k%2ClJdb4_Fuxvw%2CqWegvvhpIbQ%2CC3RPDVGZdFw%2CUmSe4rh__iU">28m 4s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-fractions-topic/tcc-5th-mult-mixed-num">Multiplikation af blandede tal</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Multiplikation+af+blandede+tal&video_ids=blLIDPdIZsA">4m 21s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-fractions-topic/tcc-5th-mult-frac-word-probs">Tekstopgaver med multiplikation af brøker</a> (1 Exercise, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+med+multiplikation+af+br%C3%B8ker&video_ids=Gh9ObLMFAKo%2COjyINhSfU_A%2CtfjQVtOyoaQ">8m 50s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-fractions-topic/tcc-5th-fractions-as-division">Brøker som division</a> (2 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Br%C3%B8ker+som+division&video_ids=Fv1-e1CxnDU%2CMcm0Q3wGhMo%2C7wIahdjz_Ok%2CX8p38SZMmnk">17m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-fractions-topic/tcc-5th-div-unit-frac-by-whole">Division af enhedsbrøker med hele tal</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Division+af+enhedsbr%C3%B8ker+med+hele+tal&video_ids=RygpFkLCSaM%2CQsDMlHW826U">5m 25s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-fractions-topic/tcc-5th-div-whole-by-unit-frac">Division af hele tal med enhedsbrøker</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Division+af+hele+tal+med+enhedsbr%C3%B8ker&video_ids=0lsDqvH5mDs%2Cb26JxSoZvic">4m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-fractions-topic/tcc-5th-div-frac-whole-word-prob">Tekstopgaver med division af brøker og hele tal</a> (1 Exercise, 1 Quiz, 1 Test, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+med+division+af+br%C3%B8ker+og+hele+tal&video_ids=BHwPLEk9Cdc%2CYstQVuH-xSE">5m 7s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-place-value-decimals-top">Pladsværdi og decimaltal</a> (11 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-place-value-decimals-top/cc-5th-decimal-pv-intro">Decimalernes pladsværdi - introduktion</a> (1 Article, 2 Exercises, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Decimalernes+pladsv%C3%A6rdi+-+introduktion&video_ids=_D7eBrecxjg">4m</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-place-value-decimals-top/cc-5th-expanded-form-decimals">Udvidet form af decimaltal</a> (1 Article, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Udvidet+form+af+decimaltal&video_ids=he4kcTujy30%2C_folBi2VMOs">5m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-place-value-decimals-top/cc-5th-written-form-decimal">Decimaltal skrevet med ord</a> (1 Article, 1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Decimaltal+skrevet+med+ord&video_ids=OW_a610CzO4%2Cx1rlBicFKiI">6m 53s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-place-value-decimals-top/cc-5th-comparing-decimals">Sammenligning af decimaltal</a> (4 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Sammenligning+af+decimaltal&video_ids=hd8d6XzcCt4%2CEoo6Kc9tYhA%2CrTU2WjDFR5Y%2Ccp8f8cLkxBk%2CELNooV0ymYk">14m 41s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-place-value-decimals-top/cc-5th-rounding-decimals">Afrunding af decimaltal</a> (4 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Afrunding+af+decimaltal&video_ids=O_t12OS9Grk%2CT3BMIaDUvck%2CIcmAxkEImtI">10m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-place-value-decimals-top/cc-5th-intro-powers-of-ten">10'er potenser</a> (1 Article, 1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=10%27er+potenser&video_ids=DhDirS0DCJ8">5m 34s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-place-value-decimals-top/cc-5th-mult-powers-of-10">Multiplikation og division med 10'er potenser</a> (2 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Multiplikation+og+division+med+10%27er+potenser&video_ids=epan7FFp9xI%2C1OrABHx2IFA%2C9RxJLSHevuQ%2CmWL3eVulXug%2CLohXZt7QzCM">20m 59s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-place-value-decimals-top/cc-5th-compare-dec-place-values">Sammenligning af decimaltals pladsværdi</a> (1 Exercise, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Sammenligning+af+decimaltals+pladsv%C3%A6rdi&video_ids=z3gcWJ5frWk">5m 40s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-place-value-decimals-top/cc-5th-regrouping-decimal-nums">Opdeling af decimaltal</a> (2 Exercises, 1 Test, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Opdeling+af+decimaltal&video_ids=jhSNUw5MJes%2CDwFRnhQ_SDQ%2CUTFmsxVGccg%2C_wi21ssNh0I%2C3l2BR3KnRgA%2CiEbLpApxq3M">20m 10s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-measurement-topic">Måling og data</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-measurement-topic/cc-5th-volume-formula-intuition">Introduktion til rumfang</a> (1 Article, 2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+rumfang&video_ids=JjWRNbFsSoo%2CoTfkhIzLaGY%2Cbc-69Evzwj0">17m 26s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-measurement-topic/cc-5th-volume">Rumfang</a> (2 Articles, 4 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Rumfang&video_ids=-wORxh-QD98%2Cgm87omItizk%2CfeNWZEln6Nc%2CqXjZEdjsPwc">13m 47s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-measurement-topic/cc-5th-unit-conversion">Omregning af enheder</a> (7 Articles, 2 Exercises, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Omregning+af+enheder&video_ids=qunO47ntYB4%2C1AL5TSfu54E%2Coe5DV4QbLu0%2C4uQtJDf7drU%2ChShqXKpI6KA%2CjFSenp9ueaI%2CPNRd0--0F0w">33m 38s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-measurement-topic/cc-5th-unit-word-problems">Enhed tekstopgaver</a> (1 Article, 2 Exercises, 1 Quiz, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Enhed+tekstopgaver&video_ids=ZSBwRCW2Cu8%2CdMmJtwh3_wM%2CXPBrvsZ6gy0%2CKgoXx_58QyQ%2CMCeI3UyOK7s%2CAGFO-ROxH_I">30m 38s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-measurement-topic/cc-5th-data">Data</a> (1 Exercise, 1 Test, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Data&video_ids=DtWovvMnPrk">6m 8s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-geometry-topic">Geometri</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-geometry-topic/cc-5th-coordinate-plane">Koordinatsystemet</a> (1 Article, 3 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Koordinatsystemet&video_ids=pAlq9fFwtus%2CWFjJJVguT6E">9m 9s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-geometry-topic/cc-5th-coordinate-plane-word-problems">Tekstopgaver i koordinatsystemet</a> (1 Article, 3 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+i+koordinatsystemet&video_ids=AUAT7zdD6Jc%2C-U0WKZlmkP8%2C9EEJU4Ox-TE">7m 16s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-geometry-topic/cc-5th-quadrilaterals">Firkanter</a> (2 Articles, 3 Exercises, 1 Quiz, 1 Test, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Firkanter&video_ids=Bjvs3kpXyz4%2CDcIS_wHFpkw%2CZz5QRQZBptY%2Ci2ot23n8z1s%2C1pHhMX0_4Bw">24m 26s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-algebraic-thinking">Algebraisk tænkning</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-algebraic-thinking/cc-5th-writing-expressions-tut">Skriv udtryk</a> (3 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Skriv+udtryk&video_ids=E8nZWdu5zno%2CdTfq2TaA4l4%2CypxHVqE26gI">12m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-fifth-grade-math-2018/cc-5th-algebraic-thinking/cc-5th-number-patterns">Talmønstre (talrækker)</a> (5 Exercises, 1 Quiz, 1 Test, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Talm%C3%B8nstre+%28talr%C3%A6kker%29&video_ids=ObFoI7WR_2E%2Cmz2PWjVvEXk%2CqmFJj3Vc-N4%2CmqsIJucBn6c">14m 8s</a> )</li>
</ul></li>
</ul>
<h2 id="6-klasse-8-topics"><a href="https://da.khanacademy.org/math/cc-sixth-grade-math">6. klasse</a> (8 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-ratios-prop-topic">Forhold og procenter</a> (9 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-ratios-prop-topic/intro-to-ratios">Introduktion til forholdsregning</a> (1 Article, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+forholdsregning&video_ids=kE-HML6Ij58%2CIjMn7f6bbLA">6m 51s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-ratios-prop-topic/cc-6th-equivalent-ratios">Ækvivalente (ens) forhold</a> (5 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=%C3%86kvivalente+%28ens%29+forhold&video_ids=eb-GHXCqkhQ%2CVWO1m0S-a9Y%2CWoZ7-wOy-0w%2C4S3Mbl0JrdY">21m 21s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-ratios-prop-topic/visualize-ratios">Visualisering af forhold</a> (1 Article, 5 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Visualisering+af+forhold&video_ids=-Dg9da1BGsM%2CHMDVNY2preI%2CsuRIY3ULrQo">15m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-ratios-prop-topic/cc-6th-ratio-word-problems">Forhold teksktopgaver</a> (3 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Forhold+teksktopgaver&video_ids=yVYJRT5hTSo%2C0qtIHdda19s%2CUK-_qEDtvYo%2CVx5uoZAkxng">17m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-ratios-prop-topic/cc-6th-rates">Introduktion til forhold med forskellige enheder</a> (1 Article, 3 Exercises, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+forhold+med+forskellige+enheder&video_ids=qGTYSAeLTOE%2C4vQEUhyd-BM%2CHyBeS0cQcbU%2CfpjXtpg_isc%2CjOZ98FDyl2E">17m 45s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-ratios-prop-topic/cc-6th-percentages">Introduktion til procent</a> (3 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+procent&video_ids=7L_Ky5pknrA%2CC6xBF-Un6aA%2CnV6bRozq5Po%2Cwwg052FC_Zw">13m 18s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-ratios-prop-topic/cc-6th-percent-decimal-conversions">Omskrivning mellem procent, decimaltal og brøker</a> (3 Articles, 4 Exercises, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Omskrivning+mellem+procent%2C+decimaltal+og+br%C3%B8ker&video_ids=_Lmki6bHeeo%2Cmn99tYrO8UI%2CXz1xTUhrW3s%2Cvnyu0Ew9Mlo%2CA_giTxcqVIE">10m 32s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-ratios-prop-topic/cc-6th-percent-problems">Opgaver med procent</a> (2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Opgaver+med+procent&video_ids=0jybDxb4COQ%2CJQGFQdDDBn0%2CPVYsFV5yZCE%2CLCmYjozPixg">16m 34s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-ratios-prop-topic/cc-6th-percent-word-problems">Tekstopgaver med procent</a> (1 Exercise, 1 Quiz, 1 Test, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+med+procent&video_ids=2Hm5XXtcSTw">2m 49s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-arithmetic-operations">Regnearterne i aritmetikken</a> (9 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-arithmetic-operations/cc-6th-add-decimals">Addition af decimaltal</a> (1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Addition+af+decimaltal&video_ids=hCaOTzUFSjw%2CLaI7ercRxoM%2Cl3GVeYfb7aE">7m 11s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-arithmetic-operations/cc-6th-sub-decimals">Subtraktion af decimaltal</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Subtraktion+af+decimaltal&video_ids=YyfFfnABCBc%2CJPshMUArVYA">4m 14s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-arithmetic-operations/cc-6th-add-sub-decimals-word-problems">Tekstopgaver med subtraktion af decimaltal</a> (1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+med+subtraktion+af+decimaltal&video_ids=Cf-Tzu6ruG4%2CvjhhooXBqr4">3m 52s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-arithmetic-operations/cc-6th-multiplying-decimals">Multiplikation af decimaltal</a> (3 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Multiplikation+af+decimaltal&video_ids=ep4uT1aHuXU%2CAj5M8NDauv4%2CQ4m7JSbHeoU">14m 44s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-arithmetic-operations/cc-6th-div-whole-numbers">Division</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Division&video_ids=fVu5jI3o2ns%2C6N_ICFs9OoE">7m 58s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-arithmetic-operations/cc-6th-dividing-decimals">Division af decimaltal</a> (3 Exercises, 1 Quiz, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Division+af+decimaltal&video_ids=xUDlKV8lJbM%2CZ_NHrwK6ALE%2C6ZA_1Nl9Eo8%2CHrjr5f5pZ84%2C7JPIX3odZrY%2Cx48CYVaD0xE%2Ci8_NJ4kqvJM">30m 6s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-arithmetic-operations/cc-6th-dividing-fractions">Division af brøker med brøker</a> (1 Article, 5 Exercises, 1 Quiz, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Division+af+br%C3%B8ker+med+br%C3%B8ker&video_ids=168vJPGNLCA%2C1YWyTdtofdE%2CSPMoNUAbV48%2Cj9ZlRiXF7Yk%2C6anjphOOQr0%2Ctj5AtYoKqvs%2C8Wl2hdiNVII">23m 14s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-arithmetic-operations/cc-6th-exponents">Potenstal</a> (3 Articles, 3 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Potenstal&video_ids=JYF45Dh9DU8%2CTWv6f7rwjF4%2CkFElpYl7Te0%2Co_urKmMdGK0%2CbVWNRNMaUFE">14m 2s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-arithmetic-operations/cc-6th-order-of-operations">Regnearternes hierarki</a> (1 Article, 3 Exercises, 1 Quiz, 1 Test, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Regnearternes+hierarki&video_ids=crExOtprOZA%2CRoJ2t7s-V0E%2C5DzXU0MTH0c%2CsoBKfrf3nwk%2CgjrGd9TjjnY">27m 37s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-negative-number-topic">Negative tal</a> (7 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-negative-number-topic/cc-6th-neg-num-intro">Introduktion til negative tal</a> (1 Article, 2 Exercises, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+negative+tal&video_ids=SIoRN3o9aGE">9m 36s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-negative-number-topic/cc-6th-neg-dec-frac-number-line">Negative decimals and fractions on the number line</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Negative+decimals+and+fractions+on+the+number+line&video_ids=vTX9DkJ1ktA%2CTy163NisQYc">3m 13s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-negative-number-topic/cc-6th-number-opposites">Modsatte tal</a> (2 Articles, 1 Exercise, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Modsatte+tal&video_ids=2Zk6u7Uk5ow">3m 12s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-negative-number-topic/cc-6th-comparing-negative-numbers">Sammenligning af negative tal</a> (1 Article, 5 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Sammenligning+af+negative+tal&video_ids=FD1bkSKnUE4%2Ci1i2_9wg6N8%2CkQkeayQke8A">11m 55s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-negative-number-topic/negative-symbol-as-opposite">Negativt fortegn som modsat</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Negativt+fortegn+som+modsat&video_ids=3-aryZYsoxU%2CvRa6XxykfbY">8m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-negative-number-topic/cc-6th-absolute-value">Numerisk (absolut) værdi</a> (2 Articles, 4 Exercises, 1 Quiz, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Numerisk+%28absolut%29+v%C3%A6rdi&video_ids=hisGgp440z4%2CDqNH8Z1nWRI%2CMFoXK57sw9k%2C29P6bar7nHc%2Cfii9QEVJPas%2CfaUh3bAxomM">22m 23s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-negative-number-topic/cc-6th-coordinate-plane">Koordinatsystemet</a> (3 Articles, 4 Exercises, 1 Quiz, 1 Test, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Koordinatsystemet&video_ids=K_RMPrxgMn4%2CdRV1WFdfSLY%2CqYoEcdCglM8%2CC6mz9QlNPp4%2C0p5TlHW4ro0%2CzEPxb6ojYH0">19m 8s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-factors-and-multiples">Egenskaber for tal</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-factors-and-multiples/cc-6th-lcm">Mindste Fælles Multiplum (MFM)</a> (1 Article, 1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Mindste+F%C3%A6lles+Multiplum+%28MFM%29&video_ids=35R649lYNq0%2CsqkGbDmquHI%2CpB1kY1IOxtk">12m 15s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-factors-and-multiples/cc-6th-gcf">Største Fælles Faktor (SFF)</a> (1 Article, 3 Exercises, 1 Test, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=St%C3%B8rste+F%C3%A6lles+Faktor+%28SFF%29&video_ids=9TkqrA3QoQw%2CiatWSiYgiSM%2Ct7OkENcBrxs%2CTOyPkEUjkDk">25m 11s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-expressions-and-variables">Introduktion til variabler & udtryk </a> (9 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-expressions-and-variables/cc-6th-evaluating-expressions">Dele af algebraiske udtryk</a> (1 Article, 1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Dele+af+algebraiske+udtryk&video_ids=M_HYIxX_1wk%2CIm3NRL4L3W8%2Cln3pA4lMIWE">15m 37s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-expressions-and-variables/cc-6th-substitution">Indsætning af værdier og udregning af udtryk</a> (3 Articles, 4 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Inds%C3%A6tning+af+v%C3%A6rdier+og+udregning+af+udtryk&video_ids=l4mxvnLass4%2C9K54G5yeR74%2CQrn8rPLCwV0%2CGmD7Czmol0k">10m 33s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-expressions-and-variables/expression-value-intuition">Værdien af et udtryk</a> (1 Article, 1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=V%C3%A6rdien+af+et+udtryk&video_ids=UvDcEvDC4vg">5m 15s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-expressions-and-variables/cc-7th-evaluating-expressions-word-problems">Tekstopgaver med beregning af udtryk</a> (1 Article, 1 Exercise, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+med+beregning+af+udtryk&video_ids=ywpKjdhPMCc%2CYSGUijw2Uco%2C0uCslW40VHQ">7m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-expressions-and-variables/cc-6th-writing-expressions">Introduktion til algebraiske udtryk</a> (2 Articles, 2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+algebraiske+udtryk&video_ids=640-86yn2wM%2COIBAkvi19iY%2CwF0BZR3Krgc">7m</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-expressions-and-variables/cc-6th-alg-expression-word-problems">Tekstopgaver med algebraiske udtryk</a> (1 Article, 1 Exercise, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+med+algebraiske+udtryk&video_ids=lq-2gX3NKCM">3m 9s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-expressions-and-variables/cc-6th-distributive-property">Distributiv lov</a> (3 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Distributiv+lov&video_ids=lmos9PaVf44%2ClcveGpILpyI%2CJp25LHI9wII">13m 36s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-expressions-and-variables/cc-6th-combining-like-terms">Samle ens led</a> (1 Exercise, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Samle+ens+led&video_ids=UJ83yxwCCf0%2C021d4XfXqSM%2Cgv-3OkfNia8">11m 22s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-expressions-and-variables/cc-6th-equivalent-expressions">Introduktion til ækvivalente algebraiske udtryk</a> (1 Exercise, 1 Quiz, 1 Test, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+%C3%A6kvivalente+algebraiske+udtryk&video_ids=rHNY01R2VSQ">1m 58s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-equations-and-inequalities">Introduktion ligninger & uligheder </a> (8 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-equations-and-inequalities/cc-6th-intro-equations">Grundlæggende algebraiske udtryk</a> (1 Article, 2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Grundl%C3%A6ggende+algebraiske+udtryk&video_ids=Or0B5KCmyNU%2CU9OfQd8poTQ">10m 40s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-equations-and-inequalities/cc-6th-solving-equations">Hvorfor vi gør det samme på begge sider i en ligning</a> (3 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Hvorfor+vi+g%C3%B8r+det+samme+p%C3%A5+begge+sider+i+en+ligning&video_ids=rMe8Relou64%2CxXcS0ISAjGE%2ClZRaAqVthYk%2Ce4QKFRZWHJQ">13m 49s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-equations-and-inequalities/cc-6th-one-step-add-sub-equations">Et-trins ligninger med addition & subtraktion</a> (1 Article, 2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Et-trins+ligninger+med+addition+%26+subtraktion&video_ids=_7Tzi0tDLNg%2Cd8f59BJoGD8%2CXD-FDGdWnR8">8m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-equations-and-inequalities/cc-6th-one-step-mult-div-equations">Ligninger i ét trin med multiplikation og division</a> (1 Article, 2 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Ligninger+i+%C3%A9t+trin+med+multiplikation+og+division&video_ids=5RG3J9puPjQ%2CDqeMQHomwAU%2Ca3acutLstF8">21m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-equations-and-inequalities/pre-algebra-one-step-equation-mistakes">Find fejl i ligninger</a> (1 Article, 1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Find+fejl+i+ligninger&video_ids=xKhU3iMKRiw">4m 5s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-equations-and-inequalities/cc-6th-super-yoga">Super Yoga Medlemsskab</a> (3 Exercises, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Super+Yoga+Medlemsskab&video_ids=2REbsY4-S70">4m 21s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-equations-and-inequalities/cc-6th-inequalities">Introduktion til uligheder med variabler</a> (1 Article, 5 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+uligheder+med+variabler&video_ids=Yh4TXMVq9eg%2CvyonFjGwqGo%2Cs6h-bmjPflg%2Ch8kt1knmmrM">15m 52s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-equations-and-inequalities/cc-6th-dependent-independent">Afhængige og uafhængige variabler</a> (1 Article, 4 Exercises, 1 Quiz, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Afh%C3%A6ngige+og+uafh%C3%A6ngige+variabler&video_ids=9g9UludnBdg%2C8JkBdNwndrA%2COweGg5iN9gU">5m 10s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-geometry-topic">Geometri</a> (9 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-geometry-topic/cc-6th-parallelogram-area">Areal af parallelogrammer</a> (1 Article, 2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Areal+af+parallelogrammer&video_ids=hm17lVaor0Q%2CSKe3ItfdzTY">4m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-geometry-topic/cc-6th-area-triangle">Areal af trekanter</a> (1 Article, 4 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Areal+af+trekanter&video_ids=rRTXKQpblEc%2C7N5orPxUoGo%2CwTkH288r84s">10m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-geometry-topic/cc-6th-area">Area of trapezoids and composite figures</a> (2 Exercises, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Area+of+trapezoids+and+composite+figures&video_ids=IxOjd3TLSh8%2CIi7wvIKi05U">9m 12s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-geometry-topic/geometric-solids">Geometric solids</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Geometric+solids&video_ids=_y17uHBwa_8%2CtqxQSSzuXX0">7m 16s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-geometry-topic/cc-6th-volume-with-fractions">Rumfang med brøker</a> (4 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Rumfang+med+br%C3%B8ker&video_ids=PGTE_2tFPS0%2CRXJzos_em08%2CIShaLZ8CMXY%2Cql5oh6cfT7o">19m 12s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-geometry-topic/cc-6th-surface-area">Overfladeareal</a> (1 Article, 5 Exercises, 1 Quiz, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Overfladeareal&video_ids=EYLEHZ89Pa0%2CmtMNvnm71Z0%2C8ibnLU8J740%2C1iSBNSYhvIU%2Cvl1uMOYFyf4%2CODNCH3gSKdA">26m 25s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-geometry-topic/cc-6th-quadrilaterals-on-plane">Polygoner i koordinatsystemet</a> (1 Article, 3 Exercises, 1 Quiz, 1 Test, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Polygoner+i+koordinatsystemet&video_ids=zxy4KAiSPIc%2CxTcwnhyPN5E%2CWkiPVButdeg%2C8V-PdgS2GKc%2CfEpINE1fjgc%2Cs2wmcnZi6kE%2C8JB3xnA_mBo">20m 13s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-data-statistics">Data og statistik</a> (10 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-data-statistics/dot-plot">Prikdiagrammer og frekvenstabeller</a> (5 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Prikdiagrammer+og+frekvenstabeller&video_ids=0ZKtsUkrgFQ%2CgdE46YSedvE">15m 37s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-data-statistics/cc-6-statistical-questions">Introduktion til statistik</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+statistik&video_ids=OjzfQDFf7Uk">9m 34s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-data-statistics/histograms">Histogrammer</a> (2 Exercises, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Histogrammer&video_ids=gSEYtAjuZ-Y%2Cc02vjunQsJM">11m 51s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-data-statistics/mean-and-median">Gennemsnit (middelværdi) og median</a> (1 Article, 4 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Gennemsnit+%28middelv%C3%A6rdi%29+og+median&video_ids=stYEeTRVBb0%2Ck3aKKasOmIw">12m 49s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-data-statistics/cc-6th-mean-median-challenge">Udfordrende opgaver i gennemsnit og median</a> (1 Article, 2 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Udfordrende+opgaver+i+gennemsnit+og+median&video_ids=qpbaglogObM%2C-2OOBEBq9-4%2CK1y6Tz_E7oA%2C0cHCpgQD_8k">21m 51s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-data-statistics/cc-6th">Interkvartil variationsbredde (middelspredning)</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Interkvartil+variationsbredde+%28middelspredning%29&video_ids=qLYYHWYr8xI">6m 12s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-data-statistics/cc-6th-box-whisker-plots">Kassediagrammer</a> (3 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Kassediagrammer&video_ids=PAxifQ0CC9g%2CH_amIF0bi3k%2Cm6xURMj2ztk%2CoajrmwCALmc%2CoBREri10ZHk">25m 53s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-data-statistics/cc-6-mad">Gennemsnitlig numerisk afvigelse</a> (1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Gennemsnitlig+numerisk+afvigelse&video_ids=GdIkEngwGNU%2CDPuK6ZgBGmE">15m 32s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-data-statistics/cc-7th-compare-data-displays">Sammenligning af data i diagrammer</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Sammenligning+af+data+i+diagrammer&video_ids=s_w3EJ2Jzw0">5m 26s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-sixth-grade-math/cc-6th-data-statistics/cc-6-shape-of-data">Former for datafordelinger</a> (2 Exercises, 1 Quiz, 1 Test, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Former+for+datafordelinger&video_ids=2oJldeE4JcU%2C4PXkzcK-b4Y">11m 39s</a> )</li>
</ul></li>
</ul>
<h2 id="7-klasse-7-topics"><a href="https://da.khanacademy.org/math/cc-seventh-grade-math">7. klasse</a> (7 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-negative-numbers-add-and-subtract">Negative tal: addition og subtraktion</a> (9 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-negative-numbers-add-and-subtract/cc-7th-add-negatives">Introduktion til addition af negative tal</a> (1 Article, 3 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+addition+af+negative+tal&video_ids=qYlgmPqdLhU%2CLpynipuKuJ4%2CqW-Ce44ll0Q">14m 21s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-negative-numbers-add-and-subtract/cc-7th-sub-neg-intro">Introduktion til subtraktion af negative tal</a> (1 Article, 2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+subtraktion+af+negative+tal&video_ids=4Tt9EeIxXXs%2CDl_NldPtQDI">5m 40s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-negative-numbers-add-and-subtract/cc-7th-add-sub-neg-number-line">Addition og subtraktion med negative tal på tallinjen</a> (3 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Addition+og+subtraktion+med+negative+tal+p%C3%A5+tallinjen&video_ids=3CKpidALDEg%2CDdvw2wEBfpc%2Cahib7LGDysQ">10m 34s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-negative-numbers-add-and-subtract/cc-7th-add-and-sub-integers">Addition og subtraktion af heltal</a> (2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Addition+og+subtraktion+af+heltal&video_ids=LpynipuKuJ4%2C-4bTgmmWI9k%2CKNGa11O2uLE">17m 45s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-negative-numbers-add-and-subtract/cc-7th-add-sub-neg-fractions">Addition og subtraktion af negative brøker</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Addition+og+subtraktion+af+negative+br%C3%B8ker&video_ids=nO_YNvFxD6U%2C9UdlEAyvjf4">8m 58s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-negative-numbers-add-and-subtract/cc-7th-add-sub-word-problems-w-negatives">Tekstopgaver med addition og subtraktion af negative tal</a> (2 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+med+addition+og+subtraktion+af+negative+tal&video_ids=ioH0PUdUW3M%2Cm17WjU0y8Ro%2Ct4jDcc8IIBM">12m 17s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-negative-numbers-add-and-subtract/cc-7th-absolute-value">Numerisk (absolut) værdi</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Numerisk+%28absolut%29+v%C3%A6rdi&video_ids=t4xOkpP8FgE%2CK759mIqpvOU">16m 24s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-negative-numbers-add-and-subtract/cc-7th-properties-of-addition-and-subtraction">Egenskaber for addition og subtraktion</a> (2 Exercises, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Egenskaber+for+addition+og+subtraktion&video_ids=fa__960kzVE">6m 21s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-negative-numbers-add-and-subtract/cc-7th-add-sub-negative-numbers-with-variables">Addition og subtraktion af negative tal med variabler</a> (3 Exercises, 1 Quiz, 1 Test, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Addition+og+subtraktion+af+negative+tal+med+variabler&video_ids=XkRD9lv_y44%2CwRBPzExOH2A">14m 48s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-negative-numbers-multiply-and-divide">Negative tal: multiplikation og division</a> (6 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-negative-numbers-multiply-and-divide/cc-7th-mult-div-negatives">Multiplikation og division med negative tal</a> (2 Articles, 4 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Multiplikation+og+division+med+negative+tal&video_ids=YoPHp8OGLEc%2COtGZAQgrLpY%2C2IRc0Mx-XrE%2CpCpzYHQaFzs">22m 27s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-negative-numbers-multiply-and-divide/cc-7th-mult-div-neg-word-problems">Tekstopgaver med multiplikation og division af negative tal</a> (1 Exercise, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+med+multiplikation+og+division+af+negative+tal&video_ids=mPLCXCscqI8">4m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-negative-numbers-multiply-and-divide/cc-7th-mult-div-fractions-2">Forståelse af multiplikation og division af brøker</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Forst%C3%A5else+af+multiplikation+og+division+af+br%C3%B8ker&video_ids=9eSPhvhuInw%2CK8lY8Px7Qs4">11m 7s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-negative-numbers-multiply-and-divide/cc-7th-mult-div-neg-fractions">Multiplikation og division med negative brøker</a> (3 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Multiplikation+og+division+med+negative+br%C3%B8ker&video_ids=yi40lAs1L8M%2Cn3uliCgG38o%2Clxr86Ttqed4">11m 25s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-negative-numbers-multiply-and-divide/cc-7th-order-of-operations">Regnearternes hierarki</a> (1 Article, 1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Regnearternes+hierarki&video_ids=crExOtprOZA%2CsoBKfrf3nwk%2CgjrGd9TjjnY">19m 36s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-negative-numbers-multiply-and-divide/cc-7th-properties-of-mult-div">Egenskaber for multiplikation og division</a> (1 Exercise, 1 Quiz, 1 Test, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Egenskaber+for+multiplikation+og+division&video_ids=hmtJV49AWio">8m 22s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-fractions-decimals">Brøker, decimaltal og procenttal</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-fractions-decimals/cc-7th-fracs-to-decimals">Omskriv brøker til decimaltal</a> (3 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Omskriv+br%C3%B8ker+til+decimaltal&video_ids=fk3nQxG8U6c%2CxyPqi6NYF8c%2CMAuiIcVS3W8%2CDYuqsWqu9Wg">9m 47s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-fractions-decimals/cc-7th-add-sub-rational-numbers">Addition og subtraktion med rationelle tal</a> (2 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Addition+og+subtraktion+med+rationelle+tal&video_ids=VZOHWaw5dqM%2CHBG9GE2Ezic%2CH-s-eVuagQI">16m 2s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-fractions-decimals/cc-7th-percent-word-problems">Tekstopgaver med procent</a> (4 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+med+procent&video_ids=LCmYjozPixg%2Ce1Cd0XL5OEs%2Cjb_RwR_Eso4%2CkTBxUrRQlHY">26m 22s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-fractions-decimals/cc-7th-multistep-word-probs">Tekstopgaver med rationelle tal</a> (1 Exercise, 1 Quiz, 1 Test, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+med+rationelle+tal&video_ids=A15B-zVFM_0%2CHID6DbJ7bIE%2CeS21UgN0da8%2C1x51hFn3uxg%2CBBSU9AfX0o8%2C2uPAwrCRR8k%2C20B7ovUr_Kg">21m 30s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-ratio-proportion">Forhold og proportionale sammenhænge</a> (7 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-ratio-proportion/cc-7th-rates">Forholdsopgaver med brøker</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Forholdsopgaver+med+br%C3%B8ker&video_ids=2DBBKArGfus">5m 7s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-ratio-proportion/7th-constant-of-proportionality">Proportionalitetskonstant</a> (4 Exercises, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Proportionalitetskonstant&video_ids=l-HtxhClZ-0%2CjihKUWH4Hfc%2Cn_UHN9t3cNg%2Crj7DweP8e58%2CwXtzBbU_cl8%2CrzDQ_ZIpi84%2C5Ilo0pw3iL8">22m 12s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-ratio-proportion/constant-of-proportionality">Proportionalitetskonstant</a> (3 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Proportionalitetskonstant&video_ids=oZxbLuJ1U5w%2C4g5ZEGoYtOA%2CFXpJQXzoXwI">13m 25s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-ratio-proportion/cc-7th-proportional-rel">Genkend proportionale sammenhænge</a> (2 Exercises, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Genkend+proportionale+sammenh%C3%A6nge&video_ids=qYjiVWwefto%2C-YYTUTrxl28%2CbJb4n19sFrs%2CUYIPCe74G80%2CHEmwn5jmy2Y%2CHzz5p0qlObs%2C9nH3A4riVxs">20m 4s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-ratio-proportion/cc-7th-graphs-proportions">Grafer med proportionale sammenhænge</a> (2 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Grafer+med+proportionale+sammenh%C3%A6nge&video_ids=7IU-TOOSxPM%2CC7CY4l99S7M%2CApstXGJtRrE">13m 6s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-ratio-proportion/cc-7th-write-and-solve-proportions">Skriv og løs opgaver med forhold</a> (1 Article, 3 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Skriv+og+l%C3%B8s+opgaver+med+forhold&video_ids=X7U3JM5Gur4%2C2TydPXqaylA%2CkMr-C0Kb9qI%2Cs8_14yxp1lQ">23m 57s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-ratio-proportion/cc-7th-equations-of-proportional-relationships">Ligninger med proportionale sammenhænge</a> (2 Exercises, 1 Quiz, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Ligninger+med+proportionale+sammenh%C3%A6nge&video_ids=qcz1Cm_-l50%2CaWcm22CJhew%2CMRFrQXDZim0">9m 58s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-variables-expressions">Algebraiske udtryk, ligninger og uligheder</a> (8 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-variables-expressions/cc-7th-manipulating-expressions">Samle ens led</a> (3 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Samle+ens+led&video_ids=UJ83yxwCCf0%2CJZFarXNn-sA%2CTQW0b-tMrv8%2CrtNuo7R3scY">17m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-variables-expressions/cc-7th-factoring">Den distributive lov og ækvivalente udtryk</a> (2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Den+distributive+lov+og+%C3%A6kvivalente+udtryk&video_ids=I6TBBzIvgB8%2Cmbb3msmX2xs%2CXtcylk5r0g8">13m 42s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-variables-expressions/cc-7th-interpreting-lin-exp">Fortolkning af lineære udtryk</a> (2 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Fortolkning+af+line%C3%A6re+udtryk&video_ids=J_q_Z7uiH9A%2CL9i3yAUp67A%2CC_KffdI34ZU">8m 36s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-variables-expressions/cc-7th-2-step-equations-intro">Introduktion til ligninger i to trin</a> (1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+ligninger+i+to+trin&video_ids=rMe8Relou64%2CG2vvfF_or0c%2C5o52GQv5Jsg%2C0QPtQFEvCEM">19m 29s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-variables-expressions/cc-8th-two-step-equations-dec-frac">Ligninger i to trin med decimaltal og brøker</a> (1 Article, 2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Ligninger+i+to+trin+med+decimaltal+og+br%C3%B8ker&video_ids=BOIA9wsM4ok%2C9C0qmng7hxw%2C6q8mk7z72AU">25m 29s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-variables-expressions/cc-7th-linear-eq-word-probs">Tekstopgaver med ligninger i to trin</a> (2 Exercises, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+med+ligninger+i+to+trin&video_ids=STfZKhONSqE%2CNC6CqEqQtBM%2CgRqMiflLUzk%2C0nyotoMAT6M%2CXoG44OkBuNA">27m 46s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-variables-expressions/cc-7th-inequalities">Uligheder i ét trin</a> (1 Article, 4 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Uligheder+i+%C3%A9t+trin&video_ids=vyonFjGwqGo%2CYh4TXMVq9eg%2CxVd1i0e8p7E%2C1MaxrBWBYkE%2CYVGEWoMFrjg">26m 54s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-variables-expressions/cc-7th-two-step-inequalities">Uligheder i to trin</a> (2 Exercises, 1 Quiz, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Uligheder+i+to+trin&video_ids=c_bl8VyiYlw%2CDpAfokg4aw0%2Cl6YExbCn7_o">13m 12s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-geometry">Geometri</a> (9 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-geometry/cc-7th-area-circumference">Areal og omkreds af cirkler</a> (3 Articles, 5 Exercises, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Areal+og+omkreds+af+cirkler&video_ids=jyLRpr2P0MQ%2CAikjm81JkvE%2CyWGeFDXgQvg%2C-jqWW22FMdI%2C-OpvV2lL-jw%2CYjWCDdNlXxc">28m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-geometry/cc-7th-area-circ-challenge">Udfordrende opgaver i areal og omkreds</a> (3 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Udfordrende+opgaver+i+areal+og+omkreds&video_ids=aaqJxCjkE_E%2CklLIOOa4lAM%2CwJCpn6rdI94">6m 55s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-geometry/cc-7th-angles">Vinkler</a> (1 Article, 6 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Vinkler&video_ids=fxkOOeowtiA%2C3yfd58CZMas%2CcNf12GARh7c">22m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-geometry/cc-7th-unknown-angle-algebra">Algebraiske opgaver med en ukendt vinkel</a> (3 Exercises, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Algebraiske+opgaver+med+en+ukendt+vinkel&video_ids=pGFd6vwsJhA%2CBxdeGx7s__I%2ChHvcpL4xe2A%2C7MWvLPI9JfU%2COFGhI4mk47c">15m 18s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-geometry/cc-7th-constructing-geometric-shapes">Konstruktion af trekanter</a> (1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Konstruktion+af+trekanter&video_ids=qSA6KkfnhPI%2CausVjRfMFZo%2C2JuH-f_O4EI">11m 17s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-geometry/cc-7th-slicing-geometric-shapes">Udskæring af geometriske figurer</a> (1 Exercise, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Udsk%C3%A6ring+af+geometriske+figurer&video_ids=7nyg1I0FJh8">3m 30s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-geometry/scale-copies">Skalerede kopier</a> (6 Exercises, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Skalerede+kopier&video_ids=z2E_GpucfeA%2Co07enwTfSpU%2CFeogTR_omiM%2CQBiTspq2Wck%2CZeY1mgog2YQ%2CRgi1z9r5hOk%2CYCjc3uRTq7I">18m 3s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-geometry/cc-7th-scale-drawings">Målestokstegning</a> (1 Article, 3 Exercises, 1 Quiz, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=M%C3%A5lestokstegning&video_ids=XUOPGqKGbjk%2C4s45M3L69MI%2CwWD29ItuEeg%2CTASA6V5fGT8%2Cj3w3F7th428%2Ch-qwno7n5F4%2CAAiubtYWY-U">26m 42s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-geometry/cc-7th-area-volume-surface-area">Opgaver om rumfang</a> (1 Exercise, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Opgaver+om+rumfang&video_ids=94687wssXjg%2CqofRW3InBuU%2CPU3HxNMj524">11m 23s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-probability-statistics">Statistik og sandsynlighed</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-probability-statistics/cc-7th-basic-prob">Grundlæggende sandsynlighedsregning</a> (3 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Grundl%C3%A6ggende+sandsynlighedsregning&video_ids=Xr2ncNRWkgc%2CLLT7cz22OYc%2C-RaiEnhq5uc%2CRdehfQJ8i_0%2CKFgvOQtH0Z0">36m 56s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-probability-statistics/cc-7th-theoretical-and-experimental-probability">Teoretisk og eksperimentel sandsynlighed</a> (2 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Teoretisk+og+eksperimentel+sandsynlighed&video_ids=tXlcE_K_C-Y%2C8bK-xfh8-rY%2CBIpsQIJUCC8">19m 32s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-probability-statistics/cc-7th-compound-events">Sammensatte begivenheder og udfaldsrum</a> (3 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Sammensatte+begivenheder+og+udfaldsrum&video_ids=PR-A3UAO7_0%2C7buVWpT1XtA%2C6zWPgvEMVlE%2CB_vAlneziHo%2CIZnVrj0sOss">26m 34s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-seventh-grade-math/cc-7th-probability-statistics/cc-7th-population-sampling">Sammenligning og stikprøveudtagning af populationer</a> (3 Exercises, 1 Quiz, 1 Test, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Sammenligning+og+stikpr%C3%B8veudtagning+af+populationer&video_ids=Xexk_EfAKZg%2CwCw-Fs6kdAE">8m 17s</a> )</li>
</ul></li>
</ul>
<h2 id="8-klasse-7-topics"><a href="https://da.khanacademy.org/math/cc-eighth-grade-math">8. klasse</a> (7 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-numbers-operations">Tal og operationer</a> (12 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-numbers-operations/cc-8th-repeating-decimals">Repeating decimals</a> (2 Articles, 3 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Repeating+decimals&video_ids=Y2-tz27nKoQ%2CxP_36Ti-MUs%2C2DkdlKTuSEc">17m 34s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-numbers-operations/cc-8th-roots">Square roots & cube roots</a> (3 Articles, 6 Exercises, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Square+roots+%26+cube+roots&video_ids=mbc3_e5lWw0%2C87_qIofPwhg%2CVklHyym1eyo%2CtRHLEWSUjrQ%2CGpOxsRF1Cjc">24m 22s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-numbers-operations/cc-8th-irrational-numbers">Irrationelle tal</a> (1 Article, 2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Irrationelle+tal&video_ids=1c6SFiot8Ck%2CuQSkYyFsZmA%2C-QHff5pRdM8%2CB30vBb3vrYg">23m 54s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-numbers-operations/cc-8th-approximating-irrational-numbers">Tilnærmelse af irrationelle tal</a> (1 Article, 3 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Tiln%C3%A6rmelse+af+irrationelle+tal&video_ids=Lh7NMBPFVZw%2CKibTbfkoPTs%2CEFVrAk61xjE%2CPuRsXST9EZU">21m 30s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-numbers-operations/exponents-with-negative-bases">Eksponenter med negative grundtal</a> (3 Exercises, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Eksponenter+med+negative+grundtal&video_ids=d0vsvUGVUP8%2CDmRBm_HWNkc%2CXHHYA2Ug9lk%2CYCkCtrP8Uyo%2CPms4cBWwPSU%2Cy0YCSi24Kl0">35m 45s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-numbers-operations/cc-8th-exponent-properties">Exponent properties intro</a> (1 Article, 4 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Exponent+properties+intro&video_ids=Baa3UMWmyIg%2CSwqOrUWzDY8%2CA3qd8orguQ0">29m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-numbers-operations/cc-8th-pos-neg-exponents">Negative eksponenter</a> (1 Article, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Negative+eksponenter&video_ids=oes2sQ2aKNQ%2ChQ2G6WVdUqs">11m 52s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-numbers-operations/cc-8th-exp-prop-integers">Exponent properties (integer exponents)</a> (2 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Exponent+properties+%28integer+exponents%29&video_ids=CZ5ne_mX5_I%2CdC1ojsMi1yU%2Cy0YCSi24Kl0">15m 23s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-numbers-operations/cc-8th-orders-of-magnitude">Working with powers of 10</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Working+with+powers+of+10&video_ids=tV8cMNYi4q4%2CXl724v0CU7E">6m 51s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-numbers-operations/cc-8th-scientific-notation">Scientific notation intro</a> (1 Article, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Scientific+notation+intro&video_ids=asHMrB6FUh4%2CwpuepaAeDzw">15m 38s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-numbers-operations/cc-8th-scientific-notation-compu">Computing with numbers in scientific notation</a> (2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Computing+with+numbers+in+scientific+notation&video_ids=8BCiigEX-Dc%2CSfULjXg68NA%2Cios3QL9t9LQ%2CLpqjL5wsBJg">20m 33s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-numbers-operations/cc-8th-scientific-notation-word-problems">Scientific notation word problems</a> (1 Exercise, 1 Quiz, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Scientific+notation+word+problems&video_ids=RjeyU7SrWjs%2CDJzmKK2xVvE%2C5IgL5PZevzI">15m 34s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-solving-equations">Løsning af ligninger</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-solving-equations/variables-on-both-sides">Lineære ligninger med variabler på begge sider</a> (2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Line%C3%A6re+ligninger+med+variabler+p%C3%A5+begge+sider&video_ids=b6kq9OXMI_k%2C1c5HY3z4k8M%2C65ENKfYVIdw%2CrHTjpLlcScs">21m 13s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-solving-equations/equations-with-parentheses">Equations with parentheses</a> (1 Article, 2 Exercises, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Equations+with+parentheses&video_ids=-ghWHITZr-c">6m 4s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-solving-equations/number-of-solutions-to-linear-equations">Number of solutions to equations</a> (2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Number+of+solutions+to+equations&video_ids=9wUZ-sOW00c%2C43nJumZ-0HM%2C0sDY5CFXt3A%2CimUdwkGMVUs">10m 26s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-solving-equations/linear-equations-word-problems">Equations word problems</a> (1 Exercise, 1 Quiz, 1 Test, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Equations+word+problems&video_ids=TOnbj6pZbWo%2Cd8De3xcVmnw">9m 52s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-linear-equations-functions">Linear equations and functions</a> (13 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-linear-equations-functions/cc-8th-graphing-prop-rel">Graftegning af proportionale sammenhænge</a> (2 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Graftegning+af+proportionale+sammenh%C3%A6nge&video_ids=kHQCDrWTDv8%2CXVVESAhN9Pg%2CCqjTKeI19No%2CuClvOe32XnY%2CLoKEPEPaNm4">13m 36s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-linear-equations-functions/8th-solutions-to-two-var-linear-equations">Solutions to linear equations</a> (2 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Solutions+to+linear+equations&video_ids=NVwy-2UYZBo%2Cqk69pR91R00%2Cd3VMo1VWFvc%2CEHR-YDwrrhM">23m 34s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-linear-equations-functions/8th-x-and-y-intercepts">Skæringspunkter</a> (1 Article, 2 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Sk%C3%A6ringspunkter&video_ids=LNSB0N6esPU%2Cz9QzzyRUBq4%2CeSs3PjrBQgI%2CCGZZINHT0I8%2Cz9A3iKTa_yg">19m 49s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-linear-equations-functions/8th-slope">Hældning</a> (3 Articles, 3 Exercises, 1 Quiz, 9 Videos | <a href="https://www.youtube.com/watch_videos?title=H%C3%A6ldning&video_ids=MeU-KzdCBps%2C6_9xNMtwnfs%2CEQoNfxToez0%2CngVtCiO4r0M%2CAXDgxQA-Xc4%2CE2T9KIHofsY%2CG4r9PpYQiL8%2CJdji4E4Ngh4%2CyfkDaGhH9pI">46m 56s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-linear-equations-functions/intro-slope-intercept-form">Introduktion til linjens ligning</a> (1 Article, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+linjens+ligning&video_ids=IL3UCuXrUzE%2CqgsNNqmlLoA">12m 46s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-linear-equations-functions/8th-slope-intercept-form">slope-intercept form</a> (2 Articles, 1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=slope-intercept+form&video_ids=rOKxMdjZGok">3m 1s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-linear-equations-functions/write-slope-intercept-equations">Skrive ligninger i standardform</a> (2 Articles, 2 Exercises, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Skrive+ligninger+i+standardform&video_ids=9wOalujeZf4%2CusijS3OrgL0%2CXMJ72mtMn4Y%2C5fkh01mClLU%2C3Ayt7mOd_To">41m 3s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-linear-equations-functions/8th-functions-and-function-notation">Functions & function notation</a> (3 Exercises, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Functions+%26+function+notation&video_ids=kvGsIo1TmsM%2C75ghj2jBxl0%2CJ7CdmzDy3A8%2C72wi3gB89pM%2CsS8DBS-CG3k%2Cx2Xjp1-di_k%2COOim0QPsJ9o">21m 56s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-linear-equations-functions/8th-linear-functions-modeling">Lineær modeller</a> (1 Article, 3 Exercises, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Line%C3%A6r+modeller&video_ids=uWqbXutavZg%2CH76xIEDI0-k%2CSQ8P_iWrgME%2CyuzPFkDsrXI%2CqPx7i1jwXX4%2C-GipHxJSvaQ%2CyAajesuG3Uo">35m 57s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-linear-equations-functions/compare-linear-fuctions">Sammenligning af lineære funktioner</a> (2 Exercises, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Sammenligning+af+line%C3%A6re+funktioner&video_ids=q7WF838bwy0%2C2vQTwl-jW60%2CM7tcL8aTAjc%2CHYIxn-wpVug%2CDzx6vcEE81U%2CYGFzpve2oRc">20m 53s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-linear-equations-functions/constructing-linear-models-real-world">Konstruer lineære modeller for virkelige sammenhænge</a> (2 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Konstruer+line%C3%A6re+modeller+for+virkelige+sammenh%C3%A6nge&video_ids=AAmVITyDXbc%2CzSVrr8K_CiI%2C5EdbPz1ZVn0%2CW7H-VcaSSu8%2C5c9N_1PEfHw">33m 45s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-linear-equations-functions/cc-8th-function-intro">Genkend funktioner</a> (2 Exercises, 9 Videos | <a href="https://www.youtube.com/watch_videos?title=Genkend+funktioner&video_ids=mvNoHnnJ7FM%2CguV1RBXk2OA%2CyMcDBerq8S4%2Czbvg3vodXkQ%2CN8XZC4bAReo%2CQWLcNxQ3KvQ%2CWiMTNSdxwAQ%2CDuCxSG_0jFE%2CcAi95YSdQjI">29m 30s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-linear-equations-functions/linear-nonlinear-functions-tut">Lineære og ikke-lineære funktioner</a> (2 Exercises, 1 Quiz, 1 Test, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Line%C3%A6re+og+ikke-line%C3%A6re+funktioner&video_ids=c8uOlKd-l0E%2CPt-Tn6L60-o%2CiqPwXPoOA1E%2CHYCDftKAuTE%2Cda0Zsvk1cXY">14m 38s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-systems-topic">Ligningssystemer</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-systems-topic/cc-8th-systems-overview">Intro to systems of equations</a> (1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Intro+to+systems+of+equations&video_ids=MR6bBV84yIc%2CzjrIr0MVFOo%2CYLRtOKx724Y">15m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-systems-topic/cc-8th-systems-graphically">Ligningssystemer med graftegning</a> (1 Article, 1 Exercise, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Ligningssystemer+med+graftegning&video_ids=eAy-GXIDwWc%2CzbGhPDVbLAc%2CMlSLTDJBJ4A%2CqozrrxDKWl4%2Co4pbAQgJYjI">28m 42s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-systems-topic/cc-8th-systems-with-substitution">Løs ligningssystemer med substitution</a> (2 Articles, 1 Exercise, 1 Quiz, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=L%C3%B8s+ligningssystemer+med+substitution&video_ids=CB8fVaipYtU%2CgLWP9ygUfko%2C_SzH1R7rpXs%2Cn9Lf7ktwbJY%2C2VeqrZ_PMiY%2Cfs9kXvi4Eig">26m 38s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-systems-topic/cc-8th-systems-solutions">Antallet af løsninger til ligningssystemer</a> (1 Article, 2 Exercises, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Antallet+af+l%C3%B8sninger+til+ligningssystemer&video_ids=NJRyxmommqQ%2CUUft65eDe5U%2CvEZvxhwCBzY%2Cerpflsl20Z0%2CasK9AxVaRtQ%2CogEddosP1G8%2Cc3VHekCDJs0">39m 58s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-systems-topic/cc-8th-systems-word-problems">Ligningssystemer - tekstopgaver</a> (2 Exercises, 1 Quiz, 1 Test, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Ligningssystemer+-+tekstopgaver&video_ids=u-GDA_vSakg%2CmbFMcvaGAMY%2CW-5liMGKgHA%2CQ0tTfe2lKIc%2CSRn3WhhS6vs%2Cnjb6xYF0GZ0%2Cv6L8--MlnKo">38m 34s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-geometry">Geometri</a> (7 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-geometry/cc-8th-angles-between-lines">Vinkler mellem skærende linjer</a> (3 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Vinkler+mellem+sk%C3%A6rende+linjer&video_ids=KuZDivTQI0w%2CbWR2GYKm560%2CCYjbGIIrd6M%2C60ov_fB2BWc">17m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-geometry/cc-8th-triangle-angles">Trekantens vinkler</a> (1 Article, 3 Exercises, 1 Quiz, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Trekantens+vinkler&video_ids=kZQJKgHiaEc%2CTAB1a90KgAU%2C-sPKC1Nis_U%2CN9G65_85-ZI%2CTv8smapwrXo%2CLDUEueV6PFw%2C8GwVbXvGlR8">42m 17s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-geometry/cc-8th-pythagorean-theorem">Pythagoras læresætning</a> (1 Article, 4 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Pythagoras+l%C3%A6res%C3%A6tning&video_ids=uo-74D7fPzM%2ChyhAy6xh6dY%2CTjOlZr_2uW4">18m 51s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-geometry/pythagorean-theorem-application">Anvendelse af Pythagoras' læresætning</a> (4 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Anvendelse+af+Pythagoras%27+l%C3%A6res%C3%A6tning&video_ids=yZ4CbopnVBg%2C6uouxsS0EfQ%2CB7UV4O-uWiY%2C1UQ5IbihJNI">17m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-geometry/pythagorean-distance">Pythagoras' læresætning og afstand mellem to punkter</a> (2 Articles, 1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Pythagoras%27+l%C3%A6res%C3%A6tning+og+afstand+mellem+to+punkter&video_ids=nyZuite17Pc">9m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-geometry/cc-8th-pythagorean-proofs">Beviser for Pythagoras læresætning</a> (1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Beviser+for+Pythagoras+l%C3%A6res%C3%A6tning&video_ids=PDWkmbTFrhg%2CoK_btwZI2QQ%2C9ozrm2RbM5c%2C_q6Vy_RTyKQ">38m 14s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-geometry/cc-8th-volume">Rumfang</a> (4 Exercises, 1 Quiz, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Rumfang&video_ids=2AV3PJm8CSU%2CIelS2vg7JO8%2Cy2JtTCiW9rk">16m 26s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/geometric-transformations">Geometriske konstruktioner</a> (7 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/geometric-transformations/identify-transformations">Transformationer</a> (1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Transformationer&video_ids=XiAoUDfrar0%2CKv-lyVmQ5ps%2CK7QTjFdUIyk">12m 41s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/geometric-transformations/translations-8th">Flytninger</a> (4 Articles, 3 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Flytninger&video_ids=SxxzfojT1Pw%2Cg_ijRF_NMLk%2CBrYEuO7fwMw">7m 18s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/geometric-transformations/rotations-8th">Rotationer</a> (3 Articles, 2 Exercises, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Rotationer&video_ids=0NYbQPcdxg8%2C6pH-7pciYU8">4m 47s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/geometric-transformations/reflections-8th">Spejlinger</a> (2 Articles, 3 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Spejlinger&video_ids=F77xiSlCehI%2ClfBDOQddTD0%2C435Ipnmp7bA">8m 3s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/geometric-transformations/transformations-properties">Egenskaber og definitioner af transformationer</a> (3 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Egenskaber+og+definitioner+af+transformationer&video_ids=7y4FGCvNgB8%2CbrccWoewXiI%2C4AxYt_Cjd1o">14m 52s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/geometric-transformations/8th-dilations">Dilations</a> (4 Exercises, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Dilations&video_ids=N0_HfmxdbCg%2Cb4ORXN7a0-w%2C6dyWKD_JPhI%2CqlWZJ21O63s%2CchdnDLbSbU8">18m 34s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/geometric-transformations/congruence-similarity">Kongruens og ligdannethed</a> (2 Exercises, 1 Quiz, 1 Test, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Kongruens+og+ligdannethed&video_ids=Tn9U8hLu9aI%2CEDlZAyhWxhk%2C6p1lweGactg%2C2yjSAarzWF8">7m 1s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-data">Data og modellering</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-data/cc-8th-scatter-plots">Introduction to scatter plots</a> (2 Exercises, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Introduction+to+scatter+plots&video_ids=YJHY_UW73H8">2m 32s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-data/cc-8th-interpreting-scatter-plots">Fortolkning af linjegrafer</a> (2 Articles, 2 Exercises, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Fortolkning+af+linjegrafer&video_ids=Jpbm5YgciqI%2C5pgK23gYl14">5m 1s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-data/cc-8th-line-of-best-fit">Estimating lines of best fit</a> (4 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Estimating+lines+of+best+fit&video_ids=s3yLJcc3FFg%2CGJ9a242mvhk%2CTWkYalFn8lo%2CEIYZqGxf0jE">12m 55s</a> )</li>
<li><a href="https://da.khanacademy.org/math/cc-eighth-grade-math/cc-8th-data/two-way-tables">Tovejs-tabeller</a> (1 Article, 5 Exercises, 1 Quiz, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Tovejs-tabeller&video_ids=l5MrtV7ZN88%2C_ETPMszULXc%2CMarqSlyz-lU">12m 35s</a> )</li>
</ul></li>
</ul>
<h2 id="grundlæggende-aritmetik-5-topics"><a href="https://da.khanacademy.org/math/arithmetic">Grundlæggende aritmetik</a> (5 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/math/arithmetic/arith-review-add-subtract">Addition og subtraktion</a> (8 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/arithmetic/arith-review-add-subtract/arith-review-basic-add-subtract">Grundlæggende plus og minus (addition og subtraktion)</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Grundl%C3%A6ggende+plus+og+minus+%28addition+og+subtraktion%29&video_ids=AuX7nPBqDts%2CF_plhIxAUok">16m 14s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/arith-review-add-subtract/arith-review-add-subtract-20">Addition og subtraktion med tal under 20</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Addition+og+subtraktion+med+tal+under+20&video_ids=AK0NZITv5Ns%2C9McJ3GobPaY">7m 22s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/arith-review-add-subtract/arith-review-strategies-for-adding-within-100">Metoder til at plusse tal under 100</a> (4 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Metoder+til+at+plusse+tal+under+100&video_ids=Q35CH9B3tvc%2CDzJvR56Suss%2CkMHFY6ZrKbU%2CI5xcZgyY4ag">11m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/arith-review-add-subtract/arith-review-add-within-100a">Addition med tal under 100</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Addition+med+tal+under+100&video_ids=K5rmfHlHy20%2C8mcTsyV56jI">7m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/arith-review-add-subtract/arith-review-subtract-within-100">Subtraktion med tal under 100</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Subtraktion+med+tal+under+100&video_ids=slIX9EDcHgE%2CegjDLFX9VHg">8m 3s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/arith-review-add-subtract/arith-review-add-sub-100-word-problems">Tekstopgaver med tal under 100</a> (2 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+med+tal+under+100&video_ids=rm3NjcSmFFo%2C1dZsuE0vxEI%2CwyWy4PouQxQ%2CZJ39gHgz_Dk">15m 48s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/arith-review-add-subtract/arith-review-adding-carrying">Addition med mente med tal under 1000</a> (3 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Addition+med+mente+med+tal+under+1000&video_ids=_eawSQuZ8jY%2Cxs7IS4IVouM%2CDqaHhReVpZI%2CTVtdqRNJmiw%2CW3zji0qh658">16m 47s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/arith-review-add-subtract/arith-review-regrouping-3-dig">Fratrækning med omgruppering under 1000 </a> (5 Exercises, 1 Quiz, 1 Test, 10 Videos | <a href="https://www.youtube.com/watch_videos?title=Fratr%C3%A6kning+med+omgruppering+under+1000+&video_ids=ZIiZkmaehsU%2CXAPhD7EDQUk%2CIVWP0vVDcbM%2CLYgIfp1KPkE%2Ca5FifaKS_Wg%2CmeGOEBsaHi4%2CbuyK1y4rV3E%2CHe4cjB2ectc%2C0Chsg4ns_FI%2C4TcA1l01s9c">37m 13s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/arithmetic/arith-review-multiply-divide">Multiplikation og division</a> (10 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/arithmetic/arith-review-multiply-divide/arith-review-mult-intro">Introduktion til multiplikation</a> (8 Exercises, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+multiplikation&video_ids=NVhA7avdTAw%2C1tjJDdszcZg%2CRNxwasijbAo%2CqUAeDpmqWDQ%2CPLDfl6daajo%2COu04jLURVWU%2CP37Av9WxrTA">26m 43s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/arith-review-multiply-divide/arith-review-mult-10s-100s-1000s">Multiplikation med tiere, hundreder og tusinder</a> (5 Exercises, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Multiplikation+med+tiere%2C+hundreder+og+tusinder&video_ids=tHQOAvbyRL0%2C1yDTeQEgz4U%2CuHHnwafYivk%2CSG4gX-VGzog%2CyVg6LyNgIT8">31m 18s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/arith-review-multiply-divide/arith-review-place-value-area-models">Multiplikation: pladsværdi og arealmodeller</a> (6 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Multiplikation%3A+pladsv%C3%A6rdi+og+arealmodeller&video_ids=NWJinKmWzx8%2CInzLSBSw9Os%2CBTqEtpcfu44%2Cov_lqS-yVh4%2CfQ1zZYWjvwc">28m 58s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/arith-review-multiply-divide/arith-review-multi-digit-mult">Multiplikation af fler-cifrede tal</a> (5 Exercises, 1 Quiz, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Multiplikation+af+fler-cifrede+tal&video_ids=gDFJPQF-SU4%2CWEfmiMUJcHU%2CZwWV5yvR5Kw%2CwLvirtlmPEM%2CmhkydP7L9lg%2CFmAgttYiBVY">23m 58s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/arith-review-multiply-divide/arith-review-division-intro">Introduktion til division</a> (5 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+division&video_ids=1WV6Ui8xsuA%2CqIAszZBV84s%2CvBWuQnmiY3k">14m</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/arith-review-multiply-divide/arith-review-div-pv-area">Division: pladsværdi og areal</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Division%3A+pladsv%C3%A6rdi+og+areal&video_ids=xUjRwepN7dk%2CFKJjqEdfB9Y">16m 22s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/arith-review-multiply-divide/arith-review-multi-digit-div">Division af fler-cifrede tal</a> (1 Exercise, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Division+af+fler-cifrede+tal&video_ids=jXF0j7iJxm0%2C9H_2jqXiGsg%2CKzdbThwGNGI">11m 55s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/arith-review-multiply-divide/arith-review-remainders">Rest</a> (2 Articles, 3 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Rest&video_ids=ISIjTqy6FWg%2Cf3GA2aPx2t4%2CvtzL1ZSO2ck">16m 33s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/arith-review-multiply-divide/arith-review-mult-digit-div-2">Division af fler-cifrede tal</a> (3 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Division+af+fler-cifrede+tal&video_ids=fVu5jI3o2ns%2C6N_ICFs9OoE">7m 58s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/arith-review-multiply-divide/arith-review-multistep-word-problems">Fler-trins tekstopgaver</a> (3 Exercises, 1 Quiz, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Fler-trins+tekstopgaver&video_ids=vdJn_ncXpv8%2CSwiUoJt5Yss%2Cy0EAEMoCmu0">10m 19s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/arithmetic/arith-review-negative-numbers">Negative tal</a> (8 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/arithmetic/arith-review-negative-numbers/arith-review-neg-num-intro">Introduktion til negative tal</a> (1 Article, 2 Exercises, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+negative+tal&video_ids=SIoRN3o9aGE">9m 36s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/arith-review-negative-numbers/arith-review-order-neg-numbers">Ordning af negative tal</a> (1 Article, 1 Exercise, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Ordning+af+negative+tal&video_ids=FD1bkSKnUE4">2m 47s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/arith-review-negative-numbers/arith-review-number-opposites">Modsatte tal</a> (2 Articles, 2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Modsatte+tal&video_ids=2Zk6u7Uk5ow%2C3-aryZYsoxU">8m 14s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/arith-review-negative-numbers/arith-review-abs-value">Numerisk (absolut) værdi</a> (2 Articles, 3 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Numerisk+%28absolut%29+v%C3%A6rdi&video_ids=hisGgp440z4%2CDqNH8Z1nWRI%2CMFoXK57sw9k%2Ct4xOkpP8FgE">14m 16s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/arith-review-negative-numbers/arith-review-add-negatives-intro">Introduktion til addition af negative tal</a> (1 Article, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+addition+af+negative+tal&video_ids=qYlgmPqdLhU%2CLpynipuKuJ4">11m 13s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/arith-review-negative-numbers/arith-review-sub-neg-intro">Introduktion til subtraktion af negative tal</a> (1 Article, 2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+subtraktion+af+negative+tal&video_ids=4Tt9EeIxXXs%2CDl_NldPtQDI">5m 40s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/arith-review-negative-numbers/arith-review-add-and-sub-integersss">Addition og subtraktion af heltal</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Addition+og+subtraktion+af+heltal&video_ids=LpynipuKuJ4">5m 32s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/arith-review-negative-numbers/arith-review-mult-divide-negatives">Multiplikation og division med negative tal</a> (2 Articles, 3 Exercises, 1 Quiz, 1 Test, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Multiplikation+og+division+med+negative+tal&video_ids=2IRc0Mx-XrE%2CpCpzYHQaFzs%2CYoPHp8OGLEc%2COtGZAQgrLpY">22m 27s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/arithmetic/fraction-arithmetic">Brøker</a> (20 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/arithmetic/fraction-arithmetic/arith-review-fractions-intro">Introduktion til brøker</a> (4 Exercises, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+br%C3%B8ker&video_ids=q9Na7YgsXN4%2CgEE6yIObbmg%2CKGSwhRXMa3M%2C41dyPu6vIoU%2CeBzQdDgBB_8%2CbnQAfGLfby8">14m 55s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/fraction-arithmetic/arith-review-fractions-on-the-number-line">Brøker på tallinjen</a> (4 Exercises, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Br%C3%B8ker+p%C3%A5+tallinjen&video_ids=WoJqJE-tRWw%2CxeoVPSBP9WI">5m 15s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/fraction-arithmetic/arith-review-visualizing-equiv-frac">Ækvivalente brøker</a> (2 Articles, 4 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=%C3%86kvivalente+br%C3%B8ker&video_ids=-I-Tjzsg4O8%2C_35vTmi2WJk%2CG4VxHxwi6DY%2C44JEvUmDwXo">17m 9s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/fraction-arithmetic/arith-review-comparing-fractions">Sammenligning af brøker</a> (6 Exercises, 1 Quiz, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Sammenligning+af+br%C3%B8ker&video_ids=8uYQTj7mfEk%2CwbAxarp_Ug4%2CJhCbQO38zo4%2CAK4xaJL8UOA%2CiTDFpx11wBk%2CONsI-yIbsBg">33m 32s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/fraction-arithmetic/arith-review-common-denominators">Fællesnævnere</a> (1 Article, 1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=F%C3%A6llesn%C3%A6vnere&video_ids=BBpXlajHVK4%2CT8U7hCmUdpo%2C0EwwoDVJVPQ">17m 16s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/fraction-arithmetic/arith-review-decompose-fractions">Opdeling af brøker</a> (1 Article, 2 Exercises, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Opdeling+af+br%C3%B8ker&video_ids=DCuhPy-gM48%2Cp18Bi2s8Nns">9m 59s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/fraction-arithmetic/arith-review-adding-subtracting-frac">Addition og subtraktion af brøker med fællesnævner</a> (3 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Addition+og+subtraktion+af+br%C3%B8ker+med+f%C3%A6llesn%C3%A6vner&video_ids=hjK3RUyDW9U%2CL9M7CC8yQgw%2ClnoOsc3pigY%2CugxCYN97-ow">9m 50s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/fraction-arithmetic/arith-review-mixed-number">Blandede tal</a> (1 Article, 2 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Blandede+tal&video_ids=qwmYqIadXLs%2CY_0L_OVrjBI%2C_FRxr2MeMDc">15m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/fraction-arithmetic/arith-review-add-sub-fractions">Addition og subtraktion af brøker med forskellige nævnere</a> (3 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Addition+og+subtraktion+af+br%C3%B8ker+med+forskellige+n%C3%A6vnere&video_ids=fvtv2uYjo_E%2CpoGjjX_VNbM%2CbcCLKACsYJ0%2C2DPivVFCdqA">21m 51s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/fraction-arithmetic/arith-review-add-sub-mix-num-w-unlike-den">Addition og subtraktion af blandede tal med forskellige nævnere</a> (2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Addition+og+subtraktion+af+blandede+tal+med+forskellige+n%C3%A6vnere&video_ids=A_eb2HprnVU%2Cr3EMZcAh0ms%2CI01O0r8b-po%2Cr3M68V9Joac">13m 51s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/fraction-arithmetic/arith-review-add-sub-frac-word-probs">Læg til og træk fra med brøker tekstopgaver</a> (2 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=L%C3%A6g+til+og+tr%C3%A6k+fra+med+br%C3%B8ker+tekstopgaver&video_ids=FAAivrExpi0%2CrqeuI4diWzA%2CPKh5B9xyzSc%2C6Zyt4uFfOSU">14m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/fraction-arithmetic/arith-review-mult-whole-number-frac">Multiplikation af hele tal og brøker</a> (4 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Multiplikation+af+hele+tal+og+br%C3%B8ker&video_ids=KimE8b6cnoo%2CwefivHjlDac">6m 50s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/fraction-arithmetic/arith-review-multiplication-as-scaling">Multiplikation som skalering</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Multiplikation+som+skalering&video_ids=jKdH-YkX-Vc">5m 6s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/fraction-arithmetic/arith-review-multiply-fractions">Multiplikation af brøker</a> (1 Article, 3 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Multiplikation+af+br%C3%B8ker&video_ids=QAaTWX3NsRM%2CxKDHYVNss1k%2ClJdb4_Fuxvw%2CqWegvvhpIbQ">17m 15s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/fraction-arithmetic/arith-review-mult-mixed-num">Multiplikation af blandede tal</a> (2 Exercises, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Multiplikation+af+blandede+tal&video_ids=blLIDPdIZsA">4m 21s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/fraction-arithmetic/arith-review-mult-frac-word-probs">Tekstopgaver med multiplikation af brøker</a> (1 Exercise, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+med+multiplikation+af+br%C3%B8ker&video_ids=Gh9ObLMFAKo%2COjyINhSfU_A%2CtfjQVtOyoaQ">8m 50s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/fraction-arithmetic/arith-review-fractions-as-division">Brøker som division</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Br%C3%B8ker+som+division&video_ids=Fv1-e1CxnDU%2CMcm0Q3wGhMo">9m 29s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/fraction-arithmetic/arith-review-div-unit-frac-by-whole">Division af enhedsbrøker og hele tal</a> (2 Exercises, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Division+af+enhedsbr%C3%B8ker+og+hele+tal&video_ids=QsDMlHW826U%2Cb26JxSoZvic">4m 17s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/fraction-arithmetic/arith-review-dividing-fractions">Division af brøker med brøker</a> (1 Article, 2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Division+af+br%C3%B8ker+med+br%C3%B8ker&video_ids=168vJPGNLCA%2Cj9ZlRiXF7Yk%2C6anjphOOQr0">10m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/fraction-arithmetic/arith-review-div-fractions-word-problems">Tekstopgaver med division af brøker</a> (1 Exercise, 1 Quiz, 1 Test, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+med+division+af+br%C3%B8ker&video_ids=8Wl2hdiNVII">2m 8s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/arithmetic/arith-decimals">Decimaltal</a> (10 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/arithmetic/arith-decimals/arith-review-decimals-intro">Introduktion til decimaltal</a> (5 Exercises, 9 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+decimaltal&video_ids=BItpeFXC4vA%2C5TwOaUrniaI%2CqSPwUDmpnJ4%2Che4kcTujy30%2Cs9PvbFG2yJA%2Cek0zu14IP7g%2Cwtrrr15mbvQ%2Ce_KEaTPcPKg%2CU3w9ppDv_MU">37m 29s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/arith-decimals/arith-review-decimals-number-line">Decimaltal på en tallinje</a> (5 Exercises, 1 Quiz, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Decimaltal+p%C3%A5+en+tallinje&video_ids=7oUBK0cNxV8%2Cqb0QSP7Sfz4%2CgWqYXa7r_V0%2CSrL8abwGKyA%2CbFjaZ_8pi3c%2CABHQJFWZGsk%2C68mrr430De0">18m 4s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/arith-decimals/arith-review-rounding-decimals">Afrunding af decimaltal</a> (3 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Afrunding+af+decimaltal&video_ids=O_t12OS9Grk%2CT3BMIaDUvck">5m 48s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/arith-decimals/arith-review-comparing-decimals">Sammenligning af decimaltal</a> (5 Exercises, 9 Videos | <a href="https://www.youtube.com/watch_videos?title=Sammenligning+af+decimaltal&video_ids=ekibnsVqE-k%2CUf_l9IUiUf0%2Chd8d6XzcCt4%2CEoo6Kc9tYhA%2C_tk3nWC5OAA%2CrTU2WjDFR5Y%2Ccp8f8cLkxBk%2CRmHmtLQ-pqU%2CDese7hoWZMM">27m 58s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/arith-decimals/arith-review-decimals-to-fractions">Omskrivning af decimaltal til brøker</a> (6 Exercises, 1 Quiz, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Omskrivning+af+decimaltal+til+br%C3%B8ker&video_ids=NfU7cmajLAY%2Cup1WzOOtDXs%2CrIxJYwDOUFo%2Cz5mPVqL6R9Q%2CMAuiIcVS3W8%2CxyPqi6NYF8c%2C41Fk0ApD8xU%2ClfSckfXTKUI">15m 55s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/arith-decimals/arith-review-add-decimals">Addition af decimaltal</a> (1 Article, 4 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Addition+af+decimaltal&video_ids=7I_AILEWTL4%2CfWi-i_mdUOI%2ChCaOTzUFSjw%2CLaI7ercRxoM%2Cl3GVeYfb7aE">20m 34s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/arith-decimals/arith-review-sub-decimals">Subtraktion af decimaltal</a> (1 Article, 4 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Subtraktion+af+decimaltal&video_ids=IE0HQoLrbX4%2CURdTZ38JvOI%2CYyfFfnABCBc%2CJPshMUArVYA">18m 2s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/arith-decimals/arith-review-add-sub-decimals-word-problems">Tekstopgaver med subtraktion af decimaltal</a> (1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+med+subtraktion+af+decimaltal&video_ids=Cf-Tzu6ruG4%2CvjhhooXBqr4">3m 52s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/arith-decimals/arith-review-multiplying-decimals">Multiplikation af decimaltal</a> (1 Article, 9 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Multiplikation+af+decimaltal&video_ids=ep4uT1aHuXU%2CxBseQOzMB7A%2CAj5M8NDauv4%2CQ4m7JSbHeoU">19m 51s</a> )</li>
<li><a href="https://da.khanacademy.org/math/arithmetic/arith-decimals/arith-review-dividing-decimals">Division af decimaltal</a> (1 Article, 7 Exercises, 1 Quiz, 1 Test, 10 Videos | <a href="https://www.youtube.com/watch_videos?title=Division+af+decimaltal&video_ids=xUDlKV8lJbM%2Czlq_jQYD1mA%2CHeiYNlVM-TY%2CbRRtp9XdDrY%2CdToPqCXHNDA%2C7JPIX3odZrY%2CHrjr5f5pZ84%2Cx48CYVaD0xE%2Ci8_NJ4kqvJM%2C6fLNcGSa_L4">52m 1s</a> )</li>
</ul></li>
</ul>
<h2 id="grundlæggende-geometri-8-topics"><a href="https://da.khanacademy.org/math/basic-geo">Grundlæggende geometri</a> (8 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geo-lines">Linjer</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geo-lines/lines-rays">Linjer, linjestykker og halvlinjer</a> (1 Article, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Linjer%2C+linjestykker+og+halvlinjer&video_ids=UiGHAFx3bCU%2C-DcovWfpl6Y">16m 36s</a> )</li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geo-lines/parallel-perp">Parallel og ortogonal (vinkelret)</a> (1 Article, 2 Exercises, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Parallel+og+ortogonal+%28vinkelret%29&video_ids=uaL8KMxfw9Q%2CbWR2GYKm560%2CdavepigwSd0">7m 38s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geo-angle">Vinkler</a> (6 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geo-angle/angle-intro">Introduktion til vinkler</a> (1 Article, 2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+vinkler&video_ids=fxkOOeowtiA%2Ct_8ojukiHgg">8m</a> )</li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geo-angle/measure-angles">Måling og tegning af vinkler</a> (2 Articles, 3 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=M%C3%A5ling+og+tegning+af+vinkler&video_ids=Bk6wNity7uM%2CqR_SybHn_QM%2Ciyu9hsxI3PA%2CQmfoIvgIVlE">18m 33s</a> )</li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geo-angle/angles-in-circles">Vinkler i cirkler</a> (1 Article, 1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Vinkler+i+cirkler&video_ids=MOkRYWJJyAA%2CTtji2_wBSEo%2C_jRXtJz3CYc">12m 45s</a> )</li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geo-angle/basic-geo-angle-types">Vinkeltyper</a> (1 Article, 4 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Vinkeltyper&video_ids=8s_ZHzKazAE%2Cq-1sYo__fNU%2C4ZyTVTGVPgE%2C2mzuFKCuDg4">12m 30s</a> )</li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geo-angle/vert-comp-supp-angles">Topvinkler, komplementære og supplementære vinkler</a> (2 Articles, 4 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Topvinkler%2C+komplement%C3%A6re+og+supplement%C3%A6re+vinkler&video_ids=3yfd58CZMas%2CcNf12GARh7c">15m 50s</a> )</li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geo-angle/angles-between-lines">Vinkler mellem skærende linjer</a> (1 Exercise, 1 Quiz, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Vinkler+mellem+sk%C3%A6rende+linjer&video_ids=KuZDivTQI0w%2CbWR2GYKm560%2CCYjbGIIrd6M">12m 58s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geometry-shapes">Figurer</a> (6 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geometry-shapes/basic-geo-properties-shapes">Egenskaber for figurer</a> (1 Article, 3 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Egenskaber+for+figurer&video_ids=8xbIS2UkQxI%2C10dTx1Zy_4w">10m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geometry-shapes/basic-geo-quadrilaterals">Firkanter</a> (3 Articles, 4 Exercises, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Firkanter&video_ids=Bjvs3kpXyz4%2CDcIS_wHFpkw%2Ci2ot23n8z1s%2C1pHhMX0_4Bw%2CZz5QRQZBptY">24m 26s</a> )</li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geometry-shapes/basic-geo-classifying-triangles">Trekanter</a> (1 Article, 4 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Trekanter&video_ids=bbHS_iJR7gg%2CsZMezOCZr40%2CVbFtOeQ3BS4%2CausVjRfMFZo">17m 52s</a> )</li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geometry-shapes/basic-geo-classify-geo-shapes">Klassificering af figurer</a> (2 Exercises, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Klassificering+af+figurer&video_ids=daE-7MY1CEI%2CxO4n3LfmVag">5m 52s</a> )</li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geometry-shapes/triangle-angles">Trekantens vinkler</a> (1 Article, 5 Exercises, 1 Quiz, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Trekantens+vinkler&video_ids=kZQJKgHiaEc%2C-sPKC1Nis_U%2CN9G65_85-ZI%2CTv8smapwrXo%2CLDUEueV6PFw%2C8GwVbXvGlR8%2CI5eTOBsvUK8">38m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geometry-shapes/basic-geo-geometric-solids">Kopi af tredimensionelle figurer</a> (2 Exercises, 1 Test, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Kopi+af+tredimensionelle+figurer&video_ids=_y17uHBwa_8%2CtqxQSSzuXX0">7m 16s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geo-coord-plane">Koordinatsystemet</a> (6 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geo-coord-plane/coordinate-plane-quad-1">Koordinatsystemet: 1. kvadrant</a> (2 Articles, 2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Koordinatsystemet%3A+1.+kvadrant&video_ids=pAlq9fFwtus%2CWFjJJVguT6E%2C-U0WKZlmkP8">11m 15s</a> )</li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geo-coord-plane/coordinate-plane-4-quad">Koordinatsystemet</a> (3 Articles, 2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Koordinatsystemet&video_ids=K_RMPrxgMn4%2CdRV1WFdfSLY%2CqYoEcdCglM8%2CzEPxb6ojYH0">14m 48s</a> )</li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geo-coord-plane/quadrants">Kvadranter</a> (1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Kvadranter&video_ids=C6mz9QlNPp4%2C0p5TlHW4ro0">4m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geo-coord-plane/reflect-points-coord-plane">Spejling af punkter i koordinatsystemet</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Spejling+af+punkter+i+koordinatsystemet&video_ids=5-ggGQh5SjI">3m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geo-coord-plane/quadrilaterals-on-plane">Firkanter i koordinatsystemet</a> (1 Article, 2 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Firkanter+i+koordinatsystemet&video_ids=WkiPVButdeg%2CxTcwnhyPN5E%2CfEpINE1fjgc%2C8V-PdgS2GKc%2Cs2wmcnZi6kE">13m 24s</a> )</li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geo-coord-plane/polygons-in-the-coordinate-plane">Tegn polygoner i koordinatsystemet</a> (1 Exercise, 1 Quiz, 1 Test, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Tegn+polygoner+i+koordinatsystemet&video_ids=zxy4KAiSPIc">1m 32s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geo-area-and-perimeter">Areal og omkreds</a> (7 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geo-area-and-perimeter/basic-geo-unit-squares-area">Tæl enhedskvadrater for at finde areal</a> (3 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=T%C3%A6l+enhedskvadrater+for+at+finde+areal&video_ids=eFtRRdVLmHQ%2CGJMrsxoH6Xo%2CJX_ZgrFf2j8%2CcYyfwJSvT-k">14m 16s</a> )</li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geo-area-and-perimeter/area-formula-intuition">Areal af rektangler</a> (1 Article, 4 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Areal+af+rektangler&video_ids=mu3HHCdYYtY%2C_JdgDBzQ0Us%2CBjF8UGX97Fw">11m 46s</a> )</li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geo-area-and-perimeter/basic-geo-perimeter">Omkreds</a> (2 Articles, 6 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Omkreds&video_ids=7Z0tK4DVZ9w%2C9cTe_KaFhVQ%2Ctmt5fXhU7Rs%2C_sQ3dqhLsIw">13m 50s</a> )</li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geo-area-and-perimeter/parallelogram-area">Areal af parallelogrammer</a> (1 Article, 2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Areal+af+parallelogrammer&video_ids=hm17lVaor0Q%2CSKe3ItfdzTY">4m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geo-area-and-perimeter/area-triangle">Areal af trekanter</a> (1 Article, 4 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Areal+af+trekanter&video_ids=rRTXKQpblEc%2C7N5orPxUoGo%2CwTkH288r84s">10m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geo-area-and-perimeter/area-trap-composite">Area of trapezoids and composite figures</a> (3 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Area+of+trapezoids+and+composite+figures&video_ids=MGrAgG687e8%2CmKdE1d11NIQ%2CIxOjd3TLSh8%2CIi7wvIKi05U">17m 49s</a> )</li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geo-area-and-perimeter/area-circumference-circle">Areal og omkreds af cirkler</a> (3 Articles, 4 Exercises, 1 Quiz, 1 Test, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Areal+og+omkreds+af+cirkler&video_ids=jyLRpr2P0MQ%2CAikjm81JkvE%2C-jqWW22FMdI%2C-OpvV2lL-jw%2CaaqJxCjkE_E%2CYjWCDdNlXxc">26m 52s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geo-volume-sa">Rumfang og overfaldeareal</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geo-volume-sa/volume-rect-prism">Rumfang af rektangulære prismer</a> (2 Articles, 5 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Rumfang+af+rektangul%C3%A6re+prismer&video_ids=JjWRNbFsSoo%2CoTfkhIzLaGY%2Cbc-69Evzwj0%2C-wORxh-QD98%2CIShaLZ8CMXY">23m 42s</a> )</li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geo-volume-sa/volume-with-fractions">Rumfang med brøker</a> (4 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Rumfang+med+br%C3%B8ker&video_ids=PGTE_2tFPS0%2CRXJzos_em08%2Cql5oh6cfT7o">14m 55s</a> )</li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geo-volume-sa/basic-geometry-surface-area">Overfladeareal</a> (1 Article, 6 Exercises, 1 Quiz, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Overfladeareal&video_ids=EYLEHZ89Pa0%2CmtMNvnm71Z0%2C1iSBNSYhvIU%2Cvl1uMOYFyf4%2C8ibnLU8J740%2CODNCH3gSKdA">26m 25s</a> )</li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geo-volume-sa/volume-cones">Rumfang af kegler, cylindre og kugler</a> (1 Article, 4 Exercises, 1 Quiz, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Rumfang+af+kegler%2C+cylindre+og+kugler&video_ids=2AV3PJm8CSU%2Cy2JtTCiW9rk%2CIelS2vg7JO8">16m 26s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geometry-pythagorean-theorem">Pythagoras' læresætning</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geometry-pythagorean-theorem/geo-pythagorean-theorem">Pythagoras' læresætning</a> (1 Article, 4 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Pythagoras%27+l%C3%A6res%C3%A6tning&video_ids=uo-74D7fPzM%2ChyhAy6xh6dY%2CyZ4CbopnVBg">19m 3s</a> )</li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geometry-pythagorean-theorem/pythagorean-theorem-app">Anvendelse af Pythagoras' læresætning</a> (3 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Anvendelse+af+Pythagoras%27+l%C3%A6res%C3%A6tning&video_ids=yZ4CbopnVBg%2C6uouxsS0EfQ%2CB7UV4O-uWiY%2C1UQ5IbihJNI">17m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geometry-pythagorean-theorem/pythagorean-theorem-distance">Pythagoras' læresætning og afstand mellem to punkter</a> (2 Articles, 1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Pythagoras%27+l%C3%A6res%C3%A6tning+og+afstand+mellem+to+punkter&video_ids=apkT6rVE8qo%2CnyZuite17Pc">13m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geometry-pythagorean-theorem/basic-geometry-pythagorean-proofs">Beviser for Pythagoras læresætning</a> (1 Test, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Beviser+for+Pythagoras+l%C3%A6res%C3%A6tning&video_ids=PDWkmbTFrhg%2CoK_btwZI2QQ%2C9ozrm2RbM5c%2C_q6Vy_RTyKQ">38m 14s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geo-transformations-congruence">Transformationer, kongruens og lighed</a> (8 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geo-transformations-congruence/line-of-symmetry">Symmetriakser</a> (1 Article, 2 Exercises, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Symmetriakser&video_ids=2ajNdiCPuIA%2C59s_CQjTD6w">8m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geo-transformations-congruence/transformations-intro-basic-geo">Introduktion til Transformationer</a> (1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+Transformationer&video_ids=XiAoUDfrar0%2CKv-lyVmQ5ps%2CK7QTjFdUIyk">12m 41s</a> )</li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geo-transformations-congruence/basic-geometry-translations">Flytninger</a> (4 Articles, 3 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Flytninger&video_ids=SxxzfojT1Pw%2Cg_ijRF_NMLk%2CBrYEuO7fwMw">7m 18s</a> )</li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geo-transformations-congruence/basic-geo-rotations">Rotationer</a> (3 Articles, 2 Exercises, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Rotationer&video_ids=0NYbQPcdxg8%2C6pH-7pciYU8">4m 47s</a> )</li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geo-transformations-congruence/basic-geo-reflections">Spejlinger</a> (2 Articles, 3 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Spejlinger&video_ids=F77xiSlCehI%2ClfBDOQddTD0%2C435Ipnmp7bA">8m 3s</a> )</li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geo-transformations-congruence/basic-geo-transformations-properties">Egenskaber og definitioner af transformationer</a> (3 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Egenskaber+og+definitioner+af+transformationer&video_ids=7y4FGCvNgB8%2CbrccWoewXiI%2C4AxYt_Cjd1o">14m 52s</a> )</li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geo-transformations-congruence/basic-geo-dilations">Dilations</a> (5 Exercises, 1 Quiz, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Dilations&video_ids=N0_HfmxdbCg%2Cb4ORXN7a0-w%2C6dyWKD_JPhI%2CqlWZJ21O63s%2CrDj0WNzp-f8%2CchdnDLbSbU8">21m 17s</a> )</li>
<li><a href="https://da.khanacademy.org/math/basic-geo/basic-geo-transformations-congruence/congruent-similar">Kongruens og ligdannethed</a> (2 Exercises, 1 Quiz, 1 Test, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Kongruens+og+ligdannethed&video_ids=Tn9U8hLu9aI%2CEDlZAyhWxhk%2CqlWZJ21O63s%2C6p1lweGactg%2C2yjSAarzWF8">9m 27s</a> )</li>
</ul></li>
</ul>
<h2 id="opvarmning-til-algebra-10-topics"><a href="https://da.khanacademy.org/math/pre-algebra">Opvarmning til algebra</a> (10 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-arith-prop">Aritmetik egenskaber</a> (7 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-arith-prop/pre-algebra-place-value">Pladsværdi</a> (3 Articles, 5 Exercises, 12 Videos | <a href="https://www.youtube.com/watch_videos?title=Pladsv%C3%A6rdi&video_ids=hby3vUhL638%2C2njG0S_GuVA%2CslodUCY2-xw%2C6RcpnvlrCXg%2CeLRMI2ZX5Qw%2CA-KLUhbRUk8%2CAs-DvTDLe2A%2CEhd3cgRBvl0%2CDCqwSUibAsU%2CNvzCyOTvmbU%2Ci7lqWXKuhhQ%2C35HD5UTScN0">46m 45s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-arith-prop/pre-algebra-rounding-whole-numbers">Afrunding af hele tal</a> (1 Exercise, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Afrunding+af+hele+tal&video_ids=tEt-B8v4Wtk%2CudfKQRQ75kg%2C_H64VpzpxR4%2C1CLESXYDnhk%2CqNCYucHtYkg">23m 44s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-arith-prop/pre-algebra-regrouping-whole-numbers">Opdeling af hele tal</a> (1 Exercise, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Opdeling+af+hele+tal&video_ids=jhSNUw5MJes%2CDwFRnhQ_SDQ%2CUTFmsxVGccg">8m 24s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-arith-prop/pre-algebra-order-of-operations">Regnearternes hierarki</a> (2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Regnearternes+hierarki&video_ids=crExOtprOZA%2C5DzXU0MTH0c%2CsoBKfrf3nwk%2ClKpPyvRRvKs">23m 12s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-arith-prop/pre-algebra-arithmetic-properties">Aritmetik egenskaber</a> (4 Articles, 6 Exercises, 13 Videos | <a href="https://www.youtube.com/watch_videos?title=Aritmetik+egenskaber&video_ids=_S6aNpWey0A%2CDnpxuBxCC_I%2C_EM_IjVOeIw%2C6GeiW2McKRE%2CzwD1A9159F4%2CAbecPkH7lMw%2CYI3htMfmy2M%2CWqxfm7EPcjo%2CbfN7CzSa1MM%2CFzt_QFZXPzI%2C9qb7krMebTI%2CNKfGR6uhlNw%2C_fbLhwl8n0Q">47m 5s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-arith-prop/pre-algebra-ditributive-property">Distributiv lov</a> (2 Articles, 3 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Distributiv+lov&video_ids=lmos9PaVf44%2ClcveGpILpyI%2CxC-fQ0KEzsM%2CzRgnVbh6psI">16m 19s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-arith-prop/pre-algebra-rational-irrational-numbers">Rationale og irrationale tal</a> (1 Article, 1 Exercise, 1 Quiz, 1 Test, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Rationale+og+irrationale+tal&video_ids=1c6SFiot8Ck%2CuQSkYyFsZmA">8m 13s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-factors-multiples">Faktorer og multipla</a> (6 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-factors-multiples/pre-algebra-divisibility-tests">Divisionstest</a> (1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Divisionstest&video_ids=oqzaDenRftg%2C2G_Jr_XpnY4%2C83Yh1T_jyl8%2CocvcChYHyX0">23m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-factors-multiples/pre-algebra-factors-mult">Faktorer og multipla</a> (2 Articles, 4 Exercises, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Faktorer+og+multipla&video_ids=o-OsNGzTm0g%2C7VdHTQSgMTs">13m 53s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-factors-multiples/pre-algebra-prime-numbers">Primtal</a> (2 Articles, 3 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Primtal&video_ids=uECSFhJYdLc%2CzGS_ecPE3WE">12m 53s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-factors-multiples/pre-algebra-prime-factorization-prealg">Primfaktorisering</a> (1 Exercise, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Primfaktorisering&video_ids=-cFLAJKSr-A%2CXWq8bplP-_E%2C7W3zPWvApQE">15m 53s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-factors-multiples/pre-algebra-lcm">Mindste Fælles Multiplum (MFM)</a> (1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Mindste+F%C3%A6lles+Multiplum+%28MFM%29&video_ids=35R649lYNq0%2CsqkGbDmquHI%2CpB1kY1IOxtk">12m 15s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-factors-multiples/pre-algebra-greatest-common-divisor">Største fælles divisor</a> (2 Exercises, 1 Quiz, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=St%C3%B8rste+f%C3%A6lles+divisor&video_ids=9TkqrA3QoQw%2CiatWSiYgiSM%2CTOyPkEUjkDk">21m 44s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-math-reasoning">Anvendelse af matematisk tænkning</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-math-reasoning/pre-algebra-representing-data">Visning af data</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Visning+af+data&video_ids=0ZKtsUkrgFQ">8m 18s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-math-reasoning/pre-algebra-stem-leaf">Stem and leaf plots</a> (1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Stem+and+leaf+plots&video_ids=evZm80lewGU%2CPXKHyT__B2k">9m 6s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-math-reasoning/pre-algebra-picture-bar-graphs">Picture graphs, bar graphs, and histograms</a> (4 Exercises, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Picture+graphs%2C+bar+graphs%2C+and+histograms&video_ids=8j-fWW2WKCQ%2Cte52RK_Iea0%2CgUtUm-dC2WE%2CT57pEhuo3Us%2C7Jov-FW3cwQ%2CAut6uGQfx4s">17m 57s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-math-reasoning/pre-algebra-frequency-dot-plot">Frequency tables and dot plots</a> (2 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Frequency+tables+and+dot+plots&video_ids=gdE46YSedvE%2Cs_w3EJ2Jzw0%2CzMTW_JnS0fo">17m 38s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-math-reasoning/pre-algebra-number-patterns">Talmønstre (talrækker)</a> (1 Exercise, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Talm%C3%B8nstre+%28talr%C3%A6kker%29&video_ids=_3gxe9V2hac%2Cpb7YMZcxFgI%2C9vqu71qL50I">14m 41s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-measurement">Måling</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-measurement/pre-algebra-area">Areal af rektangler</a> (5 Exercises, 1 Quiz, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Areal+af+rektangler&video_ids=eFtRRdVLmHQ%2CGJMrsxoH6Xo%2CYA7ZrKcbteA%2CBjF8UGX97Fw%2CcYyfwJSvT-k%2CJX_ZgrFf2j8%2Cmu3HHCdYYtY">26m 14s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-measurement/prealgebra-perimeter">Omkreds</a> (4 Exercises, 1 Quiz, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Omkreds&video_ids=7Z0tK4DVZ9w%2C9cTe_KaFhVQ%2Ctmt5fXhU7Rs%2C_sQ3dqhLsIw%2CtSrT8Au-gMk%2Ch2ekVWw24ug">21m 50s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-measurement/pre-algebra-volume-rectangular">Volume of a rectangular prism</a> (3 Exercises, 1 Quiz, 1 Test, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Volume+of+a+rectangular+prism&video_ids=JjWRNbFsSoo%2CoTfkhIzLaGY%2Cbc-69Evzwj0%2C-wORxh-QD98%2CqXjZEdjsPwc">24m 5s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-fractions">Brøker</a> (20 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-fractions/pre-algebra-fractions-intro">Introduktion til brøker</a> (4 Exercises, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+br%C3%B8ker&video_ids=q9Na7YgsXN4%2CgEE6yIObbmg%2CKGSwhRXMa3M%2C41dyPu6vIoU%2CeBzQdDgBB_8%2CbnQAfGLfby8">14m 55s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-fractions/pre-algebra-fractions-on-the-number-line">Brøker på tallinjen</a> (4 Exercises, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Br%C3%B8ker+p%C3%A5+tallinjen&video_ids=WoJqJE-tRWw%2CxeoVPSBP9WI">5m 15s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-fractions/pre-algebra-visualizing-equiv-frac">Ækvivalente brøker</a> (1 Article, 5 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=%C3%86kvivalente+br%C3%B8ker&video_ids=-I-Tjzsg4O8%2C_35vTmi2WJk%2CG4VxHxwi6DY%2C44JEvUmDwXo">17m 9s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-fractions/pre-algebra-comparing-fractions">Sammenligning af brøker</a> (1 Article, 6 Exercises, 1 Quiz, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Sammenligning+af+br%C3%B8ker&video_ids=8uYQTj7mfEk%2CwbAxarp_Ug4%2CJhCbQO38zo4%2CAK4xaJL8UOA%2CiTDFpx11wBk%2CONsI-yIbsBg">33m 32s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-fractions/pre-algebra-common-denominators">Fællesnævnere</a> (1 Article, 1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=F%C3%A6llesn%C3%A6vnere&video_ids=BBpXlajHVK4%2C0EwwoDVJVPQ%2CT8U7hCmUdpo">17m 16s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-fractions/pre-algebra-decompose-fractions">Opdeling af brøker</a> (1 Article, 2 Exercises, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Opdeling+af+br%C3%B8ker&video_ids=DCuhPy-gM48%2Cp18Bi2s8Nns">9m 59s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-fractions/pre-algebra-adding-subtracting-frac">Addition og subtraktion af brøker med fællesnævner</a> (3 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Addition+og+subtraktion+af+br%C3%B8ker+med+f%C3%A6llesn%C3%A6vner&video_ids=hjK3RUyDW9U%2CL9M7CC8yQgw%2ClnoOsc3pigY%2CugxCYN97-ow">9m 50s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-fractions/pre-algebra-mixed-number">Blandede tal</a> (1 Article, 2 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Blandede+tal&video_ids=qwmYqIadXLs%2CY_0L_OVrjBI%2C_FRxr2MeMDc">15m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-fractions/pre-algebra-add-sub-fractions">Addition og subtraktion af brøker med forskellige nævnere</a> (3 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Addition+og+subtraktion+af+br%C3%B8ker+med+forskellige+n%C3%A6vnere&video_ids=fvtv2uYjo_E%2CpoGjjX_VNbM%2CbcCLKACsYJ0%2C2DPivVFCdqA">21m 51s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-fractions/pre-algebra-add-sub-mix-num-w-unlike-den">Addition og subtraktion af blandede tal med forskellige nævnere</a> (2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Addition+og+subtraktion+af+blandede+tal+med+forskellige+n%C3%A6vnere&video_ids=A_eb2HprnVU%2Cr3EMZcAh0ms%2CI01O0r8b-po%2Cr3M68V9Joac">13m 51s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-fractions/pre-algebra-add-sub-frac-word-probs">Læg til og træk fra med brøker tekstopgaver</a> (2 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=L%C3%A6g+til+og+tr%C3%A6k+fra+med+br%C3%B8ker+tekstopgaver&video_ids=FAAivrExpi0%2CrqeuI4diWzA%2CPKh5B9xyzSc%2C6Zyt4uFfOSU">14m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-fractions/pre-algebra-mult-whole-number-frac">Multiplikation af hele tal og brøker</a> (3 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Multiplikation+af+hele+tal+og+br%C3%B8ker&video_ids=KimE8b6cnoo%2CwefivHjlDac">6m 50s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-fractions/pre-algebra-multiplication-as-scaling">Multiplikation som skalering</a> (1 Exercise, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Multiplikation+som+skalering&video_ids=jKdH-YkX-Vc">5m 6s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-fractions/pre-algebra-multiply-fractions">Multiplikation af brøker</a> (1 Article, 2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Multiplikation+af+br%C3%B8ker&video_ids=QAaTWX3NsRM%2CxKDHYVNss1k%2ClJdb4_Fuxvw%2CqWegvvhpIbQ">17m 15s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-fractions/pre-algebra-mult-mixed-num">Multiplikation af blandede tal</a> (2 Exercises, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Multiplikation+af+blandede+tal&video_ids=blLIDPdIZsA">4m 21s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-fractions/pre-algebra-mult-frac-word-probs">Tekstopgaver med multiplikation af brøker</a> (1 Exercise, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+med+multiplikation+af+br%C3%B8ker&video_ids=Gh9ObLMFAKo%2COjyINhSfU_A%2CtfjQVtOyoaQ">8m 50s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-fractions/pre-algebra-fractions-as-division">Brøker som division</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Br%C3%B8ker+som+division&video_ids=Fv1-e1CxnDU%2CMcm0Q3wGhMo">9m 29s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-fractions/pre-algebra-dividing-fractions">Division af brøker med brøker</a> (1 Article, 2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Division+af+br%C3%B8ker+med+br%C3%B8ker&video_ids=168vJPGNLCA%2Cj9ZlRiXF7Yk%2C6anjphOOQr0">10m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-fractions/pre-algebra-div-fractions-word-problems">Tekstopgaver med division af brøker</a> (2 Exercises, 1 Quiz, 1 Test, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+med+division+af+br%C3%B8ker&video_ids=8Wl2hdiNVII%2CYstQVuH-xSE">4m 43s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-decimals">Decimaltal</a> (10 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-decimals/pre-algebra-decimals-intro">Introduktion til decimaltal</a> (3 Articles, 5 Exercises, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+decimaltal&video_ids=BItpeFXC4vA%2Cwtrrr15mbvQ%2C5TwOaUrniaI%2CqSPwUDmpnJ4%2Che4kcTujy30%2Cs9PvbFG2yJA%2CU3w9ppDv_MU%2Ce_KEaTPcPKg">34m 27s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-decimals/pre-algebra-decimals-number-lines">Decimaltal på en tallinje</a> (3 Exercises, 1 Quiz, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Decimaltal+p%C3%A5+en+tallinje&video_ids=7oUBK0cNxV8%2Cqb0QSP7Sfz4%2CgWqYXa7r_V0%2CSrL8abwGKyA%2CbFjaZ_8pi3c%2CABHQJFWZGsk">15m 21s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-decimals/pre-algebra-rounding-decimals">Afrunding af decimaltal</a> (3 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Afrunding+af+decimaltal&video_ids=O_t12OS9Grk%2CT3BMIaDUvck">5m 48s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-decimals/pre-algebra-comparing-decimalss">Sammenligning af decimaltal</a> (5 Exercises, 1 Quiz, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Sammenligning+af+decimaltal&video_ids=ekibnsVqE-k%2CUf_l9IUiUf0%2Chd8d6XzcCt4%2CEoo6Kc9tYhA%2CrTU2WjDFR5Y%2Ccp8f8cLkxBk">16m 58s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-decimals/pre-algebra-decimals-to-fractions">Omskrivning af decimaltal til brøker</a> (6 Exercises, 1 Quiz, 10 Videos | <a href="https://www.youtube.com/watch_videos?title=Omskrivning+af+decimaltal+til+br%C3%B8ker&video_ids=ek0zu14IP7g%2C68mrr430De0%2CNfU7cmajLAY%2Cup1WzOOtDXs%2CrIxJYwDOUFo%2Cz5mPVqL6R9Q%2CMAuiIcVS3W8%2CxyPqi6NYF8c%2C41Fk0ApD8xU%2ClfSckfXTKUI">21m 40s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-decimals/pre-algebra-add-decimals">Addition af decimaltal</a> (1 Article, 3 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Addition+af+decimaltal&video_ids=7I_AILEWTL4%2C6NBkb98nFOM%2ChCaOTzUFSjw%2CLaI7ercRxoM%2Cl3GVeYfb7aE">20m 30s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-decimals/pre-algebra-sub-decimals">Subtraktion af decimaltal</a> (1 Article, 3 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Subtraktion+af+decimaltal&video_ids=IE0HQoLrbX4%2CURdTZ38JvOI%2CYyfFfnABCBc%2CJPshMUArVYA">18m 2s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-decimals/pre-algebra-add-sub-decimals-word-problems">Tekstopgaver med subtraktion af decimaltal</a> (1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+med+subtraktion+af+decimaltal&video_ids=Cf-Tzu6ruG4%2CvjhhooXBqr4">3m 52s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-decimals/pre-algebra-multiplying-decimals">Multiplikation af decimaltal</a> (1 Article, 4 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Multiplikation+af+decimaltal&video_ids=ep4uT1aHuXU%2CxBseQOzMB7A%2CAj5M8NDauv4%2CQ4m7JSbHeoU">19m 51s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-decimals/pre-algebra-dividing-decimals">Division af decimaltal</a> (1 Article, 5 Exercises, 1 Quiz, 1 Test, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Division+af+decimaltal&video_ids=xUDlKV8lJbM%2Czlq_jQYD1mA%2CbRRtp9XdDrY%2CdToPqCXHNDA%2C7JPIX3odZrY%2CHrjr5f5pZ84%2Cx48CYVaD0xE%2Ci8_NJ4kqvJM">43m 13s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-negative-numbers">Negative tal</a> (9 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-negative-numbers/pre-algebra-neg-num-intro">Introduktion til negative tal</a> (1 Article, 2 Exercises, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+negative+tal&video_ids=SIoRN3o9aGE">9m 36s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-negative-numbers/pre-algebra-order-neg-numberss">Ordning af negative tal</a> (1 Article, 1 Exercise, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Ordning+af+negative+tal&video_ids=FD1bkSKnUE4">2m 47s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-negative-numbers/pre-algebra-number-opposites">Modsatte tal</a> (2 Articles, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Modsatte+tal&video_ids=2Zk6u7Uk5ow%2C3-aryZYsoxU">8m 14s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-negative-numbers/pre-algebra-abs-value">Numerisk (absolut) værdi</a> (2 Articles, 3 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Numerisk+%28absolut%29+v%C3%A6rdi&video_ids=hisGgp440z4%2CDqNH8Z1nWRI%2CMFoXK57sw9k%2Ct4xOkpP8FgE">14m 16s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-negative-numbers/pre-algebra-add-negatives-intros">Introduktion til addition af negative tal</a> (1 Article, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+addition+af+negative+tal&video_ids=qYlgmPqdLhU%2CLpynipuKuJ4">11m 13s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-negative-numbers/pre-algebra-sub-neg-intro">Introduktion til subtraktion af negative tal</a> (1 Article, 2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+subtraktion+af+negative+tal&video_ids=4Tt9EeIxXXs%2CDl_NldPtQDI">5m 40s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-negative-numbers/pre-algebra-add-and-sub-integersss">Addition og subtraktion af heltal</a> (1 Exercise, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Addition+og+subtraktion+af+heltal&video_ids=LpynipuKuJ4">5m 32s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-negative-numbers/pre-algebra-mult-divide-negatives">Multiplikation og division med negative tal</a> (2 Articles, 3 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Multiplikation+og+division+med+negative+tal&video_ids=pCpzYHQaFzs%2C2IRc0Mx-XrE%2CYoPHp8OGLEc%2COtGZAQgrLpY">22m 27s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-negative-numbers/pre-algebra-coordinate-plane">Koordinatsystemet</a> (3 Articles, 10 Exercises, 1 Quiz, 1 Test, 10 Videos | <a href="https://www.youtube.com/watch_videos?title=Koordinatsystemet&video_ids=K_RMPrxgMn4%2CdRV1WFdfSLY%2CqYoEcdCglM8%2CC6mz9QlNPp4%2C0p5TlHW4ro0%2CzEPxb6ojYH0%2C5-ggGQh5SjI%2CObFoI7WR_2E%2Cmz2PWjVvEXk%2CqmFJj3Vc-N4">34m 23s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-ratios-rates">Ratios, rates, proportions</a> (11 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-ratios-rates/pre-algebra-ratios-intro">Introduktion til forholdstal</a> (1 Article, 6 Exercises, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+forholdstal&video_ids=kE-HML6Ij58%2CIjMn7f6bbLA%2Ceb-GHXCqkhQ%2CVWO1m0S-a9Y%2CWoZ7-wOy-0w%2C4S3Mbl0JrdY%2Czhb_OTuf7CQ">29m 46s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-ratios-rates/pre-algebra-visualize-ratios">Visualisering af forhold</a> (1 Article, 5 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Visualisering+af+forhold&video_ids=-Dg9da1BGsM%2CHMDVNY2preI%2CsuRIY3ULrQo">15m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-ratios-rates/pre-algebra-ratio-word-problems">Forhold teksktopgaver</a> (3 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Forhold+teksktopgaver&video_ids=yVYJRT5hTSo%2C0qtIHdda19s%2CVx5uoZAkxng%2CUK-_qEDtvYo">17m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-ratios-rates/pre-algebra-rates">Introduktion til forhold med forskellige enheder</a> (1 Article, 4 Exercises, 1 Quiz, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+forhold+med+forskellige+enheder&video_ids=qGTYSAeLTOE%2C4vQEUhyd-BM%2CHyBeS0cQcbU%2CUc2Tm4Lr7uI%2CjOZ98FDyl2E%2CHx8eYjEOEeo%2CWPS7o23JhUA">42m 55s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-ratios-rates/pre-algebra-intro-percents">Introduktion til procent</a> (3 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+procent&video_ids=7L_Ky5pknrA%2CC6xBF-Un6aA%2CnV6bRozq5Po%2Cwwg052FC_Zw">13m 18s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-ratios-rates/pre-algebra-percent-decimal-conversions">Percent-decimal conversions</a> (5 Articles, 4 Exercises, 1 Quiz, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Percent-decimal+conversions&video_ids=mn99tYrO8UI%2CXz1xTUhrW3s%2Cvnyu0Ew9Mlo%2CA_giTxcqVIE%2C_Lmki6bHeeo%2CLlt-KkHugRQ">19m 54s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-ratios-rates/pre-algebra-percent-problems">Opgaver med procent</a> (2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Opgaver+med+procent&video_ids=0jybDxb4COQ%2CJQGFQdDDBn0%2Ch_DBMywvgyA">8m 12s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-ratios-rates/pre-algebra-percent-word-problems">Tekstopgaver med procent</a> (6 Exercises, 1 Quiz, 12 Videos | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+med+procent&video_ids=PVYsFV5yZCE%2CH7_MucegmHA%2CkTBxUrRQlHY%2C2Hm5XXtcSTw%2CedQzU2bZK64%2C1UiTCAOGs2M%2CLCmYjozPixg%2Ce1Cd0XL5OEs%2Cjb_RwR_Eso4%2CHID6DbJ7bIE%2CeS21UgN0da8%2CA15B-zVFM_0">1h 38s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-ratios-rates/pre-algebra-constant-of-proportionality">Proportionalitetskonstant</a> (6 Exercises, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Proportionalitetskonstant&video_ids=jihKUWH4Hfc%2CwXtzBbU_cl8%2C5Ilo0pw3iL8%2C4g5ZEGoYtOA%2CFXpJQXzoXwI">17m 38s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-ratios-rates/pre-algebra-proportional-rel">Genkend proportionale sammenhænge</a> (2 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Genkend+proportionale+sammenh%C3%A6nge&video_ids=qYjiVWwefto%2CUYIPCe74G80%2CbJb4n19sFrs%2C-YYTUTrxl28%2CHEmwn5jmy2Y">13m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-ratios-rates/pre-algebra-write-and-solve-proportions">Skriv og løs opgaver med forhold</a> (4 Exercises, 1 Quiz, 1 Test, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Skriv+og+l%C3%B8s+opgaver+med+forhold&video_ids=X7U3JM5Gur4%2C2TydPXqaylA%2Cs8_14yxp1lQ%2CkMr-C0Kb9qI%2Cxpzt0wqMT6Y">27m 44s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-equations-expressions">Ligninger, udtryk og uligheder </a> (15 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-equations-expressions/pre-algebra-evaluating-expressions">Intro to variables</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Intro+to+variables&video_ids=M_HYIxX_1wk%2Cln3pA4lMIWE">8m 16s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-equations-expressions/pre-algebra-substitution">Indsætning af værdier og udregning af udtryk</a> (3 Articles, 3 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Inds%C3%A6tning+af+v%C3%A6rdier+og+udregning+af+udtryk&video_ids=l4mxvnLass4%2CQrn8rPLCwV0%2CGmD7Czmol0k">7m 32s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-equations-expressions/pre-algebra-expression-value-intuitionss">Værdien af et udtryk</a> (1 Article, 1 Exercise, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=V%C3%A6rdien+af+et+udtryk&video_ids=UvDcEvDC4vg">5m 15s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-equations-expressions/pre-algebra-constructing-numeric-expressions">Konstruktion af numeriske udtryk</a> (3 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Konstruktion+af+numeriske+udtryk&video_ids=E8nZWdu5zno%2CdTfq2TaA4l4">3m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-equations-expressions/pre-algebra-evaluating-expressions-word-problems">Tekstopgaver med beregning af udtryk</a> (1 Article, 1 Exercise, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+med+beregning+af+udtryk&video_ids=ywpKjdhPMCc%2CYSGUijw2Uco%2C0uCslW40VHQ">7m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-equations-expressions/pre-algebra-writing-expressionss">Introduktion til algebraiske udtryk</a> (2 Articles, 2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+algebraiske+udtryk&video_ids=640-86yn2wM%2COIBAkvi19iY%2CwF0BZR3Krgc">7m</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-equations-expressions/pre-algebra-alg-expression-word-problems">Tekstopgaver med algebraiske udtryk</a> (1 Article, 2 Exercises, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+med+algebraiske+udtryk&video_ids=lq-2gX3NKCM%2CC_KffdI34ZU">7m 51s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-equations-expressions/pre-algebra-intro-equations">Grundlæggende algebraiske udtryk</a> (1 Article, 2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Grundl%C3%A6ggende+algebraiske+udtryk&video_ids=Or0B5KCmyNU%2CU9OfQd8poTQ">10m 40s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-equations-expressions/pre-algebra-solving-equations">Hvorfor vi gør det samme på begge sider i en ligning</a> (3 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Hvorfor+vi+g%C3%B8r+det+samme+p%C3%A5+begge+sider+i+en+ligning&video_ids=rMe8Relou64%2CxXcS0ISAjGE%2ClZRaAqVthYk%2Ce4QKFRZWHJQ">13m 49s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-equations-expressions/pre-algebra-one-step-add-sub-equationss">Et-trins ligninger med addition & subtraktion</a> (1 Article, 2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Et-trins+ligninger+med+addition+%26+subtraktion&video_ids=_7Tzi0tDLNg%2Cd8f59BJoGD8%2CXD-FDGdWnR8">8m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-equations-expressions/pre-algebra-one-step-mult-div-equations">Ligninger i ét trin med multiplikation og division</a> (1 Article, 2 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Ligninger+i+%C3%A9t+trin+med+multiplikation+og+division&video_ids=5RG3J9puPjQ%2CDqeMQHomwAU%2Ca3acutLstF8">21m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-equations-expressions/pre-algebra-equation-word-problems">Tekstopgaver med ligninger i ét trin</a> (1 Article, 3 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+med+ligninger+i+%C3%A9t+trin&video_ids=2REbsY4-S70%2CSTfZKhONSqE%2CNC6CqEqQtBM">19m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-equations-expressions/pre-algebra-greater-than-less-than">Inequalities: Greater than and less than basics</a> (1 Article, 5 Exercises, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Inequalities%3A+Greater+than+and+less+than+basics&video_ids=nFsQA2Zvy1o%2CvyonFjGwqGo%2CDVk4oquBH-w%2CbOyWmE7Ks0M%2Cs6h-bmjPflg">18m 47s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-equations-expressions/pre-algebra-2-step-equations-intro">Introduktion til ligninger i to trin</a> (1 Article, 1 Exercise, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+ligninger+i+to+trin&video_ids=1Hdz_1_c_CY%2CsG2FX1ikNKQ%2CrMe8Relou64%2CG2vvfF_or0c%2C5o52GQv5Jsg%2C0QPtQFEvCEM">25m 11s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-equations-expressions/pre-algebra-dependent-independent">Afhængige og uafhængige variabler</a> (1 Article, 4 Exercises, 1 Quiz, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Afh%C3%A6ngige+og+uafh%C3%A6ngige+variabler&video_ids=9g9UludnBdg%2C8JkBdNwndrA%2COweGg5iN9gU">5m 10s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-exponents-radicals">Eksponenter, rodtegn (radikaler) og videnskabelig notation</a> (8 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-exponents-radicals/pre-algebra-exponents">Potenstal</a> (3 Articles, 3 Exercises, 1 Quiz, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Potenstal&video_ids=UCCNoXqCGZQ%2CJYF45Dh9DU8%2CDmRBm_HWNkc%2CYCkCtrP8Uyo%2Cy0YCSi24Kl0%2CkFElpYl7Te0%2Co_urKmMdGK0%2C9K54G5yeR74">31m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-exponents-radicals/pre-algebra-square-roots">Square roots</a> (2 Articles, 3 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Square+roots&video_ids=mbc3_e5lWw0%2C-zMCf5Lo6yM%2CEFVrAk61xjE%2Ccw3mp8oNASk">17m 6s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-exponents-radicals/pre-algebra-cube-root">Kubikrødder </a> (1 Article, 1 Exercise, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Kubikr%C3%B8dder+&video_ids=87_qIofPwhg%2C8y7xP4zz0UY%2CdrhoIgAhlQM%2CVklHyym1eyo">19m 47s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-exponents-radicals/pre-algebra-exponent-properties">Eksponent egenskaber</a> (1 Article, 5 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Eksponent+egenskaber&video_ids=Baa3UMWmyIg%2CSwqOrUWzDY8%2CA3qd8orguQ0">29m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-exponents-radicals/pre-algebra-negative-exponents">Negative eksponenter</a> (1 Article, 4 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Negative+eksponenter&video_ids=oes2sQ2aKNQ%2ChQ2G6WVdUqs%2CCZ5ne_mX5_I%2CdC1ojsMi1yU">23m</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-exponents-radicals/pre-algebra-scientific-notation">Videnskabelige notation</a> (1 Article, 1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Videnskabelige+notation&video_ids=sAb6UOhRWNg%2C0Dd-y_apbRw%2CwpuepaAeDzw%2CasHMrB6FUh4">49m 15s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-exponents-radicals/pre-algebra-orders-of-magnitude">Størrelsesordener</a> (1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=St%C3%B8rrelsesordener&video_ids=tV8cMNYi4q4%2Cepan7FFp9xI%2CdR5x58MMAsc%2C5uehLyCb5L0">17m 11s</a> )</li>
<li><a href="https://da.khanacademy.org/math/pre-algebra/pre-algebra-exponents-radicals/pre-algebra-computing-scientific-notation">Databehandling med videnskabelig notation</a> (1 Exercise, 1 Quiz, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Databehandling+med+videnskabelig+notation&video_ids=wr5HBday9P8%2CSfULjXg68NA%2C8BCiigEX-Dc">15m 51s</a> )</li>
</ul></li>
</ul>
<h2 id="grundlæggende-algebra-8-topics"><a href="https://da.khanacademy.org/math/algebra-basics">Grundlæggende algebra</a> (8 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/math/algebra-basics/basic-alg-foundations">Fundamenter</a> (10 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/algebra-basics/basic-alg-foundations/alg-basics-negative-numbers">Negative tal</a> (2 Articles, 4 Exercises, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Negative+tal&video_ids=2Zk6u7Uk5ow%2CLpynipuKuJ4%2C4Tt9EeIxXXs%2CDl_NldPtQDI%2CYoPHp8OGLEc%2C2IRc0Mx-XrE%2CpCpzYHQaFzs%2COtGZAQgrLpY">36m 51s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/basic-alg-foundations/alg-basics-absolute-value-new">Numerisk (absolut) værdi</a> (1 Article, 2 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Numerisk+%28absolut%29+v%C3%A6rdi&video_ids=hisGgp440z4%2CfnsYX1BItu0%2CfaUh3bAxomM">11m 47s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/basic-alg-foundations/alg-basics-exponents">Potenstal</a> (3 Articles, 3 Exercises, 9 Videos | <a href="https://www.youtube.com/watch_videos?title=Potenstal&video_ids=JYF45Dh9DU8%2C5qfOViJda_g%2CdXwq3vvb-u0%2CDmRBm_HWNkc%2Cy0YCSi24Kl0%2CYCkCtrP8Uyo%2CkFElpYl7Te0%2Co_urKmMdGK0%2C9K54G5yeR74">29m 24s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/basic-alg-foundations/alg-basics-roots">Square roots</a> (1 Article, 3 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Square+roots&video_ids=mbc3_e5lWw0%2Ccw3mp8oNASk%2Cs9ppnjgmiyk%2C74iuGIaBgRc">19m 34s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/basic-alg-foundations/alg-basics-order-of-operations">Regnearternes hierarki</a> (2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Regnearternes+hierarki&video_ids=crExOtprOZA%2CRoJ2t7s-V0E%2CsoBKfrf3nwk%2CgjrGd9TjjnY">23m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/basic-alg-foundations/alg-basics-fractions">Brøker</a> (3 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Br%C3%B8ker&video_ids=PKh5B9xyzSc%2CnO_YNvFxD6U%2Cyi40lAs1L8M%2Cn3uliCgG38o">20m 53s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/basic-alg-foundations/alg-basics-decimals">Decimaltal, brøker og procenttal</a> (7 Exercises, 1 Quiz, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Decimaltal%2C+br%C3%B8ker+og+procenttal&video_ids=xyPqi6NYF8c%2CDYuqsWqu9Wg%2Cz5mPVqL6R9Q%2C41Fk0ApD8xU%2C0jybDxb4COQ%2CJQGFQdDDBn0%2CkTBxUrRQlHY%2C2Hm5XXtcSTw">22m 47s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/basic-alg-foundations/alg-basics-operations-with-decimals">Operationer med decimaltal</a> (4 Exercises, 1 Quiz, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Operationer+med+decimaltal&video_ids=hCaOTzUFSjw%2CLaI7ercRxoM%2CZf5iTL8wMUk%2CJPshMUArVYA%2CZAHhxh3S3io%2CQ4m7JSbHeoU%2CHrjr5f5pZ84%2Ci8_NJ4kqvJM">25m 9s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/basic-alg-foundations/alg-basics-area-triangle">Areal af trekanter</a> (1 Article, 1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Areal+af+trekanter&video_ids=rRTXKQpblEc">5m 30s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/basic-alg-foundations/alg-basics-circles">Omkreds og areal af cirkler</a> (1 Article, 2 Exercises, 1 Quiz, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Omkreds+og+areal+af+cirkler&video_ids=jyLRpr2P0MQ%2CAikjm81JkvE%2C-OpvV2lL-jw">17m 8s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-algebraic-expressions">Algebraiske udtryk</a> (7 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-algebraic-expressions/alg-basics-intro-to-variables">Introduktion til variable</a> (1 Article, 1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+variable&video_ids=M_HYIxX_1wk%2Cln3pA4lMIWE%2Cl4mxvnLass4">10m 16s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-algebraic-expressions/alg-basics-substitution">Indsætning af værdier og udregning af udtryk</a> (1 Article, 1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Inds%C3%A6tning+af+v%C3%A6rdier+og+udregning+af+udtryk&video_ids=Qrn8rPLCwV0">2m 5s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-algebraic-expressions/alg-basics-writing-expressions">Skriv algebraiske udtryk</a> (1 Article, 2 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Skriv+algebraiske+udtryk&video_ids=640-86yn2wM%2COIBAkvi19iY%2CwF0BZR3Krgc">7m</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-algebraic-expressions/alg-basics-combining-like-terms">Samle ens led</a> (3 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Samle+ens+led&video_ids=UJ83yxwCCf0%2CJZFarXNn-sA%2CTQW0b-tMrv8%2CrtNuo7R3scY">17m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-algebraic-expressions/alg-basics-distributive-property">Distributiv lov</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Distributiv+lov&video_ids=Jp25LHI9wII">6m 29s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-algebraic-expressions/alg-basics-equivalent-expressions">Ækvivalente algebraiske udtryk</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=%C3%86kvivalente+algebraiske+udtryk&video_ids=rHNY01R2VSQ">1m 58s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-algebraic-expressions/alg-basics-nested-fractions">Indlejrede brøker</a> (1 Exercise, 1 Quiz, 1 Test, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Indlejrede+br%C3%B8ker&video_ids=_BFaxpf35sY">5m 46s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-linear-equations-and-inequalities">Lineære ligninger og uligheder</a> (7 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-linear-equations-and-inequalities/alg-basics-one-step-add-sub-equations">Et-trins ligninger med addition & subtraktion</a> (2 Articles, 2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Et-trins+ligninger+med+addition+%26+subtraktion&video_ids=_7Tzi0tDLNg%2Cd8f59BJoGD8%2C5RG3J9puPjQ%2CDqeMQHomwAU">17m 32s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-linear-equations-and-inequalities/alg-basics-two-steps-equations-intro">To-trins ligninger - intro</a> (2 Exercises, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=To-trins+ligninger+-+intro&video_ids=G2vvfF_or0c%2C5o52GQv5Jsg%2C0QPtQFEvCEM%2CgRqMiflLUzk%2C0nyotoMAT6M%2CXoG44OkBuNA">29m 44s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-linear-equations-and-inequalities/alg-basics-variables-on-both-sides">Lineære ligninger med variabler på begge sider</a> (2 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Line%C3%A6re+ligninger+med+variabler+p%C3%A5+begge+sider&video_ids=vEsHMntodqs%2Cb6kq9OXMI_k%2C1c5HY3z4k8M%2C-ghWHITZr-c">26m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-linear-equations-and-inequalities/alg-basics-one-step-inequalities">Uligheder i ét trin</a> (1 Article, 1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Uligheder+i+%C3%A9t+trin&video_ids=xVd1i0e8p7E%2C1MaxrBWBYkE%2CYVGEWoMFrjg">15m 30s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-linear-equations-and-inequalities/alg-basics-two-step-inequalities">Uligheder i to trin</a> (2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Uligheder+i+to+trin&video_ids=c_bl8VyiYlw%2CDpAfokg4aw0%2Cl6YExbCn7_o">13m 12s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-linear-equations-and-inequalities/alg-basics-multi-step-inequalities">Fler-trins uligheder</a> (1 Exercise, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Fler-trins+uligheder&video_ids=lfJI_uvOe7g%2CADvoplc_SlE%2Ca-nV-nAfO60">17m 27s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-linear-equations-and-inequalities/alg-basics-write-and-solve-proportions">Skriv og løs opgaver med forhold</a> (4 Exercises, 1 Quiz, 1 Test, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Skriv+og+l%C3%B8s+opgaver+med+forhold&video_ids=X7U3JM5Gur4%2CqzsR7cChujg%2C2TydPXqaylA%2CkMr-C0Kb9qI%2Cs8_14yxp1lQ">28m 21s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-graphing-lines-and-slope">Graftegning af linjer og hældning</a> (8 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-graphing-lines-and-slope/alg-basics-coordinate-planee">Koordinatsystemet</a> (1 Article, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Koordinatsystemet&video_ids=C6mz9QlNPp4%2C0p5TlHW4ro0">4m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-graphing-lines-and-slope/alg-basics-solutions-to-two-var-equations">Løsninger af lineære ligninger med to variable</a> (2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=L%C3%B8sninger+af+line%C3%A6re+ligninger+med+to+variable&video_ids=AOxMJRtoR2A%2Cqk69pR91R00%2Cd3VMo1VWFvc%2CEHR-YDwrrhM">20m 33s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-graphing-lines-and-slope/alg-basics-x-and-y-intercepts">Skæring med x- og y-aksen</a> (2 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Sk%C3%A6ring+med+x-+og+y-aksen&video_ids=LNSB0N6esPU%2Cz9QzzyRUBq4%2CeSs3PjrBQgI">12m 24s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-graphing-lines-and-slope/alg-basics-slope">Hældning</a> (1 Article, 2 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=H%C3%A6ldning&video_ids=MeU-KzdCBps%2CEQoNfxToez0%2CngVtCiO4r0M%2CE2T9KIHofsY%2Cl-fVvv9mOrM">37m 32s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-graphing-lines-and-slope/hor-and-ver-lines-alg-basics">Vandrette & lodrette linjer</a> (1 Exercise, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Vandrette+%26+lodrette+linjer&video_ids=yfkDaGhH9pI">5m 5s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-graphing-lines-and-slope/alg-basics-slope-intercept-form">Introduktion til linjens ligning i hældning-skæringspunkts form</a> (3 Articles, 2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+linjens+ligning+i+h%C3%A6ldning-sk%C3%A6ringspunkts+form&video_ids=IL3UCuXrUzE%2CrOKxMdjZGok">12m 1s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-graphing-lines-and-slope/alg-basics-writing-slope-intercept">Skrive ligninger i standardform</a> (2 Articles, 2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Skrive+ligninger+i+standardform&video_ids=9wOalujeZf4%2CusijS3OrgL0%2CXMJ72mtMn4Y%2C5fkh01mClLU">36m 37s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-graphing-lines-and-slope/alg-basics-graphing-inequalities">Graftegning af uligheder med to uligheder</a> (1 Exercise, 1 Quiz, 1 Test, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Graftegning+af+uligheder+med+to+uligheder&video_ids=u6EVkS2JbQY%2Cf6z4q256rkU">11m 6s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-systems-of-equations">Ligningssystemer</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-systems-of-equations/systems-overview-alg-basics">Oversigt over ligningssystemer</a> (7 Videos | <a href="https://www.youtube.com/watch_videos?title=Oversigt+over+ligningssystemer&video_ids=MR6bBV84yIc%2CzjrIr0MVFOo%2CJgrEWpaWuLA%2CZ-pcMuC8s64%2CsDkZqiQFkgE%2CNJRyxmommqQ%2CUUft65eDe5U">52m 47s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-systems-of-equations/alg-basics-intro-to-systems-of-equations">Introduktion til ligningssystemer</a> (1 Exercise, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+ligningssystemer&video_ids=MR6bBV84yIc%2CzjrIr0MVFOo%2CYLRtOKx724Y%2CzbGhPDVbLAc%2Co4pbAQgJYjI">23m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-systems-of-equations/alg-basics-elimination-method-systems">Lige store koefficienters metode til løsning af ligningssystemer</a> (1 Article, 2 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Lige+store+koefficienters+metode+til+l%C3%B8sning+af+ligningssystemer&video_ids=JgrEWpaWuLA%2CNPXTkj75-AM%2CZ-pcMuC8s64%2CwYrxKGt_bLg%2COQyywwqtUE8">44m 34s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-systems-of-equations/alg-basics-solving-systems-with-substitution">Substitutionsmetoden til løsning af ligningssystemer</a> (1 Article, 1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Substitutionsmetoden+til+l%C3%B8sning+af+ligningssystemer&video_ids=sDkZqiQFkgE%2C_SzH1R7rpXs">9m 42s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-systems-of-equations/alg-basics-systems-number-of-solutions">Antallet af løsninger til ligningssystemer</a> (1 Article, 2 Exercises, 1 Quiz, 1 Test, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Antallet+af+l%C3%B8sninger+til+ligningssystemer&video_ids=NJRyxmommqQ%2CUUft65eDe5U%2CfwoJ5vqdcT0%2CvEZvxhwCBzY%2Cerpflsl20Z0%2CasK9AxVaRtQ%2CogEddosP1G8%2Cc3VHekCDJs0">45m 27s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-expressions-with-exponents">Udtryk med eksponenter</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-expressions-with-exponents/alg-basics-exponent-properties-intro">Exponent properties intro</a> (1 Article, 5 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Exponent+properties+intro&video_ids=Baa3UMWmyIg%2CSwqOrUWzDY8%2CA3qd8orguQ0">29m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-expressions-with-exponents/alg-basics-pos-neg-exponents">Negative eksponenter</a> (1 Article, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Negative+eksponenter&video_ids=oes2sQ2aKNQ%2ChQ2G6WVdUqs">11m 52s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-expressions-with-exponents/alg-basics-exponent-properties">Exponent properties (integer exponents)</a> (3 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Exponent+properties+%28integer+exponents%29&video_ids=CZ5ne_mX5_I%2CdC1ojsMi1yU%2Cy0YCSi24Kl0">15m 23s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-expressions-with-exponents/alg-basics-scientific-notation">Scientific notation intro</a> (2 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Scientific+notation+intro&video_ids=wpuepaAeDzw%2CasHMrB6FUh4%2Cwr5HBday9P8%2C8BCiigEX-Dc%2CSfULjXg68NA">31m 29s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-expressions-with-exponents/alg-basics-scientific-notation-word-problems">Scientific notation word problems</a> (1 Exercise, 1 Quiz, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Scientific+notation+word+problems&video_ids=RjeyU7SrWjs%2CDJzmKK2xVvE%2C5IgL5PZevzI">15m 34s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-quadratics-and-polynomials">Andengradsligninger og polynomier</a> (9 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-quadratics-and-polynomials/alg-basics-adding-and-subtracting-polynomials">Lægge polynomier sammen og trække dem fra hinanden</a> (1 Article, 2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=L%C3%A6gge+polynomier+sammen+og+tr%C3%A6kke+dem+fra+hinanden&video_ids=ahdKdxsTj8E%2C5ZdxnFspyP8">4m 8s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-quadratics-and-polynomials/alg-basics-multiplying-binomials">Multiplikation af to-leddede polynomier</a> (2 Articles, 3 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Multiplikation+af+to-leddede+polynomier&video_ids=pD2-H15ucNE%2CoOTFGdjhqqM%2CXy8NKUoyy98%2CyofirMQyRNw">17m 12s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-quadratics-and-polynomials/alg-basics-special-products-of-polynomials">Særlige produkter af binomialer (to-leddede udtryk)</a> (1 Article, 1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=S%C3%A6rlige+produkter+af+binomialer+%28to-leddede+udtryk%29&video_ids=JfuisfEdnjk%2CxH_GllPuymc">10m 37s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-quadratics-and-polynomials/alg-basics-factoring-polynomials-1-common-factors">Faktorisering af polynomier ved at tage fælles faktorer</a> (2 Articles, 1 Exercise, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Faktorisering+af+polynomier+ved+at+tage+f%C3%A6lles+faktorer&video_ids=mbb3msmX2xs%2CiTn3TTF0IXk%2CMZl6Mna0leQ%2CtYknkDjp-bQ%2CtDlzWNtRzS8">21m 29s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-quadratics-and-polynomials/alg-basics-factoring-quadratics-1">Faktorisering af kvadrater 1</a> (2 Articles, 1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Faktorisering+af+kvadrater+1&video_ids=D3a8NnpQ2vU%2C1kfq0aR3ASs%2CeF6zYNzlZKQ">27m 24s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-quadratics-and-polynomials/alg-basics-factoring-quadratics-2">Faktorisering af kvadrater 2</a> (2 Articles, 1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Faktorisering+af+kvadrater+2&video_ids=X7B_tH4O-_s%2Cu1SAo2GiX8A">17m 52s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-quadratics-and-polynomials/alg-basics-factoring-diff-of-squares">Factoring quadratics: Difference of squares</a> (1 Article, 1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Factoring+quadratics%3A+Difference+of+squares&video_ids=jmbg-DKWuc4%2CTK-U1p9O6Nc%2CIRmv-Z--3LA%2CxYQR2LNZLeU">15m 45s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-quadratics-and-polynomials/alg-basics-factoring-perfect-squares">Faktorisering af andengradsligninger: Hele kvadrater</a> (2 Articles, 2 Exercises, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Faktorisering+af+andengradsligninger%3A+Hele+kvadrater&video_ids=liRNTieIU_k%2C4STGvuoBi5U%2CBFW2lHobO4E%2CXuwldEyWjH0%2CoIslHyWJHEY%2C6jZZ6EeE-j0">24m 7s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-quadratics-and-polynomials/alg-basics-solving-quadratics-by-factoring">Løsning af andengradsligninger ved faktorisering</a> (2 Articles, 2 Exercises, 1 Quiz, 1 Test, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=L%C3%B8sning+af+andengradsligninger+ved+faktorisering&video_ids=2ZzuZvz33X0%2CKbFwLvCOBUI">10m 57s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-equations-and-geometry">Ligninger og geometri</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-equations-and-geometry/equations-geometry">Equations & geometry</a> (4 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Equations+%26+geometry&video_ids=cyb0P9xEuOY%2Cf4xKOxqedh4%2COFGhI4mk47c%2ChHvcpL4xe2A%2C7MWvLPI9JfU">14m 44s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-equations-and-geometry/alg-basics-triangle-angles">Trekantens vinkler</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Trekantens+vinkler&video_ids=kZQJKgHiaEc">4m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-equations-and-geometry/alg-basics-pythagorean-theorem">Pythagoras' læresætning</a> (1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Pythagoras%27+l%C3%A6res%C3%A6tning&video_ids=uo-74D7fPzM%2C-ZSHqOEWGAQ%2ChyhAy6xh6dY%2CXtJwkIacpi8">40m 11s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-equations-and-geometry/alg-basics-intro-to-triangle-similarity">Introduktion til ligedannede trekanter</a> (2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+ligedannede+trekanter&video_ids=9ThXDY9Y3oU%2C7bO0TmJ6Ba4%2CLy86lwq_2gc">30m 54s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-basics/alg-basics-equations-and-geometry/alg-basics-solving-similar-triangles">Solving similar triangles</a> (2 Exercises, 1 Test, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Solving+similar+triangles&video_ids=R-6CAr_zEEk%2CTal_fgREll0">13m 42s</a> )</li>
</ul></li>
</ul>
<h2 id="algebra-i-17-topics"><a href="https://da.khanacademy.org/math/algebra-2018">Algebra I</a> (17 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/math/algebra-2018/introduction-to-algebra">Grundlæggende algebra</a> (10 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/algebra-2018/introduction-to-algebra/overview-hist-alg">Oversigt og algebraens historie</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Oversigt+og+algebraens+historie&video_ids=56bh_h4Edp4%2CcDk2agiC_oA%2CxKLcr9tDrNk%2CNVwy-2UYZBo%2CxBNB6yn0VSU">38m 51s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/introduction-to-algebra/alg1-intro-to-variables">Introduktion til variable</a> (1 Article, 1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+variable&video_ids=M_HYIxX_1wk%2Cln3pA4lMIWE%2Cl4mxvnLass4">10m 16s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/introduction-to-algebra/alg1-substitution">Substitution og udregning af udtryk</a> (2 Articles, 2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Substitution+og+udregning+af+udtryk&video_ids=Qrn8rPLCwV0%2CGmD7Czmol0k">5m 32s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/introduction-to-algebra/alg1-evaluating-expressions-word-problems">Tekstopgaver med beregning af udtryk</a> (1 Article, 1 Exercise, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+med+beregning+af+udtryk&video_ids=ywpKjdhPMCc%2CYSGUijw2Uco%2C0uCslW40VHQ">7m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/introduction-to-algebra/alg1-writing-expressions">Introduktion til algebraiske udtryk</a> (1 Article, 2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+algebraiske+udtryk&video_ids=640-86yn2wM%2COIBAkvi19iY%2CwF0BZR3Krgc">7m</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/introduction-to-algebra/alg1-dependent-independent">Afhængige og uafhængige variable</a> (4 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Afh%C3%A6ngige+og+uafh%C3%A6ngige+variable&video_ids=9g9UludnBdg%2C8JkBdNwndrA%2COweGg5iN9gU">5m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/introduction-to-algebra/alg1-manipulating-expressions">Samle ens led</a> (3 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Samle+ens+led&video_ids=UJ83yxwCCf0%2CJZFarXNn-sA%2CTQW0b-tMrv8%2CrtNuo7R3scY">17m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/introduction-to-algebra/alg1-equivalent-expressions">Introduktion til ækvivalente algebraiske udtryk</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+%C3%A6kvivalente+algebraiske+udtryk&video_ids=rHNY01R2VSQ">1m 58s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/introduction-to-algebra/alg1-interpreting-lin-exp">Fortolkning af lineære udtryk</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Fortolkning+af+line%C3%A6re+udtryk&video_ids=J_q_Z7uiH9A%2CL9i3yAUp67A">3m 54s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/introduction-to-algebra/division-by-zero">Division med nul</a> (1 Quiz, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Division+med+nul&video_ids=SQzjzStU1RQ%2CPDReqvXfkBA%2ClHdlHTsXbZg">14m 6s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/one-variable-linear-equations">Lineære ligninger med en variabel</a> (11 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/algebra-2018/one-variable-linear-equations/alg1-intro-equations">Grundlæggende algebraiske udtryk</a> (1 Article, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Grundl%C3%A6ggende+algebraiske+udtryk&video_ids=Or0B5KCmyNU%2CU9OfQd8poTQ">10m 40s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/one-variable-linear-equations/alg1-solving-equations">Hvorfor vi gør det samme på begge sider i en ligning</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Hvorfor+vi+g%C3%B8r+det+samme+p%C3%A5+begge+sider+i+en+ligning&video_ids=rMe8Relou64%2CxXcS0ISAjGE%2ClZRaAqVthYk%2Ce4QKFRZWHJQ">13m 49s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/one-variable-linear-equations/alg1-one-step-add-sub-equations">Et-trins ligninger med addition & subtraktion</a> (1 Article, 2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Et-trins+ligninger+med+addition+%26+subtraktion&video_ids=_7Tzi0tDLNg%2Cd8f59BJoGD8%2CXD-FDGdWnR8">8m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/one-variable-linear-equations/alg1-one-step-mult-div-equations">Et-trins ligninger med multiplikation & division</a> (1 Article, 2 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Et-trins+ligninger+med+multiplikation+%26+division&video_ids=5RG3J9puPjQ%2CDqeMQHomwAU%2Ca3acutLstF8">21m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/one-variable-linear-equations/alg1-two-steps-equations-intro">To-trins ligninger - intro</a> (1 Article, 1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=To-trins+ligninger+-+intro&video_ids=G2vvfF_or0c%2C5o52GQv5Jsg%2C0QPtQFEvCEM">16m 57s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/one-variable-linear-equations/alg1-linear-eq-word-probs">Tekstopgaver med ligninger i to trin</a> (1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+med+ligninger+i+to+trin&video_ids=gRqMiflLUzk%2C0nyotoMAT6M%2CXoG44OkBuNA">12m 47s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/one-variable-linear-equations/alg1-variables-on-both-sides">Lineære ligninger med variabler på begge sider</a> (2 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Line%C3%A6re+ligninger+med+variabler+p%C3%A5+begge+sider&video_ids=vEsHMntodqs%2Cb6kq9OXMI_k%2C1c5HY3z4k8M%2C65ENKfYVIdw%2CrHTjpLlcScs">28m 49s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/one-variable-linear-equations/alg1-equations-with-parentheses">Lineære ligninger med parenteser</a> (1 Article, 2 Exercises, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Line%C3%A6re+ligninger+med+parenteser&video_ids=-ghWHITZr-c">6m 4s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/one-variable-linear-equations/alg1-number-of-solutions-to-linear-equations">Analyse af antallet af løsninger til lineære ligninger</a> (2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Analyse+af+antallet+af+l%C3%B8sninger+til+line%C3%A6re+ligninger&video_ids=9wUZ-sOW00c%2C43nJumZ-0HM%2C0sDY5CFXt3A%2CimUdwkGMVUs">10m 26s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/one-variable-linear-equations/alg1-linear-equations-word-problems">Lineære ligninger tekstopgaver</a> (1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Line%C3%A6re+ligninger+tekstopgaver&video_ids=TOnbj6pZbWo%2Cd8De3xcVmnw%2CNowoa32A8j4%2CK_TpjIuXns4">20m 42s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/one-variable-linear-equations/linear-equations-with-unknown-coefficients">Løs for en variabel</a> (1 Exercise, 1 Quiz, 1 Test, 1 Video | <a href="https://www.youtube.com/watch_videos?title=L%C3%B8s+for+en+variabel&video_ids=adPgapI-h3g">5m 35s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/one-variable-linear-inequalities">Solving inequalities</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/algebra-2018/one-variable-linear-inequalities/alg1-inequalities">Introduktion til uligheder med variable</a> (3 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+uligheder+med+variable&video_ids=Yh4TXMVq9eg%2CvyonFjGwqGo%2Cs6h-bmjPflg%2Ch8kt1knmmrM">15m 52s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/one-variable-linear-inequalities/alg1-one-step-inequalities">Uligheder i ét trin</a> (1 Exercise, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Uligheder+i+%C3%A9t+trin&video_ids=xVd1i0e8p7E%2C1MaxrBWBYkE%2CYVGEWoMFrjg">15m 30s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/one-variable-linear-inequalities/alg1-two-step-inequalities">Uligheder i to trin</a> (2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Uligheder+i+to+trin&video_ids=c_bl8VyiYlw%2CDpAfokg4aw0%2Cl6YExbCn7_o">13m 12s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/one-variable-linear-inequalities/multi-step-inequalities">Fler-trins uligheder</a> (1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Fler-trins+uligheder&video_ids=lfJI_uvOe7g%2CADvoplc_SlE%2Ca-nV-nAfO60">17m 27s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/one-variable-linear-inequalities/compound-inequalities">Sammensatte uligheder</a> (1 Article, 1 Exercise, 1 Quiz, 1 Test, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Sammensatte+uligheder&video_ids=ELPrkB2DmYw%2CId52Uyr33Yo%2CKuhNCI30aiA%2CK_D1moN4LgU%2CA3xPhzs-KBI">28m 38s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/units-in-modeling">Working with units | Algebra 1 | Khan Academy</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/algebra-2018/units-in-modeling/rate-conversion">Rate conversion</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Rate+conversion&video_ids=hIAdCTNi1S8%2Cd5lcGCbV5cM">16m 24s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/units-in-modeling/appropriate-units">Relevante enheder</a> (2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Relevante+enheder&video_ids=xZRRPOneU2c%2CVbgYvbtiirQ%2CCSNeYAV95UU">10m 49s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/units-in-modeling/word-problems-with-multiple-units">Tekstopgaver med flere enheder</a> (2 Exercises, 1 Test, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Tekstopgaver+med+flere+enheder&video_ids=F0LLR7bs7Qo%2Cxpzt0wqMT6Y%2CAGFO-ROxH_I%2CScvuRb6vsz4">26m 48s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/two-var-linear-equations">Lineære ligninger med to variabler</a> (10 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/algebra-2018/two-var-linear-equations/solutions-to-two-var-linear-equations">Introduktion til lineære ligninger med to variable</a> (2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+line%C3%A6re+ligninger+med+to+variable&video_ids=AOxMJRtoR2A%2Cqk69pR91R00%2Cd3VMo1VWFvc%2CEHR-YDwrrhM">20m 33s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/two-var-linear-equations/x-and-y-intercepts">Skæring med x- og y-aksen</a> (1 Article, 3 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Sk%C3%A6ring+med+x-+og+y-aksen&video_ids=LNSB0N6esPU%2Cz9QzzyRUBq4%2CeSs3PjrBQgI%2CCGZZINHT0I8">16m 24s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/two-var-linear-equations/slope">Hældning</a> (1 Article, 2 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=H%C3%A6ldning&video_ids=MeU-KzdCBps%2CEQoNfxToez0%2CngVtCiO4r0M%2CE2T9KIHofsY%2Cl-fVvv9mOrM">37m 32s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/two-var-linear-equations/hor-and-ver-lines-alg1">Vandrette & lodrette linjer</a> (1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Vandrette+%26+lodrette+linjer&video_ids=yfkDaGhH9pI%2CJ43CIbKpdWc">10m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/two-var-linear-equations/slope-intercept-form">Introduktion til linjens ligning</a> (1 Article, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+linjens+ligning&video_ids=IL3UCuXrUzE%2CqgsNNqmlLoA">12m 46s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/two-var-linear-equations/graphing-slope-intercept-equations">Graphing slope-intercept equations</a> (2 Articles, 1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Graphing+slope-intercept+equations&video_ids=rOKxMdjZGok">3m 1s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/two-var-linear-equations/writing-slope-intercept-equations">Skrive ligninger i standardform</a> (2 Articles, 2 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Skrive+ligninger+i+standardform&video_ids=9wOalujeZf4%2CusijS3OrgL0%2CXMJ72mtMn4Y%2C5fkh01mClLU">36m 37s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/two-var-linear-equations/point-slope">Punkt-hældnings-form</a> (1 Article, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Punkt-h%C3%A6ldnings-form&video_ids=K_OI9LA54AA%2CLtpXvUCrgrM">13m 14s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/two-var-linear-equations/standard-form">Speciel form</a> (1 Article, 2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Speciel+form&video_ids=6CFE60iP2Ug%2CAEb9IXjHycE%2CXOIhNVeLfWs">17m 45s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/two-var-linear-equations/forms-of-two-var-linear-equations">Opsummering: Former af lineære ligninger med to variabler</a> (1 Article, 2 Exercises, 1 Quiz, 1 Test, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Opsummering%3A+Former+af+line%C3%A6re+ligninger+med+to+variabler&video_ids=G4r9PpYQiL8%2CoqWd3n7CIG4">14m 15s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/algebra-functions">Functions | Algebra 1 | Khan Academy</a> (12 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/algebra-2018/algebra-functions/evaluating-functions">Evaluating functions</a> (3 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Evaluating+functions&video_ids=kvGsIo1TmsM%2C75ghj2jBxl0%2C72wi3gB89pM%2CuaPm3Tpuxbc">11m 3s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/algebra-functions/function-inputs-and-outputs">Input og output for en funktion</a> (2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Input+og+output+for+en+funktion&video_ids=tJBQZ3PUkPo%2C0Rmmynff5Yc%2CqSktOkaW6EA">4m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/algebra-functions/functions-and-equations">Funktioner og ligninger</a> (1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Funktioner+og+ligninger&video_ids=sS8DBS-CG3k%2COOim0QPsJ9o">7m 22s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/algebra-functions/interpreting-function-notation">Fortolkning af funktionsnotation</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Fortolkning+af+funktionsnotation&video_ids=HERb3x0aw6c%2C94Gnto5G1PU">6m</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/algebra-functions/domain-and-range">Introduktion til definitionsmængde og værdimængde for en funktion</a> (1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+definitionsm%C3%A6ngde+og+v%C3%A6rdim%C3%A6ngde+for+en+funktion&video_ids=UJQkqV2zGv0%2C-DTMakGDZAw%2C96uHMcHWD2E%2CsXP7VhU1gYE">26m 34s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/algebra-functions/determining-the-domain-of-a-function">Bestemmelse af definitionsmængde for en funktion</a> (2 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Bestemmelse+af+definitionsm%C3%A6ngde+for+en+funktion&video_ids=sjT_HJrqCww%2Cn17q8CBiMtQ%2C2DnQEaNTd08%2CAiW7syKXfJM%2Cd1O54EQ1DSE">19m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/algebra-functions/recognizing-functions-ddp">Genkend funktioner</a> (2 Exercises, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Genkend+funktioner&video_ids=yMcDBerq8S4%2CWiMTNSdxwAQ%2CN8XZC4bAReo%2CDuCxSG_0jFE%2CcAi95YSdQjI">15m 21s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/algebra-functions/maximum-and-minimum-points">Maksimum og minimum</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Maksimum+og+minimum&video_ids=Hoyv3-BMAGc%2CxmrhZ5ySaD0">10m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/algebra-functions/positive-negative-increasing-decreasing-intervals">Intervaller hvor en funktion er positiv, negativ, stigende eller faldende</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Intervaller+hvor+en+funktion+er+positiv%2C+negativ%2C+stigende+eller+faldende&video_ids=KxOp3s9ottg%2CeDv7dk9uNmM">7m 6s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/algebra-functions/interpreting-features-of-graphs">Fortolkning af egenskaber for grafer af funktioner</a> (1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Fortolkning+af+egenskaber+for+grafer+af+funktioner&video_ids=VtBRkjRua0I%2CM3PTPN7NH8M">7m 45s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/algebra-functions/functions-average-rate-of-change">Gennemsnitlig hældningstal</a> (2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Gennemsnitlig+h%C3%A6ldningstal&video_ids=oT6LclcJ-I8%2CTEXSW-o8674%2CU1lQbh21y1k%2C6n0yxfWNFR4">15m 11s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/algebra-functions/average-rate-of-change-word-problems">Gennemsnitlig ændringshastighed - tekstopgaver</a> (1 Article, 1 Exercise, 1 Quiz, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Gennemsnitlig+%C3%A6ndringshastighed+-+tekstopgaver&video_ids=FBWGRbHf7rU%2C-6EqUILZ1yw%2CwmQdFLdxLYc">15m 11s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/linear-word-problems">Linear word problems</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/algebra-2018/linear-word-problems/interpreting-linear-functions">Fortolkning af lineære funktioner og uligheder</a> (3 Exercises, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Fortolkning+af+line%C3%A6re+funktioner+og+uligheder&video_ids=yuzPFkDsrXI%2CSQ8P_iWrgME%2CuWqbXutavZg%2CH76xIEDI0-k%2CdeKCm28TkRo%2CAY8ldIEi3fU">23m 4s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/linear-word-problems/comparing-linear-functions">Sammenligning af lineære funktioner</a> (2 Exercises, 1 Quiz, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Sammenligning+af+line%C3%A6re+funktioner&video_ids=q7WF838bwy0%2C2vQTwl-jW60%2CM7tcL8aTAjc%2CHYIxn-wpVug%2CDzx6vcEE81U%2CYGFzpve2oRc">20m 53s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/linear-word-problems/constructing-linear-models">Konstruer lineære modeller for virkelige sammenhænge</a> (2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Konstruer+line%C3%A6re+modeller+for+virkelige+sammenh%C3%A6nge&video_ids=AAmVITyDXbc%2CzSVrr8K_CiI%2CW7H-VcaSSu8%2C5c9N_1PEfHw">23m 40s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/linear-word-problems/linear-models-word-problems">Linear models word problems</a> (1 Exercise, 1 Quiz, 1 Test, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Linear+models+word+problems&video_ids=W3flX500w5g%2CRq56-OJR964">14m 29s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/sequences">Sekvenser</a> (6 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/algebra-2018/sequences/introduction-to-arithmetic-squences">En introduktion til aritmetiske rækker</a> (2 Articles, 2 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=En+introduktion+til+aritmetiske+r%C3%A6kker&video_ids=KRFiAlo7t1E%2C_cooC3yG_p0%2CEU0c6qrrevA%2C8eSUbi_aYL4%2Cv1ucHH06AxM">23m 2s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/sequences/constructing-arithmetic-sequences">Aritmetiske serier</a> (4 Articles, 3 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Aritmetiske+serier&video_ids=lBtb30SjU2Q%2CViLt2WI0XSg%2CC5titprQAc4%2CGA_yxxeFYBU">21m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/sequences/introduction-to-geometric-sequences">Introduction to geometric sequences</a> (3 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduction+to+geometric+sequences&video_ids=pXo0bG4iAyg%2CyZ-GufE_uyA%2CHODIXLzIMIk%2CRkJBZALhXRA">18m 22s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/sequences/constructing-geometric-sequences">Geometriske rækker</a> (1 Article, 3 Exercises, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Geometriske+r%C3%A6kker&video_ids=8a1a5A3CfdQ%2CIq7a2vEsT-o">12m 8s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/sequences/modeling-with-sequences">Modellering med sekvenser</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Modellering+med+sekvenser&video_ids=yYGf7xn7TyM">5m 43s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/sequences/general-sequences">General sequences</a> (1 Exercise, 1 Quiz, 1 Test, 1 Video | <a href="https://www.youtube.com/watch_videos?title=General+sequences&video_ids=Kjli0Gunkds">9m 7s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/systems-of-linear-equations">Systems of equations | Algebra 1 | Khan Academy</a> (7 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/algebra-2018/systems-of-linear-equations/introduction-to-systems-of-linear-equations">Introduction to systems of equations</a> (2 Exercises, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduction+to+systems+of+equations&video_ids=MR6bBV84yIc%2CzjrIr0MVFOo%2CYLRtOKx724Y%2CzbGhPDVbLAc%2Co4pbAQgJYjI">23m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/systems-of-linear-equations/equivalent-systems-of-equations">Ækvivalente ligningssystemer med elimineringsmetoden</a> (2 Articles, 3 Exercises, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=%C3%86kvivalente+ligningssystemer+med+elimineringsmetoden&video_ids=JgrEWpaWuLA%2CNPXTkj75-AM%2CZ-pcMuC8s64%2CwYrxKGt_bLg%2COQyywwqtUE8%2CXstL_x4ucm4%2CPSDQdwL1T0M">54m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/systems-of-linear-equations/solving-systems-of-equations-with-substitution">Løsning af ligningssystemer med substitution</a> (1 Article, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=L%C3%B8sning+af+ligningssystemer+med+substitution&video_ids=sDkZqiQFkgE%2C_SzH1R7rpXs">9m 42s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/systems-of-linear-equations/manipulating-expressions-with-unknown-variables">Manipulering af udtryk med ukendte variable</a> (1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Manipulering+af+udtryk+med+ukendte+variable&video_ids=ZYn8MhrwHr4%2CDF5MkPVjnCc">4m 16s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/systems-of-linear-equations/possible-number-of-solutions-of-systems-of-linear-equations">Antallet af løsninger til ligningssystemer</a> (1 Article, 2 Exercises, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Antallet+af+l%C3%B8sninger+til+ligningssystemer&video_ids=NJRyxmommqQ%2CUUft65eDe5U%2CfwoJ5vqdcT0%2CvEZvxhwCBzY%2Cerpflsl20Z0%2CasK9AxVaRtQ%2CogEddosP1G8%2Cc3VHekCDJs0">45m 27s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/systems-of-linear-equations/systems-of-linear-equations-word-problems">Ligningssystemer - tekstopgaver</a> (3 Exercises, 1 Quiz, 1 Test, 10 Videos | <a href="https://www.youtube.com/watch_videos?title=Ligningssystemer+-+tekstopgaver&video_ids=u-GDA_vSakg%2CmbFMcvaGAMY%2CW-5liMGKgHA%2CQ0tTfe2lKIc%2CSRn3WhhS6vs%2Cnjb6xYF0GZ0%2C_OmoPvdzQpo%2CCY1kggAqaok%2Cv6L8--MlnKo%2CgrmmM_KhQ4U">53m 46s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/two-variable-linear-inequalities">Inequalities (systems & graphs)</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/algebra-2018/two-variable-linear-inequalities/checking-solutions-of-inequalities">Kontrollér løsninger til ligninger</a> (3 Exercises, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Kontroll%C3%A9r+l%C3%B8sninger+til+ligninger&video_ids=DpB9pm4tNjU%2C5ubN2vRMi0w">7m 21s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/two-variable-linear-inequalities/graphing-inequalities">Graftegning af uligheder med to uligheder</a> (1 Article, 3 Exercises, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Graftegning+af+uligheder+med+to+uligheder&video_ids=u6EVkS2JbQY%2Cf6z4q256rkU%2C5LrVLHnGTvw%2CCA4S7S-3Lg4%2CW0miDN1gHmk">23m 26s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/two-variable-linear-inequalities/modeling-with-linear-inequalities">Modellering med lineære uligheder</a> (3 Exercises, 1 Quiz, 1 Test, 10 Videos | <a href="https://www.youtube.com/watch_videos?title=Modellering+med+line%C3%A6re+uligheder&video_ids=MHgi8ZQCG0I%2CysdY1iX_XCs%2CDhiiGFuUE9I%2CTTYDbGXgcCk%2C0yD09NGfMQE%2CjRnkxSfwIpU%2CZTKAn9YNbNY%2CC_7Tqk9fw4k%2CJeIwsn-EWZU%2CPfi_chISQbg">43m 21s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/absolute-value-equations-functions">Absolute value & piecewise functions</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/algebra-2018/absolute-value-equations-functions/graphs-of-absolute-value-functions">Grafer for funktioner med absolut værdi</a> (1 Article, 3 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Grafer+for+funktioner+med+absolut+v%C3%A6rdi&video_ids=Wri26sPEBoI%2ClPcahMeUYcU%2CYyfk0rwuZSE%2Cv6Ct2OEmGNU">20m 4s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/absolute-value-equations-functions/piecewise-functions">Stykkevise funktioner</a> (1 Article, 3 Exercises, 1 Quiz, 1 Test, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Stykkevise+funktioner&video_ids=tedzsRH0Jas%2Chg2HR9zJFq4%2CPQiXRrT_14o%2C4n7TIvRHuDs%2CrpI-X9Gn5a4">22m 52s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/rational-exponents-and-radicals">Rational exponents & radicals</a> (7 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/algebra-2018/rational-exponents-and-radicals/alg1-exp-prop-review">Exponent properties review</a> (3 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Exponent+properties+review&video_ids=CZ5ne_mX5_I%2CdC1ojsMi1yU">11m 8s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/rational-exponents-and-radicals/alg1-radicals">Radicals</a> (4 Exercises, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Radicals&video_ids=mbc3_e5lWw0%2C-zMCf5Lo6yM%2C87_qIofPwhg%2CtRHLEWSUjrQ%2C8wrtyW1RwNk">22m 11s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/rational-exponents-and-radicals/rational-exponents-intro">Rational exponents intro</a> (3 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Rational+exponents+intro&video_ids=lZfXc4nHooo%2CgH4IsIEYof0%2C6OFwfxmhtE8">13m 21s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/rational-exponents-and-radicals/rational-exponents-and-the-properties-of-exponents">Properties of exponents (rational exponents)</a> (2 Exercises, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Properties+of+exponents+%28rational+exponents%29&video_ids=0z-yIFzpunM%2C4F6cFLnAAFc">10m 2s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/rational-exponents-and-radicals/alg1-rational-exp-eval">Advanced exponent & radical evaluation</a> (1 Exercise, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Advanced+exponent+%26+radical+evaluation&video_ids=S34NM0Po0eA%2Ctn53EdOr6Rw%2CbIFdW0NZ9W4%2CKGSvigZQKZY%2CHt-YXje4R2g">19m 1s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/rational-exponents-and-radicals/alg1-simplify-square-roots">Reducering af kvadratrødder</a> (1 Article, 3 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Reducering+af+kvadratr%C3%B8dder&video_ids=cw3mp8oNASk%2CqFFhdLlX220%2C3MijXB91DVo">15m 55s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/rational-exponents-and-radicals/alg1-simplify-higher-index-roots">Simplifying radicals (higher-index roots)</a> (1 Quiz, 1 Test, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Simplifying+radicals+%28higher-index+roots%29&video_ids=iX7ivCww2ws%2CGEeKOeGHddY%2CNuccqpiUHrk%2CzlRKO21qEpQ">17m 51s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/introduction-to-exponential-functions">Exponential growth & decay | Algebra 1 | Khan Academy</a> (6 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/algebra-2018/introduction-to-exponential-functions/exponential-vs-linear-growth">Exponential vs. linear growth</a> (3 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Exponential+vs.+linear+growth&video_ids=6WMZ7J0wwMI%2C_vlXdx-CqM0%2C8OHEgD6YMBw%2CtV0NNJ6ndgk">17m 40s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/introduction-to-exponential-functions/exponential-expressions-alg1">Eksponentielt udtryk</a> (3 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Eksponentielt+udtryk&video_ids=L70UJVjc-bc%2CG2WybA4Hf7Y%2CZ3YVZzCEi_A%2CPud5ygp6H38">16m 44s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/introduction-to-exponential-functions/graphs-of-exponential-growth">Graphs of exponential growth</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Graphs+of+exponential+growth&video_ids=Pss9LJs5bIs%2C6rX2VNybXEE">9m 53s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/introduction-to-exponential-functions/exponential-vs-linear-growth-over-time">Exponential vs. linear growth over time</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Exponential+vs.+linear+growth+over+time&video_ids=cwnke_pjX90">5m 5s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/introduction-to-exponential-functions/exponential-decay-alg1">Exponential decay</a> (2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Exponential+decay&video_ids=v4IdaXvyE7U%2CRVv0Jgi3Pbw%2Cm5Tf6vgoJtQ">19m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/introduction-to-exponential-functions/exponential-functions-from-tables-and-graphs">Exponential functions from tables & graphs</a> (1 Exercise, 1 Quiz, 1 Test, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Exponential+functions+from+tables+%26+graphs&video_ids=UgLfAb_aFt4%2CQst1UVtq8pE%2CgFdh_rE2XgU%2CyOqhKOicqhU%2Cfe1Hsqyetzk%2CNo1LKevjF6U%2C2iZXFd_ZImA">37m 32s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/introduction-to-polynomial-expressions">Polynomials | Algebra 1 | Khan Academy</a> (9 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/algebra-2018/introduction-to-polynomial-expressions/introduction-to-polynomials">Intro to polynomials</a> (1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Intro+to+polynomials&video_ids=Vm7H0VTlIco%2CREiDXCN0lGU%2C03yq7XsErqo%2CvN0aL-_vIKM">18m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/introduction-to-polynomial-expressions/adding-and-subtracting-polynomials">Introduktion til polynomiske operationer</a> (1 Article, 3 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+polynomiske+operationer&video_ids=ahdKdxsTj8E%2C5ZdxnFspyP8%2Cxgoqcc2-RS4%2CDMyhUb1pZT0">12m 29s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/introduction-to-polynomial-expressions/add-subtract-poly-two-var">Adding and subtracting polynomials: two variables</a> (1 Article, 3 Exercises, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Adding+and+subtracting+polynomials%3A+two+variables&video_ids=jroamh6SIo0%2CAqMT_zB9rP8%2CG9C7uz3XOh0%2CZBDiMLAQU-8%2CZgFXL6SEUiI">26m 50s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/introduction-to-polynomial-expressions/multiplying-monomials">Multiplikation af Monomialer</a> (1 Article, 2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Multiplikation+af+Monomialer&video_ids=7EplN4Ch98Q%2C96SNwovV1I4%2C3aZNPdvXJVU%2CmzULbezO6iA">9m 45s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/introduction-to-polynomial-expressions/multiplying-polynomials-by-monomials">Multiplying a monomial by a polynomial</a> (1 Article, 3 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Multiplying+a+monomial+by+a+polynomial&video_ids=bkZYILrmFRU%2CpD2-H15ucNE%2CNADPP4wlo1Q">8m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/introduction-to-polynomial-expressions/multiplying-binomials-2">Multiplikation af to-leddede polynomier</a> (1 Article, 4 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Multiplikation+af+to-leddede+polynomier&video_ids=oOTFGdjhqqM%2CXy8NKUoyy98%2CyofirMQyRNw">14m 29s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/introduction-to-polynomial-expressions/multiplying-polynomials-by-binomials">Multiplying binomials by polynomials</a> (1 Article, 1 Exercise, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Multiplying+binomials+by+polynomials&video_ids=D6mivA_8L8U%2CC9m5VEEyno8%2CieC5LgoGJVg">13m 47s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/introduction-to-polynomial-expressions/special-products-of-polynomials">Særlige produkter af binomialer (to-leddede udtryk)</a> (1 Article, 2 Exercises, 1 Quiz, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=S%C3%A6rlige+produkter+af+binomialer+%28to-leddede+udtryk%29&video_ids=JfuisfEdnjk%2CxH_GllPuymc%2C3gqDGgoM_lU%2CEdhEeSXW9T4%2CKBeiPHTYRMw%2CGWDNk58io1c">32m 32s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/introduction-to-polynomial-expressions/modeling-with-polynomials">Polynomials word problems</a> (1 Test, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Polynomials+word+problems&video_ids=bamcYQDzVTw%2CEvvxBdNIUeQ%2CIGs7IB48Fvg%2CS41-yaZdpEs">15m 8s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/polynomial-factorization">Factorization</a> (11 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/algebra-2018/polynomial-factorization/introduction-to-factorization">Introduktion til faktorisering</a> (1 Article, 1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+faktorisering&video_ids=SjN3_xCJamA">5m 26s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/polynomial-factorization/factoring-monomials">Faktorisering af monomialer (et-leddede udtryk)</a> (2 Articles, 2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Faktorisering+af+monomialer+%28et-leddede+udtryk%29&video_ids=_MCPV8CQzf8%2CkkrF9X6Fycg%2CUYh7Sj_yR8c%2CbtNVV6bZCv4">10m 47s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/polynomial-factorization/factoring-polynomials-1-common-factors">Faktorisering af polynomier ved at tage fælles faktorer</a> (2 Articles, 1 Exercise, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Faktorisering+af+polynomier+ved+at+tage+f%C3%A6lles+faktorer&video_ids=mbb3msmX2xs%2CiTn3TTF0IXk%2CMZl6Mna0leQ%2CtYknkDjp-bQ%2CtDlzWNtRzS8">21m 29s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/polynomial-factorization/evaluating-expressions-with-unknown-variables">Evaluering af udtryk med ukendte variable</a> (1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Evaluering+af+udtryk+med+ukendte+variable&video_ids=MvMufl4cfVw%2C9mZG5AiTKXw">7m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/polynomial-factorization/factoring-quadratics-1">Faktorisere parabler intro</a> (2 Articles, 2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Faktorisere+parabler+intro&video_ids=D3a8NnpQ2vU%2C1kfq0aR3ASs%2CeF6zYNzlZKQ">27m 24s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/polynomial-factorization/factoring-quadratics-2">Factoring quadratics by grouping</a> (2 Articles, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Factoring+quadratics+by+grouping&video_ids=X7B_tH4O-_s%2Cu1SAo2GiX8A">17m 52s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/polynomial-factorization/factoring-polynomials-2-quadratic-forms">Faktorisering af polynomier med kvadratiske former</a> (2 Exercises, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Faktorisering+af+polynomier+med+kvadratiske+former&video_ids=R-rhSQzFJL0%2Cd-2Lcp0QKfI%2CDRpdoZQtvOM%2C0xrvRKHoO2g%2CHXIj16mjfgk">22m 46s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/polynomial-factorization/factoring-quadratics-diff-of-squares">Factoring quadratics: Difference of squares</a> (1 Article, 2 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Factoring+quadratics%3A+Difference+of+squares&video_ids=HLNSouzygw0%2Cjmbg-DKWuc4%2CTK-U1p9O6Nc%2CIRmv-Z--3LA%2CxYQR2LNZLeU">20m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/polynomial-factorization/factoring-quadratics-perfect-squares">Faktorisering af andengradsligninger: Hele kvadrater</a> (1 Article, 2 Exercises, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Faktorisering+af+andengradsligninger%3A+Hele+kvadrater&video_ids=JX5Zvh6swmo%2CliRNTieIU_k%2C4STGvuoBi5U%2CBFW2lHobO4E%2CXuwldEyWjH0%2CoIslHyWJHEY%2C6jZZ6EeE-j0">29m 26s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/polynomial-factorization/factoring-quadratics-strategy">Strategy in factoring quadratics</a> (1 Article, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Strategy+in+factoring+quadratics&video_ids=2hHyY1eyHQs%2CahPdiNQGXRA">15m 53s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/polynomial-factorization/factoring-polynomials-3-special-product-forms">Faktorisering af polynomier med specielle former for produkter</a> (1 Exercise, 1 Quiz, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Faktorisering+af+polynomier+med+specielle+former+for+produkter&video_ids=o-ZbdYVGehI%2CtvnOWIoeeaU%2CYahJQvY396o">6m 44s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/quadratics">Quadratics</a> (10 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/algebra-2018/quadratics/parabolas-intro-alg1">Parabolas intro</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Parabolas+intro&video_ids=BGz3pkoGPag">8m 14s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/quadratics/factored-form-alg1">Quadratic factored form</a> (4 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Quadratic+factored+form&video_ids=-lWVpoPaPBc%2CEV57jv7JKCs%2CxVZA6NOQA7A">18m 55s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/quadratics/quadratics-square-root">Løs andengradsligninger med kvadratrod</a> (2 Articles, 4 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=L%C3%B8s+andengradsligninger+med+kvadratrod&video_ids=RweAgQwLdMs%2CVTlvg4wJ1X0%2CnaVFTNWVlQU%2CjtPvDycHVQw">13m 40s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/quadratics/vertex-form-alg1">Quadratic vertex form</a> (3 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Quadratic+vertex+form&video_ids=_QqhuLixNEk%2C7QMoNY6FzvM%2ClUA1LYCoIAg">16m 32s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/quadratics/solving-quadratic-equations-by-factoring">Løsning af kvadrater ved faktorisering</a> (2 Articles, 3 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=L%C3%B8sning+af+kvadrater+ved+faktorisering&video_ids=2ZzuZvz33X0%2CKbFwLvCOBUI%2CZIqW_sXymrM%2CSTcsaKuW-24%2Cvl9o9XEfXtw">29m 7s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/quadratics/solving-quadratics-by-completing-the-square">Fuldførelse af kvadratet</a> (2 Articles, 3 Exercises, 1 Quiz, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Fuldf%C3%B8relse+af+kvadratet&video_ids=bNQY0z76M5A%2CVvuuRpJbbHE%2Csh-MP-dVhD4%2CKouDAzYl_bc%2CTV5kDqiJ1Os%2C6agzj3A9IgA">37m 57s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/quadratics/solving-quadratics-using-the-quadratic-formula">Formlen for løsninger til andengradsligninger</a> (4 Articles, 2 Exercises, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Formlen+for+l%C3%B8sninger+til+andengradsligninger&video_ids=i7idZfS8t8w%2Ciulx0z1lz8M%2Cty4Ohya4hdE%2CCLrImGKeuEI%2C_E3gx_yQhHQ%2CXUvKjC21fYU%2Cr3SEkdtpobo">48m 41s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/quadratics/quad-standard-form-alg1">Quadratic standard form</a> (2 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Quadratic+standard+form&video_ids=IbI-l7mbKO4%2CMQtsRYPx3v0%2COZtqz_xw0SQ">16m 14s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/quadratics/features-of-quadratic-functions">Features & forms of quadratic functions</a> (1 Article, 5 Exercises, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Features+%26+forms+of+quadratic+functions&video_ids=4Bc5-HRop5Y%2CeRbgHCaWQQE%2CdfoXtodyiIA%2CV-BAdpvejTw%2CUdLYAqN0gNY%2C4Bx06GFyhUA">39m 6s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/quadratics/transforming-quadratic-functions">Transforming parabolas</a> (2 Exercises, 1 Quiz, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Transforming+parabolas&video_ids=99v51U3HSCU%2CZmVOR6n_fzY%2CAMsbZLxd3lE">17m 28s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/rational-and-irrational-numbers">Irrationelle tal</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/algebra-2018/rational-and-irrational-numbers/alg-1-irrational-numbers">Rationale og irrationale tal</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Rationale+og+irrationale+tal&video_ids=1c6SFiot8Ck%2CuQSkYyFsZmA">8m 13s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/rational-and-irrational-numbers/sums-and-products-of-rational-and-irrational-numbers">Rationelle og irrationelle udtryk</a> (1 Exercise, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Rationelle+og+irrationelle+udtryk&video_ids=HKUJkMQsGkM%2CKT32CsdEZEY%2CpPM72fPwIjw%2C16-GZWi66CI%2ChTJgK-wZMcE%2CNC6HXlrH53Y">24m 24s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra-2018/rational-and-irrational-numbers/proofs-concerning-irrational-numbers">Beviser der involverer irrationelle tal</a> (1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Beviser+der+involverer+irrationelle+tal&video_ids=mX91_3GQqLY%2CW-Nio466Ek4%2Chxqo_DiL3pw">20m 48s</a> )</li>
</ul></li>
</ul>
<h2 id="geometri-gymnasie-niveau-8-topics"><a href="https://da.khanacademy.org/math/geometry">Geometri (gymnasie-niveau)</a> (8 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-foundations">Geometry foundations</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-foundations/hs-geo-intro-euclid">Intro to Euclidean geometry</a> (4 Exercises, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Intro+to+Euclidean+geometry&video_ids=7irl1OK3t9A%2CUiGHAFx3bCU%2C-DcovWfpl6Y%2CHEyabk0EGys%2CiDQ1foxYf0o">37m 57s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-foundations/hs-geo-angles">Vinkler</a> (8 Exercises, 1 Quiz, 14 Videos | <a href="https://www.youtube.com/watch_videos?title=Vinkler&video_ids=Bk6wNity7uM%2CqR_SybHn_QM%2Ciyu9hsxI3PA%2C8s_ZHzKazAE%2CcNf12GARh7c%2COFGhI4mk47c%2C3yfd58CZMas%2ChHvcpL4xe2A%2C7MWvLPI9JfU%2CKuZDivTQI0w%2CbWR2GYKm560%2CCYjbGIIrd6M%2C60ov_fB2BWc%2C2SOK_IrpHeQ">1h 7m 30s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-foundations/hs-geo-polygons">Polygons</a> (1 Article, 6 Exercises, 1 Quiz, 14 Videos | <a href="https://www.youtube.com/watch_videos?title=Polygons&video_ids=kZQJKgHiaEc%2C-sPKC1Nis_U%2CN9G65_85-ZI%2CTv8smapwrXo%2C8GwVbXvGlR8%2CcZAsFYxqljw%2CgDNZtHv0ly8%2C2JuH-f_O4EI%2CBjvs3kpXyz4%2CDcIS_wHFpkw%2CZz5QRQZBptY%2Ci2ot23n8z1s%2CDJykJGequSA%2CzoY-8otckwI">1h 22m 15s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-foundations/hs-geo-area">Areal</a> (1 Article, 12 Exercises, 1 Quiz, 1 Test, 16 Videos | <a href="https://www.youtube.com/watch_videos?title=Areal&video_ids=wJQFgm44UKI%2CrRTXKQpblEc%2Chm17lVaor0Q%2CMGrAgG687e8%2CmKdE1d11NIQ%2CukPjc3Oyad4%2CPy6rssZmWHQ%2CIi7wvIKi05U%2Cd_nvy5rHV9M%2CvWXMDIazHjA%2CjyLRpr2P0MQ%2C-OpvV2lL-jw%2CyWGeFDXgQvg%2Ca2L27dTOyHk%2CEYLEHZ89Pa0%2C8ibnLU8J740">1h 32m 7s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-transformations">Transformationer</a> (8 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-transformations/hs-geo-transformations-intro">Introduction to rigid transformations</a> (2 Articles, 1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduction+to+rigid+transformations&video_ids=XiAoUDfrar0%2CKv-lyVmQ5ps%2CK7QTjFdUIyk">12m 41s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-transformations/hs-geo-translations">Flytninger</a> (4 Articles, 3 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Flytninger&video_ids=SxxzfojT1Pw%2CBrYEuO7fwMw%2Cg_ijRF_NMLk%2CnV8taxEW8-0">10m 32s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-transformations/hs-geo-rotations">Rotationer</a> (3 Articles, 3 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Rotationer&video_ids=0NYbQPcdxg8%2C6pH-7pciYU8%2C6nUMiJfHLSA">12m 59s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-transformations/hs-geo-reflections">Spejlinger</a> (2 Articles, 4 Exercises, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Spejlinger&video_ids=F77xiSlCehI%2C435Ipnmp7bA%2C63mWxNXQQAk%2ClfBDOQddTD0%2Ckj3ZfOQGKdE">21m 3s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-transformations/hs-geo-rigid-transformations-overview">Rigid transformations overview</a> (3 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Rigid+transformations+overview&video_ids=7y4FGCvNgB8%2CbrccWoewXiI%2C4AxYt_Cjd1o">14m 52s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-transformations/hs-geo-dilations">Dilations</a> (5 Exercises, 1 Quiz, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Dilations&video_ids=N0_HfmxdbCg%2Cb4ORXN7a0-w%2CrDj0WNzp-f8%2C6dyWKD_JPhI%2CqlWZJ21O63s%2CchdnDLbSbU8">21m 17s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-transformations/hs-geo-transformations-definitions">Egenskaber og definitioner af transformationer</a> (1 Article, 3 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Egenskaber+og+definitioner+af+transformationer&video_ids=KFSBop9TZyI%2C4zvwNsou9vU%2CuYXhga17q1g%2C_eAWDuLYVfg">24m 30s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-transformations/hs-geo-symmetry">Symmetri</a> (1 Exercise, 1 Quiz, 1 Test, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Symmetri&video_ids=2ajNdiCPuIA%2CP35LyN9g0oI%2C-nufZ41Kg5c%2CANnuQZyEKVo">17m 22s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-congruence">Kongruens</a> (7 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-congruence/hs-geo-trans-and-congruence">Transformations & congruence</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Transformations+%26+congruence&video_ids=Tn9U8hLu9aI%2CEDlZAyhWxhk">2m 37s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-congruence/hs-geo-triangle-congruence">Triangle congruence</a> (1 Article, 1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Triangle+congruence&video_ids=6AHDadAVZQo%2CRD4k5KZZCHU%2CCB0zyATSZJY%2Cd5UCZ9hO8X4">39m 49s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-congruence/hs-geo-congruence-theorems">Theorems concerning triangle properties</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Theorems+concerning+triangle+properties&video_ids=kZQJKgHiaEc%2CiM3ltrzyFNM%2CCYNUwiUzlPk">20m</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-congruence/hs-geo-working-with-triangles">Working with triangles</a> (2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Working+with+triangles&video_ids=-WXA0KBCa-g%2CTAB1a90KgAU%2CyCwz-pYaUfY%2CCVKAro3HUxQ">19m 51s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-congruence/hs-geo-quadrilaterals-theorems">Theorems concerning parallelogram properties</a> (6 Videos | <a href="https://www.youtube.com/watch_videos?title=Theorems+concerning+parallelogram+properties&video_ids=DJykJGequSA%2C4l7xlJMrgMA%2CzoY-8otckwI%2CfSu1LKnhM5Q%2ClRqNC3jLZy8%2Cpmp2JbmIpx4">42m 1s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-congruence/hs-geo-triangle-theorems">Proofs of theorems that use triangle congruence</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Proofs+of+theorems+that+use+triangle+congruence&video_ids=MplId6vM10k%2CAeVaxr1zPHo%2C43TQOLBBFbM">26m 15s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-congruence/hs-geo-bisectors">Constructing bisectors of lines & angles</a> (1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Constructing+bisectors+of+lines+%26+angles&video_ids=amt98mDboeY%2CdyKIGQkl0Cc%2CKNr52iFk7n4">4m 55s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-similarity">Ligedannethed</a> (6 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-similarity/hs-geo-similarity-definitions">Definitions of similarity</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Definitions+of+similarity&video_ids=6p1lweGactg">2m 11s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-similarity/hs-geo-triangle-similarity-intro">Introduction to triangle similarity</a> (1 Article, 2 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduction+to+triangle+similarity&video_ids=9ThXDY9Y3oU%2C7bO0TmJ6Ba4%2CLy86lwq_2gc%2C24WMbh1BBKc">38m 50s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-similarity/hs-geo-solving-similar-triangles">Solving similar triangles</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Solving+similar+triangles&video_ids=R-6CAr_zEEk%2CTal_fgREll0">13m 42s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-similarity/hs-geo-angle-bisector-theorem">Sætningen om vinkelhalveringslinjer</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=S%C3%A6tningen+om+vinkelhalveringslinjer&video_ids=vDW444-A1hE%2C0sroI1Csda4">11m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-similarity/hs-geo-similar-and-congruent-triangles">Solving problems with similar & congruent triangles</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Solving+problems+with+similar+%26+congruent+triangles&video_ids=EqNzr56h1Ic%2C7aGEvpHaNJ8">20m</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-similarity/hs-geo-similar-and-congruent-triangles-modeling">Solving modeling problems with similar & congruent triangles</a> (1 Quiz, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Solving+modeling+problems+with+similar+%26+congruent+triangles&video_ids=v5SAMuRanGM%2CcnCQGKx6LhE%2CMiyFReTAdCA">21m 35s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-trig">Right triangles & trigonometry</a> (12 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-trig/hs-geo-pyth-theorem">Pythagoras' læresætning</a> (3 Exercises, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Pythagoras%27+l%C3%A6res%C3%A6tning&video_ids=uo-74D7fPzM%2C-ZSHqOEWGAQ%2CB7UV4O-uWiY%2ChyhAy6xh6dY%2C6uouxsS0EfQ%2CTjOlZr_2uW4%2Co3FXUvCjGTA%2C76C7fYK9PdY">57m 36s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-trig/hs-geo-pythagorean-proofs">Beviser for Pythagoras' læresætning</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Beviser+for+Pythagoras%27+l%C3%A6res%C3%A6tning&video_ids=PDWkmbTFrhg%2CoK_btwZI2QQ%2C9ozrm2RbM5c%2C_q6Vy_RTyKQ">38m 14s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-trig/hs-geo-special-right-triangles">Særlige retvinklede trekanter</a> (1 Article, 1 Exercise, 1 Quiz, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=S%C3%A6rlige+retvinklede+trekanter&video_ids=HatDbqfduVQ%2Cr2YH3A-BtF8%2CxFA9fFc8RJ0%2CPGvmCyGl8Ig%2C_20IDzDuuKE%2Cvo6Hs7zPbpI">46m 21s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-trig/hs-geo-trig-ratios-intro">Introduction to the trigonometric ratios</a> (2 Articles, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduction+to+the+trigonometric+ratios&video_ids=Jsiy4TxgIME%2CG-T_6hCdMQc">21m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-trig/hs-geo-solve-for-a-side">Solving for a side in a right triangle using the trigonometric ratios</a> (1 Article, 1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Solving+for+a+side+in+a+right+triangle+using+the+trigonometric+ratios&video_ids=l5VbdqRjTXc">7m 4s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-trig/hs-geo-modeling-with-right-triangles">Modeling with right triangles</a> (2 Articles, 1 Exercise, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Modeling+with+right+triangles&video_ids=aHzd-u35LuA">4m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-trig/hs-geo-trig-ratios-similarity">Trigonometric ratios & similarity</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Trigonometric+ratios+%26+similarity&video_ids=QuZMXVJNLCo%2CTugWqiUjOU4%2CEBKNtjZAjXg">23m 27s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-trig/hs-geo-complementary-angles">Sine & cosine of complementary angles</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Sine+%26+cosine+of+complementary+angles&video_ids=BLQNL_UGONg%2CyiH6GoscimY%2CZ5EnuVJawmY">14m 4s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-trig/hs-geo-law-of-sines">Law of sines</a> (1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Law+of+sines&video_ids=VjmFKle7xIw%2CIJySBMtFlnQ%2CAPNkWrD-U1k">18m 6s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-trig/hs-geo-law-of-cosines">Cosinusloven</a> (1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Cosinusloven&video_ids=ZElOxG7_m3c%2CEi54NnQ0FKs%2CpGaDcOMdw48">20m 45s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-trig/hs-geo-solving-general-triangles">Solving general triangles</a> (1 Article, 1 Exercise, 1 Quiz, 1 Test, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Solving+general+triangles&video_ids=6kGi1dvGZNY">6m</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-solids">Geometri med faste legemer</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-solids/hs-geo-solids-intro">Solid geometry intro</a> (1 Article, 2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Solid+geometry+intro&video_ids=qofRW3InBuU%2Cy2JtTCiW9rk%2C2AV3PJm8CSU%2CIelS2vg7JO8">20m 22s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-solids/hs-geo-density">Density</a> (1 Exercise, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Density&video_ids=YbNVUhW-HJM">6m 5s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-solids/hs-geo-2d-vs-3d">2D vs. 3D objects</a> (3 Exercises, 1 Quiz, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=2D+vs.+3D+objects&video_ids=7nyg1I0FJh8%2CaSokFEpoJFM%2CvdpyWeiHXmU">15m 5s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-analytic-geometry">Analytisk geometri</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-analytic-geometry/hs-geo-distance-and-midpoints">Distance and midpoints</a> (4 Articles, 2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Distance+and+midpoints&video_ids=nyZuite17Pc%2C0Uy6qS7LCGs">16m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-analytic-geometry/hs-geo-dividing-segments">Opdeling af linjestykker</a> (1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Opdeling+af+linjestykker&video_ids=0rlNHYHhrWs%2ClEGS5ECgFxE">10m 18s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-analytic-geometry/hs-geo-dist-problems">Problem solving with distance on the coordinate plane</a> (3 Exercises, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Problem+solving+with+distance+on+the+coordinate+plane&video_ids=3AxyrK2jYc8%2CS6BHQMk8C_A%2C9ASWQi14FlE%2CgS6s3MGZlRc%2CvsgrWDLEzcQ">32m 8s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-analytic-geometry/hs-geo-parallel-perpendicular-lines">Parallel & perpendicular lines on the coordinate plane</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Parallel+%26+perpendicular+lines+on+the+coordinate+plane&video_ids=uaL8KMxfw9Q%2C6riBTnlI4fw">9m 34s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-analytic-geometry/hs-geo-parallel-perpendicular-eq">Equations of parallel & perpendicular lines</a> (2 Exercises, 1 Quiz, 1 Test, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Equations+of+parallel+%26+perpendicular+lines&video_ids=lnoDY4WjzMg%2CTIAEopEU9ck%2CYhBNtB5Yqro%2CZSaqjesFM5E%2CLmHlD4krlfQ%2C8m8hFcFJ-JM%2C9ZYoIliBXYE%2CHyThzLRuqXo">32m 32s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-circles">Cirkler</a> (14 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-circles/hs-geo-circle-basics">Circles basics</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Circles+basics&video_ids=U2W7HPyC0cM%2CjyLRpr2P0MQ%2CtcQjJssEMgo">23m 52s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-circles/hs-geo-arc-measures">Arc measures</a> (2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Arc+measures&video_ids=_H4jllna_ec%2CGOA9XWEo7QI%2CbsDu8VQKwxA">19m 1s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-circles/hs-geo-arc-length-deg">Arc length (degrees)</a> (2 Articles, 1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Arc+length+%28degrees%29&video_ids=TFySVo3qp0Y%2CO3LYnOjaakI">7m 16s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-circles/hs-geo-radians-intro">Introduktion til Radianer</a> (1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+Radianer&video_ids=EnwWxMZVBeg%2Cz8vj8tUCkxY%2CO3jvUZ8wvZs%2Cz0-1gBy1ykE">28m 25s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-circles/hs-geo-arc-length-rad">Arc length (radians)</a> (2 Articles, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Arc+length+%28radians%29&video_ids=XFI7GK4Nv-s%2CdtQyiDMoub4">5m 38s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-circles/hs-geo-sectors">Sectors</a> (1 Exercise, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Sectors&video_ids=ReyP49jYSlQ">2m 26s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-circles/hs-geo-inscribed-angles">Inscribed angles</a> (2 Articles, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Inscribed+angles&video_ids=aNi1-zeEps8%2CuoSNmhmXhNw">15m 36s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-circles/hs-geo-inscribed-shapes">Inscribed shapes problem solving</a> (1 Article, 2 Exercises, 9 Videos | <a href="https://www.youtube.com/watch_videos?title=Inscribed+shapes+problem+solving&video_ids=b0U1NxbRU4w%2CT971zHhZ3S4%2CpCLGpRaJfJ8%2Ch-_BDon5oes%2CLGnL17ESs3Q%2CY9cznjBl0Hk%2C3F2ov87S6h8%2CU5JXwGRTmwE%2CCtUNqVI9xqk">51m 56s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-circles/hs-geo-tangents">Properties of tangents</a> (4 Articles, 1 Exercise, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Properties+of+tangents&video_ids=St3MU5i3chc%2CpJABplruJIU%2C8vFhNhL-zm8%2CZiqHJwzv_HI%2CKjQ1KN5GgoE">23m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-circles/hs-geo-circle-standard-equation">Standard equation of a circle</a> (3 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Standard+equation+of+a+circle&video_ids=JvDpYlyKkNU%2CthDrJvWNI8M%2CiX5UgArMyiI">14m 45s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-circles/hs-geo-circle-expanded-equation">Expanded equation of a circle</a> (1 Article, 2 Exercises, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Expanded+equation+of+a+circle&video_ids=XyDMsotfJhE">4m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-circles/hs-geo-inscribed-polygons">Konstruktion af regulære polygoner indskrevet i cirkler</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Konstruktion+af+regul%C3%A6re+polygoner+indskrevet+i+cirkler&video_ids=-gWtl6mdpeY%2CgWMTTP58_J0%2CYu4eqwGFJK8">9m 56s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-circles/hs-geo-circum-in-circles">Constructing circumcircles & incircles</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Constructing+circumcircles+%26+incircles&video_ids=lmm767eIsGU%2CeSjbEWb4Qp4">4m 55s</a> )</li>
<li><a href="https://da.khanacademy.org/math/geometry/hs-geo-circles/hs-geo-constructing-tangents">Konstruktion af en tangent til en cirkel</a> (1 Test, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Konstruktion+af+en+tangent+til+en+cirkel&video_ids=n5cKWjZqpIE%2Cg_dStt4st2I">11m 25s</a> )</li>
</ul></li>
</ul>
<h2 id="algebra-ii-13-topics"><a href="https://da.khanacademy.org/math/algebra2-2018">Algebra II</a> (13 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/manipulating-functions">Functions | Algebra 2 | Khan Academy</a> (9 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/manipulating-functions/combining-functions">Kombination af funktioner</a> (3 Articles, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Kombination+af+funktioner&video_ids=SWnYawcLdKo%2C6arI8XhLZ9o%2C3klkT55Y6s0%2Cu9v_bakOIcU">14m 7s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/manipulating-functions/function-composition">Sammensatte funktioner</a> (2 Articles, 3 Exercises, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Sammensatte+funktioner&video_ids=wUNWjd4bMmw%2ClxtlwnCV-HM%2CFR8JH6IldsE%2CoORnGaJp1pk%2C_b-2rZpX5z4%2CjlID_mIJXi4">24m 45s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/manipulating-functions/combining-and-composing-modeling-functions">Modellering af forskellige situationer ved at kombinere og sammensætte funktioner</a> (2 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Modellering+af+forskellige+situationer+ved+at+kombinere+og+sammens%C3%A6tte+funktioner&video_ids=2IWhknVzeJM%2CpIMfRbznxKA%2CLG6g7gxupHg">14m 6s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/manipulating-functions/shifting-functions">Skiftende funktioner</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Skiftende+funktioner&video_ids=MDav5OMpCto%2C5DLkB-g8Rr8">10m 30s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/manipulating-functions/stretching-functions">Hvordan man strækker funktioner</a> (1 Exercise, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Hvordan+man+str%C3%A6kker+funktioner&video_ids=ENFNyNPYfZU%2C4H5JZnytOfE%2CUpw1b0EohIM">14m 17s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/manipulating-functions/introduction-to-inverses-of-functions">Introduktion til inverse funktioner</a> (1 Article, 1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+inverse+funktioner&video_ids=W84lObmOp8M%2CKzaPBzFFLRM%2CKPeS2gdizhQ">17m 41s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/manipulating-functions/finding-inverse-functions">At finde inverse funktioner</a> (1 Article, 1 Exercise, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=At+finde+inverse+funktioner&video_ids=1MX3J0yLFjE%2CaeyFb2eVH1c%2CGku4WZH9paQ%2CJBqYTuA_WgE%2CYI30Ecfl4tc">30m 25s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/manipulating-functions/verifying-that-functions-are-inverses">Verifying that functions are inverses</a> (1 Article, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Verifying+that+functions+are+inverses&video_ids=8GEGnSEJA2s%2CPJIL0kRHND0">10m 53s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/manipulating-functions/invertible-functions">Bestemmelse af hvorvidt en funktion er invertibel</a> (1 Article, 2 Exercises, 1 Quiz, 1 Test, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Bestemmelse+af+hvorvidt+en+funktion+er+invertibel&video_ids=dqCTAHHza10%2CtCV9VyIIaw0">10m 4s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/introduction-to-complex-numbers-algebra-2">Complex numbers | Algebra 2 | Khan Academy</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/introduction-to-complex-numbers-algebra-2/the-imaginary-numbers-algebra-2">What are the imaginary numbers?</a> (2 Articles, 2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=What+are+the+imaginary+numbers%3F&video_ids=ysVcAYo7UPI%2Cs03qez-6JMA%2CQiwfF83NWNA%2CrYG1D5lUE4I">22m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/introduction-to-complex-numbers-algebra-2/the-complex-numbers-algebra-2">What are the complex numbers?</a> (1 Article, 2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=What+are+the+complex+numbers%3F&video_ids=SP-YJe7Vldo%2CA_ESfuN1Pkg">9m 23s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/introduction-to-complex-numbers-algebra-2/the-complex-plane-algebra-2">Det komplekse plan</a> (1 Article, 1 Exercise, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Det+komplekse+plan&video_ids=kGzXIbauGQk">1m 14s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/introduction-to-complex-numbers-algebra-2/adding-and-subtracting-complex-numbers-algebra-2">At lægge komplekse tal sammen og trække dem fra</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=At+l%C3%A6gge+komplekse+tal+sammen+og+tr%C3%A6kke+dem+fra&video_ids=SfbjqVyQljk%2CtvXRaZbIjO8">3m 4s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/introduction-to-complex-numbers-algebra-2/multiplying-complex-numbers-algebra-2">Multiplikation af komplekse tal</a> (2 Articles, 2 Exercises, 1 Quiz, 1 Test, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Multiplikation+af+komplekse+tal&video_ids=cWn6g8Qqvs4">5m 32s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/arithmetic-with-polynomials">Regning med polynomier</a> (6 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/arithmetic-with-polynomials/adding-and-subtracting-polynomials-review">At tilføje og trække polynomier fra</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=At+tilf%C3%B8je+og+tr%C3%A6kke+polynomier+fra&video_ids=DMyhUb1pZT0%2CAqMT_zB9rP8">4m 37s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/arithmetic-with-polynomials/multiplying-polynomials-review">Multiplikation af polynomier</a> (2 Exercises, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Multiplikation+af+polynomier&video_ids=D6mivA_8L8U%2CGWDNk58io1c">13m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/arithmetic-with-polynomials/long-division-of-polynomials">Long division of polynomials</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Long+division+of+polynomials&video_ids=FXgV9ySNusc%2C8Wxw9bpKEGQ">15m 29s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/arithmetic-with-polynomials/synthetic-division-of-polynomials">Synthetic division of polynomials</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Synthetic+division+of+polynomials&video_ids=1byR9UEQJN0%2C3Ee_huKclEQ%2C-nlMXVrgtjw">17m 21s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/arithmetic-with-polynomials/practice-dividing-polynomials-with-remainders">Øv polynomiers division med rest</a> (3 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=%C3%98v+polynomiers+division+med+rest&video_ids=UquFdMg6Z_U%2CWqNc6My1aNU%2CpLCmwHsDYqo">13m 49s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/arithmetic-with-polynomials/polynomial-remainder-theorem">Polynomium med rest sætning</a> (1 Exercise, 1 Quiz, 1 Test, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Polynomium+med+rest+s%C3%A6tning&video_ids=MwG6QD352yc%2CMHtTP6vc4RU%2CJAdNNJynWM4%2Ce0lBUViss8E%2CNIazpCER9oM">23m 2s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/polynomial-functions">Polynomials | Algebra 2 | Khan Academy</a> (15 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/polynomial-functions/binomial-theorem">The binomial theorem</a> (1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=The+binomial+theorem&video_ids=iPwrDWQ7hPc%2Cv9Evg2tBdRk%2CojFuf9RYmzI%2C2IFItASxDVo">35m 15s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/polynomial-functions/understanding-the-binomial-theorem">Understanding the binomial theorem</a> (1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Understanding+the+binomial+theorem&video_ids=_hrN4rVCOfI%2Cx-N76NrMDNE%2CxF_hJaXUNfE">20m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/polynomial-functions/factoring-polynomials-quadratic-forms-alg2">Faktorisering af polynomier - Kvadratiske former</a> (4 Exercises, 9 Videos | <a href="https://www.youtube.com/watch_videos?title=Faktorisering+af+polynomier+-+Kvadratiske+former&video_ids=1kfq0aR3ASs%2CeF6zYNzlZKQ%2CX7B_tH4O-_s%2Cu1SAo2GiX8A%2CR-rhSQzFJL0%2Cd-2Lcp0QKfI%2CDRpdoZQtvOM%2C0xrvRKHoO2g%2CHXIj16mjfgk">1h 1m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/polynomial-functions/factoring-polynomials-special-product-forms-alg2">Faktorisering af polynomier - Specielle former af produkter</a> (4 Exercises, 1 Quiz, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Faktorisering+af+polynomier+-+Specielle+former+af+produkter&video_ids=tvnOWIoeeaU%2Cjmbg-DKWuc4%2CXuwldEyWjH0%2CliRNTieIU_k%2Co-ZbdYVGehI%2CYahJQvY396o">17m 53s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/polynomial-functions/advanced-polynomial-factorization-methods">Advanced polynomial factorization methods</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Advanced+polynomial+factorization+methods&video_ids=mekBhhFWC9c%2CTouv2APcBRw%2CCxcP4ylUP5w">17m</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/polynomial-functions/proving-polynomial-identities">Proving polynomial identities</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Proving+polynomial+identities&video_ids=-6qiO49Q180">7m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/polynomial-functions/polynomial-identities-with-complex-numbers">Polynomial identities with complex numbers</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Polynomial+identities+with+complex+numbers&video_ids=8TPofjGXDR4%2CC3QPTCwpIZo">7m 23s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/polynomial-functions/quadratic-equations-with-complex-numbers">Quadratic equations with complex numbers</a> (1 Exercise, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Quadratic+equations+with+complex+numbers&video_ids=dnjK4DPqh0k">10m 15s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/polynomial-functions/fundamental-theorem-of-algebra">The Fundamental Theorem of Algebra</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=The+Fundamental+Theorem+of+Algebra&video_ids=d8-LO6FCna0%2CzNxEVaRbdus%2C_HFTRQRpzFM">15m 55s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/polynomial-functions/finding-zeros-of-polynomials">Finding zeros of polynomials</a> (1 Exercise, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Finding+zeros+of+polynomials&video_ids=x9lb_frpkH0%2CHJgjAZ7JkHQ%2C9zreFD3T0qY">18m 54s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/polynomial-functions/zeros-of-polynomials-and-their-graphs">Zeros of polynomials and their graphs</a> (2 Articles, 2 Exercises, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Zeros+of+polynomials+and+their+graphs&video_ids=uFZvWYPfOmw">5m 27s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/polynomial-functions/polynomial-end-behavior">End behavior of polynomial functions</a> (1 Article, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=End+behavior+of+polynomial+functions&video_ids=tZKzaF28sOk%2ChpBBuaiIkrg">10m 33s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/polynomial-functions/introduction-to-symmetry-of-functions">Introduction to symmetry of functions</a> (1 Article, 1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduction+to+symmetry+of+functions&video_ids=4dOQePLgqxE%2CzltgXTlUVLw%2CjFazrvLodrA">13m 23s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/polynomial-functions/symmetry-of-polynomial-functions">Symmetry of polynomial functions</a> (1 Article, 1 Exercise, 1 Quiz, 1 Test, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Symmetry+of+polynomial+functions&video_ids=bOsNS3FsCPs">7m 22s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/radical-equations-and-functions">Radical relationships</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/radical-equations-and-functions/solving-square-root-equations">Solving square-root equations</a> (2 Articles, 2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Solving+square-root+equations&video_ids=711pdW8TbbY%2CpFFoAGIEyJc%2Cwt6XqG59t5U%2Cibeyn2QGjCM">23m 49s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/radical-equations-and-functions/analyzing-extraneous-solutions-of-square-root-equations">Analyzing extraneous solutions of square-root equations</a> (1 Article, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Analyzing+extraneous+solutions+of+square-root+equations&video_ids=m4eiYHL3PP8%2CHRVrbJzXxdM">10m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/radical-equations-and-functions/solve-cube-root-equations">Solving cube-root equations</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Solving+cube-root+equations&video_ids=b6WtwQddAcY">3m 34s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/radical-equations-and-functions/domain-of-radical-functions">Domain of radical functions</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Domain+of+radical+functions&video_ids=sjT_HJrqCww">1m 47s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/radical-equations-and-functions/graphs-of-radical-functions">Graphs of radical functions</a> (1 Article, 1 Exercise, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Graphs+of+radical+functions&video_ids=t5ry2rasWvI%2Coutcfkh69U0%2CUteoh0PtWwI">25m 58s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/rational-expressions-equations-and-functions">Rational relationships</a> (10 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/rational-expressions-equations-and-functions/simplify-rational-expressions">Reducer Rationale Udtryk</a> (3 Articles, 3 Exercises, 1 Quiz, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Reducer+Rationale+Udtryk&video_ids=7Uos1ED3KHI%2CXFwQV-KCudw%2CXChok8XlF90%2Cey_b3aPsRl8%2CdstNU7It-Ro%2CyPZ7In2tdOQ%2Ce7vA_S7abSY%2CY78757j8Vv4">50m 7s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/rational-expressions-equations-and-functions/multiplying-and-dividing-rational-expressions">Multiplikation og division af rationale udtryk</a> (2 Articles, 3 Exercises, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Multiplikation+og+division+af+rationale+udtryk&video_ids=6nALFmvvgds%2Cf-wz_ZzSDdg%2Cgcnk8TnzsLc%2C3GL69IA2q4s%2C54ZFp4CwWEg">24m 38s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/rational-expressions-equations-and-functions/adding-and-subtracting-rational-expressions">Addition og subtraktion af rationale udtryk</a> (2 Articles, 5 Exercises, 9 Videos | <a href="https://www.youtube.com/watch_videos?title=Addition+og+subtraktion+af+rationale+udtryk&video_ids=rmYlCuiC5uY%2Cw7NhLkQynS8%2CDrE_iiw1Mvk%2CevmDZkDvlNw%2C35R649lYNq0%2CsqkGbDmquHI%2Cj8cKFzj5V6g%2CWs03IbNrjfM%2CIKsi-DQU2zo">39m 34s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/rational-expressions-equations-and-functions/nested-fractions">Indlejrede brøker</a> (1 Exercise, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Indlejrede+br%C3%B8ker&video_ids=_BFaxpf35sY">5m 46s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/rational-expressions-equations-and-functions/solving-rational-equations">Løs rationale ligninger</a> (3 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=L%C3%B8s+rationale+ligninger&video_ids=3RdNPrNUi4s%2C5wUJLMWZ5Fw%2CMcOMtxI_Jzs%2CCBlSsy1eslw">20m 8s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/rational-expressions-equations-and-functions/direct-and-inverse-variation">Ligefrem og omvendt proportionalitet</a> (1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Ligefrem+og+omvendt+proportionalitet&video_ids=92U67CUy9Gc%2CNgzFrdf5MdI%2CWxV7fbshDY8%2Cll-8Qh6nDUE">27m 11s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/rational-expressions-equations-and-functions/end-behavior-of-rational-functions">End behavior of rational functions</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=End+behavior+of+rational+functions&video_ids=Vtcmyr5IGYY">10m 7s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/rational-expressions-equations-and-functions/discontinuities-of-rational-functions">Diskontinuiteter i rationelle funktioner</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Diskontinuiteter+i+rationelle+funktioner&video_ids=qoMimDT7D8w%2CX8B4Fi7wadc">13m 52s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/rational-expressions-equations-and-functions/graphs-of-rational-functions">Grafer for rationelle funktioner</a> (1 Exercise, 10 Videos | <a href="https://www.youtube.com/watch_videos?title=Grafer+for+rationelle+funktioner&video_ids=P0ZgqB44Do4%2CYElHmwdbkzQ%2CqAfETdORmcw%2C-jXk1gl_sEo%2CTX_mx3qULpw%2ConmNaDrxwmo%2CfvC0dm2wzIo%2CReEMqdZEEX0%2C2N62v_63SBo%2Cp7ycTWq6BFk">1h 29m 14s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/rational-expressions-equations-and-functions/modeling-with-rational-functions">Modeling with rational functions</a> (1 Quiz, 1 Test, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Modeling+with+rational+functions&video_ids=glEP04Pzap8%2CmpHMuaVW0DI%2CgD7A1LA4jO8%2CE1j8W64NQ0Y%2CB0Z4s38YIgQ%2C0_VaUYoNV7Y%2CzTLxxezKUT8%2CmNgW6SAQLhk">42m 29s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/exponential-growth-and-decay-alg-2">Exponential growth & decay | Algebra 2 | Khan Academy</a> (6 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/exponential-growth-and-decay-alg-2/equivalent-forms-of-exponential-expressions">Ækvivalente former af eksponentielle udtryk</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=%C3%86kvivalente+former+af+eksponentielle+udtryk&video_ids=Y6wNiYcuCoE%2CvSijVSL3ChU">13m 42s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/exponential-growth-and-decay-alg-2/solving-exponential-equations-using-properties-of-exponents">Solving exponential equations using properties of exponents</a> (2 Exercises, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Solving+exponential+equations+using+properties+of+exponents&video_ids=etl9KKf6se0%2CmGSn-qR6k-g">11m 58s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/exponential-growth-and-decay-alg-2/interpreting-the-rate-of-change-of-exponential-models">Interpreting the rate of change of exponential models</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Interpreting+the+rate+of+change+of+exponential+models&video_ids=uoN_Ax3dfQo%2CzFksanIexHI">13m 37s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/exponential-growth-and-decay-alg-2/constructing-exponential-models-according-to-rate-of-change">Constructing exponential models according to rate of change</a> (1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Constructing+exponential+models+according+to+rate+of+change&video_ids=FRW7SINSYco%2CkaxfCiP9d0w%2Cx9a73iHv06U%2Cpolop-89aIA">22m 11s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/exponential-growth-and-decay-alg-2/advanced-interpretation-of-exponential-models">Advanced interpretation of exponential models</a> (2 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Advanced+interpretation+of+exponential+models&video_ids=q20v5ZBsTk8%2CSM6XZj5dPQQ%2CgR8-vRg6Yp0">16m 2s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/exponential-growth-and-decay-alg-2/distinguishing-between-linear-and-exponential-growth">Distinguishing between linear and exponential growth</a> (1 Exercise, 1 Quiz, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Distinguishing+between+linear+and+exponential+growth&video_ids=721RrH6auoU%2CedwZDu94wNs%2CEuwKjpUpkhs">19m 53s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/exponential-and-logarithmic-functions">Eksponenter og logaritmer</a> (9 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/exponential-and-logarithmic-functions/introduction-to-logarithms">Introduction to logarithms</a> (1 Article, 3 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduction+to+logarithms&video_ids=Z5myJ8dg_rM%2CeTWCARmrzJ0%2CObch1OP5QyA%2CDhW9pz5Vfwo%2CIz6IVf8frjw">23m 13s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/exponential-and-logarithmic-functions/e-and-the-natural-logarithm">The constant e and the natural logarithm</a> (1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=The+constant+e+and+the+natural+logarithm&video_ids=BKGx8GMVu88%2CoQhp3ndj28Y%2CDpo_-GrMpNE">20m 54s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/exponential-and-logarithmic-functions/properties-of-logarithms">Properties of logarithms</a> (2 Articles, 1 Exercise, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Properties+of+logarithms&video_ids=PupNgv49_WY%2CTMmxKZaCqe0%2CpkGrXzakRFs%2CPb9V374iOas%2CRhzXX5PbsuQ%2CFP2arCfAfBY%2CyEAxG_D1HDw">46m 30s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/exponential-and-logarithmic-functions/change-of-base-formula-for-logarithms">The change of base formula for logarithms</a> (2 Articles, 2 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=The+change+of+base+formula+for+logarithms&video_ids=OkFdDqW9xxM%2CqtsMgdZ98Yg%2C1reblXFlM6I">19m 14s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/exponential-and-logarithmic-functions/solving-exponential-equations-with-logarithms">Solving exponential equations with logarithms</a> (1 Article, 2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Solving+exponential+equations+with+logarithms&video_ids=R443Db-wJ5o%2C7Ig6kVZaWoU">8m 3s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/exponential-and-logarithmic-functions/solving-exponential-models">Solving exponential models</a> (1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Solving+exponential+models&video_ids=HnHCQ2X_meg%2CIpXL9HIkqUQ">5m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/exponential-and-logarithmic-functions/graphs-of-exponential-functions">Graphs of exponential functions</a> (1 Exercise, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Graphs+of+exponential+functions&video_ids=83gM3ufe1Nw%2Cja4WRZ4DrAw%2CvlSEpdWf2hQ%2CPss9LJs5bIs%2CEwEbZI57P1o">26m 9s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/exponential-and-logarithmic-functions/graphs-of-logarithmic-functions">Grafer af logaritmiske funktioner</a> (1 Exercise, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Grafer+af+logaritmiske+funktioner&video_ids=K_PiPfYxtao%2CDuYgVVU_BwY%2CLqyA96oYtwE">21m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/exponential-and-logarithmic-functions/logarithmic-scale">Logarithmic scale (optional)</a> (1 Test, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Logarithmic+scale+%28optional%29&video_ids=4xfOq00BzJA%2CsBhEi4L91Sg%2CRFn-IGlayAg%2C6KmeGpjeLZ0%2CSZUDoEdjTzg">44m 2s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/trig-functions">Trigonometry | Algebra 2 | Khan Academy</a> (11 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/trig-functions/intro-to-radians-alg2">Introduktion til Radianer</a> (1 Exercise, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+Radianer&video_ids=EnwWxMZVBeg%2Cz8vj8tUCkxY%2CO3jvUZ8wvZs%2Cz0-1gBy1ykE%2CfYQ3GRSu4JU">32m 16s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/trig-functions/unit-circle-definition-of-trig-functions-alg2">The unit circle definition of sine, cosine, and tangent</a> (1 Article, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=The+unit+circle+definition+of+sine%2C+cosine%2C+and+tangent&video_ids=1m9p9iubMLU%2CWffVdYETdng">16m 1s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/trig-functions/graphs-of-sine-cosine-tangent-alg2">The graphs of sine, cosine, and tangent</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=The+graphs+of+sine%2C+cosine%2C+and+tangent&video_ids=sjUhr0HkLUg%2C08zHioOVTd4%2CFK6-tZ5D7xM">30m 41s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/trig-functions/trig-identities-alg2">Basic trigonometric identities</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Basic+trigonometric+identities&video_ids=tzQ7arA917E%2Ck_wJsio68D4%2Ch-TPSylHrvE%2CC3HFAyigqoY">25m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/trig-functions/trig-values-special-angles-alg2">Trigonometric values of special angles</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Trigonometric+values+of+special+angles&video_ids=KoYZErFpZ5Q">7m 54s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/trig-functions/pythagorean-identity-alg2">The Pythagorean identity</a> (1 Article, 1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=The+Pythagorean+identity&video_ids=n0DLSIOYBsQ%2CsoIt2TwV6Xk">12m 27s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/trig-functions/intro-to-amplitude-and-midline-of-sinusoids-alg2">Introduction to amplitude, midline, and extrema of sinusoidal functions</a> (2 Exercises, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Introduction+to+amplitude%2C+midline%2C+and+extrema+of+sinusoidal+functions&video_ids=s4cLM0l1gd4">4m 58s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/trig-functions/amplitude-and-midline-of-sinusoids-from-formulas-alg2">Finding amplitude and midline of sinusoidal functions from their formulas</a> (2 Exercises, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Finding+amplitude+and+midline+of+sinusoidal+functions+from+their+formulas&video_ids=SBqnRja4CW4">8m 21s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/trig-functions/period-of-sinusoids-alg2">Period of sinusoidal functions</a> (1 Article, 2 Exercises, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Period+of+sinusoidal+functions&video_ids=SBqnRja4CW4">8m 21s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/trig-functions/graphing-sinusoids-alg2">Graphing sinusoidal functions</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Graphing+sinusoidal+functions&video_ids=0zCcFSO8ouE%2CuBVhtGL9y88">23m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/trig-functions/constructing-sinusoids-alg2">Constructing sinusoidal functions</a> (2 Exercises, 1 Quiz, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Constructing+sinusoidal+functions&video_ids=yHo0CcDVHsk%2CRX0DY9eRp8g%2CmVlCXkht6hg">23m 26s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/advanced-functions">Advanced equations & functions</a> (6 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/advanced-functions/solving-equations-by-graphing">Løs ligninger grafisk</a> (1 Article, 2 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=L%C3%B8s+ligninger+grafisk&video_ids=LyVqwJkI5jg%2CR446VpTeOU8%2CmXsn-YYUN4Y%2CwUb7tWgv49U">19m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/advanced-functions/systems-of-quadratic-equations">Systemer af kvadratiske lineære ligninger</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Systemer+af+kvadratiske+line%C3%A6re+ligninger&video_ids=S80YAP84FK0%2CnD3t8WiyRZE%2CGQf1vjfxuo8%2CswFohliPgmQ">20m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/advanced-functions/interpreting-the-symmetry-of-functions">Interpreting the symmetry of algebraic models</a> (1 Article, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Interpreting+the+symmetry+of+algebraic+models&video_ids=ynIq9IxbVso">3m 18s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/advanced-functions/interpreting-the-end-behavior-of-functions">Interpreting the end behavior of algebraic models</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Interpreting+the+end+behavior+of+algebraic+models&video_ids=kmzBGnniH2w">3m</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/advanced-functions/interpreting-the-periodicity-of-functions">Interpreting the periodicity of algebraic models</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Interpreting+the+periodicity+of+algebraic+models&video_ids=zHS9ZVXw_Z0">3m 21s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/advanced-functions/comparing-features-of-functions">Sammenligning af funktionsegenskaber</a> (1 Exercise, 1 Quiz, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Sammenligning+af+funktionsegenskaber&video_ids=w2BN2AJ4fOI%2CH1H0xmjZMPA%2C4Bx06GFyhUA">11m 16s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/sequences-and-series">Sequences and Series</a> (6 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/sequences-and-series/alg2-sequences-review">Aritmetiske serier</a> (5 Articles, 4 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Aritmetiske+serier&video_ids=KRFiAlo7t1E%2C_cooC3yG_p0%2CViLt2WI0XSg%2CgkQjmcX2VjI">30m 18s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/sequences-and-series/alg2-sigma-notation">Sigma notation</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Sigma+notation&video_ids=5jwXThH6fg4">4m 27s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/sequences-and-series/alg2-seq-and-series">Copy of Sequences and series</a> (2 Articles, 1 Exercise, 1 Quiz, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Copy+of+Sequences+and+series&video_ids=cYw4MFWsB6c%2CUy_L8tnihDM%2CRM644gFKo_g%2C0-wa7voc0uM%2CpIO34mrW_Ro%2C1wnIsgUivEQ">34m 25s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/sequences-and-series/alg2-geometric-sequences">Geometriske rækker</a> (6 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Geometriske+r%C3%A6kker&video_ids=pXo0bG4iAyg%2C8a1a5A3CfdQ%2CIq7a2vEsT-o">22m 53s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/sequences-and-series/alg2-geometric-sequence-series">Endelige geometriske rækker</a> (1 Exercise, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Endelige+geometriske+r%C3%A6kker&video_ids=rcRg_gO7-7E%2CCecgFWTg9pQ%2CCf0-6ngH2gs%2CAXP5PGSaaYk%2CDY9Q3qNmZnw">24m 19s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/sequences-and-series/alg2-finite-geometric-series-word-problems">Endelige geometriske rækker - tekstopgaver</a> (1 Exercise, 1 Quiz, 1 Test, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Endelige+geometriske+r%C3%A6kker+-+tekstopgaver&video_ids=aIjzkiijGnA%2Ci05-okb1EJg">25m 39s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/modeling-with-algebra">Modeling | Algebra 2 | Khan Academy</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/modeling-with-algebra/one-variable-modeling">Modellering med ligninger og uligheder med én variabel</a> (1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Modellering+med+ligninger+og+uligheder+med+%C3%A9n+variabel&video_ids=jQ15tkoXZoA%2CGDppV18XDCs%2CIlFD0LzAZeo">27m 48s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/modeling-with-algebra/manipulating-formulas">Manipulation af formler</a> (1 Exercise, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Manipulation+af+formler&video_ids=RxIqDfg5CPs%2CQrDXimNW7As%2Cx2Xjp1-di_k">12m 8s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/intro-to-conics-alg2">Conic sections | Algebra 2 | Khan Academy</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/intro-to-conics-alg2/conic-section-intro-alg2">Introduktion til keglesnit</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+keglesnit&video_ids=0A7RR0oy2ho">10m 58s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/intro-to-conics-alg2/features-of-a-circle-alg2">The features of a circle</a> (2 Exercises, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=The+features+of+a+circle&video_ids=LDjMDIuTWtM%2CSLyM_-sQwMM">5m 59s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/intro-to-conics-alg2/standard-equation-circle-alg2">Standard equation of a circle</a> (3 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Standard+equation+of+a+circle&video_ids=JvDpYlyKkNU%2CthDrJvWNI8M%2CiX5UgArMyiI">14m 45s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/intro-to-conics-alg2/expanded-equation-circle-alg2">Expanded equation of a circle</a> (1 Article, 2 Exercises, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Expanded+equation+of+a+circle&video_ids=XyDMsotfJhE">4m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/math/algebra2-2018/intro-to-conics-alg2/focus-and-directrix-of-a-parabola-alg2">Focus and directrix of a parabola</a> (1 Article, 1 Exercise, 1 Quiz, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Focus+and+directrix+of+a+parabola&video_ids=pe8Dm_FUpdU%2CokXVhDMuGFg%2Cw56Vuf9tHfA">25m 24s</a> )</li>
</ul></li>
</ul>
<h2 id="trigonometri-5-topics"><a href="https://da.khanacademy.org/math/trigonometry">Trigonometri</a> (5 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/math/trigonometry/trigonometry-right-triangles">Grundlæggende trigonometri</a> (9 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/trigonometry/trigonometry-right-triangles/intro-to-the-trig-ratios">Introduction to the trigonometric ratios</a> (2 Articles, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduction+to+the+trigonometric+ratios&video_ids=Jsiy4TxgIME%2CG-T_6hCdMQc">21m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/math/trigonometry/trigonometry-right-triangles/trig-solve-for-a-side">Solving for a side in a right triangle using the trigonometric ratios</a> (1 Article, 1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Solving+for+a+side+in+a+right+triangle+using+the+trigonometric+ratios&video_ids=l5VbdqRjTXc">7m 4s</a> )</li>
<li><a href="https://da.khanacademy.org/math/trigonometry/trigonometry-right-triangles/modeling-with-right-triangles">Modeling with right triangles</a> (2 Articles, 1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Modeling+with+right+triangles&video_ids=aHzd-u35LuA">4m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/math/trigonometry/trigonometry-right-triangles/trig-ratios-similarity">Trigonometriske forholdstal og kongruens</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Trigonometriske+forholdstal+og+kongruens&video_ids=QuZMXVJNLCo%2CTugWqiUjOU4%2CEBKNtjZAjXg">23m 27s</a> )</li>
<li><a href="https://da.khanacademy.org/math/trigonometry/trigonometry-right-triangles/sine-and-cosine-of-complementary-angles">Sine and cosine of complementary angles</a> (1 Article, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Sine+and+cosine+of+complementary+angles&video_ids=BLQNL_UGONg%2CyiH6GoscimY%2CZ5EnuVJawmY">14m 4s</a> )</li>
<li><a href="https://da.khanacademy.org/math/trigonometry/trigonometry-right-triangles/intro-to-the-pythagorean-identity">Introduction to the Pythagorean trigonometric identity</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Introduction+to+the+Pythagorean+trigonometric+identity&video_ids=HnDvUaVjQ1I">4m 16s</a> )</li>
<li><a href="https://da.khanacademy.org/math/trigonometry/trigonometry-right-triangles/reciprocal-trig-ratios">The reciprocal trigonometric ratios</a> (2 Articles, 1 Exercise, 1 Test, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=The+reciprocal+trigonometric+ratios&video_ids=Q7htxHDN8LE%2CrufFQZDDXCE">10m 57s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/trigonometry/trig-with-general-triangles">Trigonometri i vilkårlige trekanter</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/trigonometry/trig-with-general-triangles/law-of-sines">The law of sines</a> (1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=The+law+of+sines&video_ids=VjmFKle7xIw%2CIJySBMtFlnQ%2CAPNkWrD-U1k">18m 6s</a> )</li>
<li><a href="https://da.khanacademy.org/math/trigonometry/trig-with-general-triangles/law-of-cosines">The law of cosines</a> (1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=The+law+of+cosines&video_ids=ZElOxG7_m3c%2CEi54NnQ0FKs%2CpGaDcOMdw48">20m 45s</a> )</li>
<li><a href="https://da.khanacademy.org/math/trigonometry/trig-with-general-triangles/solving-general-triangles">Solving general triangles</a> (1 Article, 1 Exercise, 1 Test, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Solving+general+triangles&video_ids=6kGi1dvGZNY">6m</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/trigonometry/unit-circle-trig-func">The unit circle definition of sine, cosine, and tangent</a> (7 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/trigonometry/unit-circle-trig-func/intro-to-radians-trig">Introduktion til Radianer</a> (1 Exercise, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+Radianer&video_ids=EnwWxMZVBeg%2Cz8vj8tUCkxY%2CO3jvUZ8wvZs%2Cz0-1gBy1ykE%2CfYQ3GRSu4JU">32m 16s</a> )</li>
<li><a href="https://da.khanacademy.org/math/trigonometry/unit-circle-trig-func/unit-circle-definition-of-trig-functions">The unit circle definition of the trigonometric functions</a> (1 Article, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=The+unit+circle+definition+of+the+trigonometric+functions&video_ids=1m9p9iubMLU%2CWffVdYETdng">16m 1s</a> )</li>
<li><a href="https://da.khanacademy.org/math/trigonometry/unit-circle-trig-func/graphs-of-sine-cosine-tangent">The graphs of sine, cosine, and tangent</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=The+graphs+of+sine%2C+cosine%2C+and+tangent&video_ids=sjUhr0HkLUg%2CFK6-tZ5D7xM%2C08zHioOVTd4">30m 41s</a> )</li>
<li><a href="https://da.khanacademy.org/math/trigonometry/unit-circle-trig-func/trig-identities">Basic trigonometric identities</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Basic+trigonometric+identities&video_ids=tzQ7arA917E%2Ck_wJsio68D4%2Ch-TPSylHrvE%2CC3HFAyigqoY">25m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/math/trigonometry/unit-circle-trig-func/trig-values-special-angles">Trigonometric values of special angles</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Trigonometric+values+of+special+angles&video_ids=KoYZErFpZ5Q">7m 54s</a> )</li>
<li><a href="https://da.khanacademy.org/math/trigonometry/unit-circle-trig-func/pythagorean-identity">The Pythagorean identity</a> (1 Article, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=The+Pythagorean+identity&video_ids=n0DLSIOYBsQ%2CsoIt2TwV6Xk">12m 27s</a> )</li>
<li><a href="https://da.khanacademy.org/math/trigonometry/unit-circle-trig-func/long-live-tau">Længe Leve Tau</a> (1 Test, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=L%C3%A6nge+Leve+Tau&video_ids=1jDDfkKKgmc%2CjG7vhMMXagQ">21m 39s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/trigonometry/trig-function-graphs">Grafer af trigonometriske funktioner</a> (6 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/trigonometry/trig-function-graphs/basic-graphs-of-sine-cosine-tangent">The graphs of sine, cosine, and tangent</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=The+graphs+of+sine%2C+cosine%2C+and+tangent&video_ids=sjUhr0HkLUg%2C08zHioOVTd4%2CFK6-tZ5D7xM">30m 41s</a> )</li>
<li><a href="https://da.khanacademy.org/math/trigonometry/trig-function-graphs/intro-to-amplitude-and-midline-of-sinusoids">Introduction to amplitude, midline, and extrema of sinusoidal functions</a> (2 Exercises, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Introduction+to+amplitude%2C+midline%2C+and+extrema+of+sinusoidal+functions&video_ids=s4cLM0l1gd4">4m 58s</a> )</li>
<li><a href="https://da.khanacademy.org/math/trigonometry/trig-function-graphs/amplitude-and-midline-of-sinusoids-from-formulas">Finding amplitude and midline of sinusoidal functions from their formulas</a> (2 Exercises, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Finding+amplitude+and+midline+of+sinusoidal+functions+from+their+formulas&video_ids=SBqnRja4CW4">8m 21s</a> )</li>
<li><a href="https://da.khanacademy.org/math/trigonometry/trig-function-graphs/period-of-sinusoids">Period of sinusoidal functions</a> (1 Article, 2 Exercises, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Period+of+sinusoidal+functions&video_ids=SBqnRja4CW4">8m 21s</a> )</li>
<li><a href="https://da.khanacademy.org/math/trigonometry/trig-function-graphs/graphing-sinusoids">Graphing sinusoidal functions</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Graphing+sinusoidal+functions&video_ids=0zCcFSO8ouE%2CuBVhtGL9y88">23m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/math/trigonometry/trig-function-graphs/constructing-sinusoids">Constructing sinusoidal functions</a> (3 Exercises, 1 Quiz, 1 Test, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Constructing+sinusoidal+functions&video_ids=yHo0CcDVHsk%2CRX0DY9eRp8g%2CmVlCXkht6hg%2CMJBjGnR6vlk">31m 9s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/trigonometry/trig-equations-and-identities">Trigonometriske ligninger og identiteter</a> (7 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/trigonometry/trig-equations-and-identities/inverse-trig-functions">The inverse trigonometric functions</a> (1 Article, 1 Exercise, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=The+inverse+trigonometric+functions&video_ids=JGU74wbZMLg%2CIdxeo49szW0%2CeTDaJ4ebK28%2CtCV9VyIIaw0%2CQGfdhqbilY8%2CMABWdzmZFIQ">53m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/math/trigonometry/trig-equations-and-identities/basic-sinusoidal-equations">Solving basic sinusoidal equations</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Solving+basic+sinusoidal+equations&video_ids=NC7iWEQ9Kug%2CSdHwokUU8xI">11m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/math/trigonometry/trig-equations-and-identities/solving-sinusoidal-models">Solving sinusoidal models</a> (1 Article, 1 Exercise, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Solving+sinusoidal+models&video_ids=2pwnr_soZEU">8m 23s</a> )</li>
<li><a href="https://da.khanacademy.org/math/trigonometry/trig-equations-and-identities/intro-to-trig-angle-addition-identities">Introduction to the trigonometric angle addition identities</a> (1 Exercise, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduction+to+the+trigonometric+angle+addition+identities&video_ids=a70-dYvDJZY%2Ch0SNEO25vIw%2CD_smr0GBPvA%2CR0EQg9vgbQw%2C0VBQnR2h8XM">34m 17s</a> )</li>
<li><a href="https://da.khanacademy.org/math/trigonometry/trig-equations-and-identities/using-trig-identities">Using trigonometric identities to solve problems</a> (1 Article, 1 Exercise, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Using+trigonometric+identities+to+solve+problems&video_ids=2RbKfRfzD-M%2CsI789G6FBb4%2CyV4Xa8Xtmrc%2C4OEeVLo5V1o">23m 14s</a> )</li>
<li><a href="https://da.khanacademy.org/math/trigonometry/trig-equations-and-identities/challenge-trig-problems">Challenging trigonometry problems</a> (1 Test, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Challenging+trigonometry+problems&video_ids=smtrrefmC40%2CEc-BKdC8vOo%2CXGpEHj43kcc%2CX7GT9JKoAbo%2CtzR9jUCSniQ%2CEjtjdJZ2x8w%2CY2ed-g8Lpdc">1h 31m 5s</a> )</li>
</ul></li>
</ul>
<h2 id="statistik-gymnasie-niveau-7-topics"><a href="https://da.khanacademy.org/math/probability">Statistik (gymnasie-niveau)</a> (7 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/math/probability/scatterplots-a1">Scatterplots - Algebra I</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/probability/scatterplots-a1/creating-interpreting-scatterplots">Creating and interpreting scatterplots</a> (1 Article, 5 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Creating+and+interpreting+scatterplots&video_ids=YJHY_UW73H8%2CJpbm5YgciqI%2C-Y-M9aD_ccQ%2CROpbdO-gRUo">23m 4s</a> )</li>
<li><a href="https://da.khanacademy.org/math/probability/scatterplots-a1/estimating-trend-lines">Estimating with trend lines</a> (1 Article, 4 Exercises, 1 Quiz, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Estimating+with+trend+lines&video_ids=s3yLJcc3FFg%2CGJ9a242mvhk%2CEIYZqGxf0jE">9m 32s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/probability/data-distributions-a1">Data distributions</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/probability/data-distributions-a1/displays-of-distributions">Displays of distributions</a> (5 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Displays+of+distributions&video_ids=gdE46YSedvE%2CgSEYtAjuZ-Y%2Cc02vjunQsJM%2C2oJldeE4JcU">24m 17s</a> )</li>
<li><a href="https://da.khanacademy.org/math/probability/data-distributions-a1/summarizing-center-distributions">Summarizing distributions</a> (1 Article, 3 Exercises, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Summarizing+distributions&video_ids=stYEeTRVBb0%2Ck3aKKasOmIw%2CqpbaglogObM%2C-2OOBEBq9-4%2CK1y6Tz_E7oA">27m 45s</a> )</li>
<li><a href="https://da.khanacademy.org/math/probability/data-distributions-a1/summarizing-spread-distributions">Summarizing spread of distributions</a> (3 Articles, 2 Exercises, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Summarizing+spread+of+distributions&video_ids=qLYYHWYr8xI%2CE4HAYd0QnRc">18m 46s</a> )</li>
<li><a href="https://da.khanacademy.org/math/probability/data-distributions-a1/box--whisker-plots-a1">Kassediagrammer</a> (3 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Kassediagrammer&video_ids=H_amIF0bi3k%2CPAxifQ0CC9g%2CoBREri10ZHk">19m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/math/probability/data-distributions-a1/comparing-distributions">Sammenligning af fordelinger</a> (1 Exercise, 1 Test, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Sammenligning+af+fordelinger&video_ids=wCw-Fs6kdAE">4m</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/probability/two-way-tables-categorical-data-a1">Two-way tables and categorical data</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/probability/two-way-tables-categorical-data-a1/two-way-relative-frequency-tables">Two-way relative frequency tables</a> (1 Article, 3 Exercises, 1 Test, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Two-way+relative+frequency+tables&video_ids=_ETPMszULXc%2CMarqSlyz-lU">6m 12s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/probability/study-design-a1">Study Design</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/probability/study-design-a1/samples-surveys">Samples and surveys</a> (1 Article, 2 Exercises, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Samples+and+surveys&video_ids=Xexk_EfAKZg">4m 17s</a> )</li>
<li><a href="https://da.khanacademy.org/math/probability/study-design-a1/observational-studies-experiments">Observational studies and experiments</a> (1 Article, 1 Exercise, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Observational+studies+and+experiments&video_ids=z-Qi4w6Xkuc%2CROpbdO-gRUo%2CRQPC_rUvHas">25m 56s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/probability/probability-geometry">Probability</a> (10 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/probability/probability-geometry/probability-basics">Probability basics</a> (2 Articles, 5 Exercises, 1 Quiz, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Probability+basics&video_ids=Xr2ncNRWkgc%2CLLT7cz22OYc%2C-RaiEnhq5uc%2CRdehfQJ8i_0%2CtXlcE_K_C-Y%2C8bK-xfh8-rY%2CKFgvOQtH0Z0%2CBIpsQIJUCC8">56m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/math/probability/probability-geometry/counting-permutations">Counting with permutations</a> (2 Exercises, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Counting+with+permutations&video_ids=B_vAlneziHo%2CIZnVrj0sOss%2CDROZVHObeko%2CVYbqG2NuOo8%2CoQpKtm5TtxU%2Cv9NLtiVt3XY">26m 24s</a> )</li>
<li><a href="https://da.khanacademy.org/math/probability/probability-geometry/counting-combinations">Counting with combinations</a> (1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Counting+with+combinations&video_ids=iKy-d5_erhI%2Cp8vIcmr_Pqo%2CboH4l1SgJbM%2CSbpoyXTpC84">32m 46s</a> )</li>
<li><a href="https://da.khanacademy.org/math/probability/probability-geometry/probability-counting-permutations-combinations">Probability with counting, permutations, combinations</a> (1 Exercise, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Probability+with+counting%2C+permutations%2C+combinations&video_ids=3_otNr9kRuY%2C3UlE8gyKbkU%2Cl9ft9jpriNA%2CccrYD6iX_SY%2CgyqodNhM3EU">23m 7s</a> )</li>
<li><a href="https://da.khanacademy.org/math/probability/probability-geometry/multiplication-rule-independent-events">Multiplication rule for independent events</a> (2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Multiplication+rule+for+independent+events&video_ids=rG4n5oofoaQ%2Co6Zz0VTQViw%2CiMqCSgqzmiQ">17m 49s</a> )</li>
<li><a href="https://da.khanacademy.org/math/probability/probability-geometry/multiplication-rule-dependent-events">Multiplication rule for dependent events</a> (1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Multiplication+rule+for+dependent+events&video_ids=SILImBaNFDs%2C4TQ97JtRado%2C0osiIsN4xgs">18m 18s</a> )</li>
<li><a href="https://da.khanacademy.org/math/probability/probability-geometry/addition-rule-for-probability">Additionsregel for sandsynligheder</a> (1 Article, 1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Additionsregel+for+sandsynligheder&video_ids=obZzOq_wSCg%2CQE2uR6Z-NcU">20m 45s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/probability/binomial-probability-a2">Binomial probability</a> (1 Topic)
<ul>
<li><a href="https://da.khanacademy.org/math/probability/binomial-probability-a2/binomial-probability-a2i">Binomial probability</a> (1 Article, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Binomial+probability&video_ids=Ctytn4a6zjw%2CefE8xuvUjAo%2CeL965_Lscb8%2Cy2G03Lumhe0">27m 38s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/probability/normal-distributions-a2">Normal distributions</a> (1 Topic)
<ul>
<li><a href="https://da.khanacademy.org/math/probability/normal-distributions-a2/normal-distributions-a2ii">Normal distributions</a> (1 Article, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Normal+distributions&video_ids=OhRr26AfFBU%2C79duxPXpyKQ">21m 18s</a> )</li>
</ul></li>
</ul>
<h2 id="precalculus-7-topics"><a href="https://da.khanacademy.org/math/precalculus-2018">Precalculus</a> (7 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/trig-equations-and-identities-precalc">Trigonometry | Precalculus | Khan Academy</a> (6 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/trig-equations-and-identities-precalc/inverse-trig-functions-precalc">The inverse trigonometric functions</a> (1 Article, 1 Exercise, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=The+inverse+trigonometric+functions&video_ids=JGU74wbZMLg%2CIdxeo49szW0%2CeTDaJ4ebK28%2CtCV9VyIIaw0%2CQGfdhqbilY8%2CMABWdzmZFIQ">53m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/trig-equations-and-identities-precalc/basic-sinusoidal-equations-precalc">Copy of Solving basic sinusoidal equations</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Copy+of+Solving+basic+sinusoidal+equations&video_ids=NC7iWEQ9Kug%2CSdHwokUU8xI">11m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/trig-equations-and-identities-precalc/solving-sinusoidal-models-precalc">Solving sinusoidal models</a> (1 Article, 1 Exercise, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Solving+sinusoidal+models&video_ids=2pwnr_soZEU">8m 23s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/trig-equations-and-identities-precalc/intro-to-trig-angle-addition-identities-precalc">Introduction to the trigonometric angle addition identities</a> (1 Exercise, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduction+to+the+trigonometric+angle+addition+identities&video_ids=a70-dYvDJZY%2Ch0SNEO25vIw%2CD_smr0GBPvA%2CR0EQg9vgbQw%2C0VBQnR2h8XM">34m 17s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/trig-equations-and-identities-precalc/using-trig-identities-precalc">Using trigonometric identities to solve problems</a> (1 Article, 1 Exercise, 1 Quiz, 1 Test, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Using+trigonometric+identities+to+solve+problems&video_ids=2RbKfRfzD-M%2CsI789G6FBb4%2CyV4Xa8Xtmrc%2C4OEeVLo5V1o">23m 14s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/conics-precalc">Conic sections | Precalculus | Khan Academy</a> (12 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/conics-precalc/conic-section-intro">Introduktion til keglesnit</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+keglesnit&video_ids=0A7RR0oy2ho">10m 58s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/conics-precalc/features-of-a-circle">The features of a circle</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=The+features+of+a+circle&video_ids=LDjMDIuTWtM%2CSLyM_-sQwMM">5m 59s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/conics-precalc/standard-equation-circle">Standard equation of a circle</a> (3 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Standard+equation+of+a+circle&video_ids=JvDpYlyKkNU%2CthDrJvWNI8M%2CiX5UgArMyiI">14m 45s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/conics-precalc/expanded-equation-circle">Expanded equation of a circle</a> (1 Article, 2 Exercises, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Expanded+equation+of+a+circle&video_ids=XyDMsotfJhE">4m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/conics-precalc/center-and-radii-of-an-ellipse">Center and radii of an ellipse</a> (2 Articles, 3 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Center+and+radii+of+an+ellipse&video_ids=lvAYFUIEpFI%2C_JrQF8Rkaio%2Ch5dIVNjVjXg">19m 29s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/conics-precalc/foci-of-an-ellipse">Brændpunkter for en ellipse</a> (1 Article, 3 Exercises, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Br%C3%A6ndpunkter+for+en+ellipse&video_ids=QR2vxfwiHAU">13m 49s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/conics-precalc/focus-and-directrix-of-a-parabola">Focus and directrix of a parabola</a> (1 Article, 1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Focus+and+directrix+of+a+parabola&video_ids=pe8Dm_FUpdU%2CokXVhDMuGFg%2Cw56Vuf9tHfA">25m 24s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/conics-precalc/intro-to-hyperbolas">Introduction to hyperbolas</a> (1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduction+to+hyperbolas&video_ids=pzSyOTkAsY4%2CoO3nWnJppqg%2ChnVFThmLW5Q%2Chl58vTCqVIY">28m 40s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/conics-precalc/foci-of-a-hyperbola">Brændpunkter for en hyperbel</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Br%C3%A6ndpunkter+for+en+hyperbel&video_ids=S0Fd2Tg2v7M%2CHPRFmu7JsKU">30m 14s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/conics-precalc/hyperbolas-not-centered-at-the-origin">Hyperbolas not centered at the origin</a> (1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Hyperbolas+not+centered+at+the+origin&video_ids=lGQw-W1PxBE">10m 29s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/conics-precalc/identifying-conic-sections-from-expanded-equations">Identifying conic sections from their expanded equations</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Identifying+conic+sections+from+their+expanded+equations&video_ids=Dru0RHgfp2g%2CLSJuu4Qm2qQ%2CcvA4VN1dpuY">32m 13s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/conics-precalc/jee-hyperbolas">Challenging conic section problems (IIT JEE)</a> (1 Test, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Challenging+conic+section+problems+%28IIT+JEE%29&video_ids=c_8QQbVQKU0%2CMhLfun2Vask%2C0imeUgSxR10%2CRomnHMWSLoE%2CeGo8C2Jshzs%2CrPoqpQcgNv4%2C6g3DPg2HqGw">1h 11m 37s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/vectors-precalc">Vektorer</a> (10 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/vectors-precalc/vector-basic">Grundlæggende om vektorer</a> (1 Article, 2 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Grundl%C3%A6ggende+om+vektorer&video_ids=ihNZlp7iUHE%2Cn8Ic2Oj-zvA%2Cv_W-aaB1irs%2CBmDph4uNfPI%2Cv7ZZ1ctT1k0">24m 5s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/vectors-precalc/magnitude-vectors">Magnitude of vectors</a> (1 Exercise, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Magnitude+of+vectors&video_ids=-U53eHKCLcg%2CqMZnsj4ZO9g%2CjfaSZhNFEOE">12m 7s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/vectors-precalc/scalar-multiplication">Skalarmultiplikation</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Skalarmultiplikation&video_ids=JuTvjQgpUMQ%2CkLLsJXc1E1E">10m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/vectors-precalc/vector-addition-subtraction">Vector addition and subtraction</a> (2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Vector+addition+and+subtraction&video_ids=VgqsM-XdBD0%2CBsBH8nAv5l4%2CcoDfeoi2zcQ%2C8QihetGj3pg">23m</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/vectors-precalc/combined-vector-operations">Combined vector operations</a> (1 Article, 1 Exercise, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Combined+vector+operations&video_ids=TdhbEonaHrc">5m 59s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/vectors-precalc/unit-vectors">Enhedsvektorer</a> (1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Enhedsvektorer&video_ids=9ylUcCOTH8Y%2CjCkhbKFZgLk%2COFBI_rNDZE0">15m 54s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/vectors-precalc/magnitude-direction">Vectors in magnitude and direction form</a> (1 Article, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Vectors+in+magnitude+and+direction+form&video_ids=A3OuFLHum6w%2CEX0Ha42WQ24">15m 43s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/vectors-precalc/component-form-of-vectors">Component form of vectors</a> (2 Articles, 1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Component+form+of+vectors&video_ids=MkFbisCyjFc">10m 16s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/vectors-precalc/adding-vectors-in-magnitude-and-direction-form">Addition af vektorer på formen med længde og retning</a> (2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Addition+af+vektorer+p%C3%A5+formen+med+l%C3%A6ngde+og+retning&video_ids=6Kw2nIwWYL0%2CSjY5UytlTTs%2C0t8W4JFpP2M">22m 59s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/vectors-precalc/applications-of-vectors">Applications of vectors</a> (1 Exercise, 1 Quiz, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Applications+of+vectors&video_ids=9A8wM1UMLyo%2CKNklNvGof8o%2Ccf1-CwrDwrA">24m 36s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/precalc-matrices">Matricer</a> (16 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/precalc-matrices/intro-to-matrices">Introduction to matrices</a> (1 Article, 2 Exercises, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Introduction+to+matrices&video_ids=0oGJTQCy4cQ">4m 29s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/precalc-matrices/row-echelon-and-gaussian-elimination">Row-echelon form and Gaussian elimination</a> (1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Row-echelon+form+and+Gaussian+elimination&video_ids=lP1DGtZ8Wys">7m 37s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/precalc-matrices/adding-and-subtracting-matrices">Adding and subtracting matrices</a> (1 Article, 2 Exercises, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Adding+and+subtracting+matrices&video_ids=WR9qCSXJlyY">5m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/precalc-matrices/multiplying-matrices-by-scalars">Multiplying matrices by scalars</a> (1 Article, 2 Exercises, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Multiplying+matrices+by+scalars&video_ids=TbaltFbJ3wE">2m 18s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/precalc-matrices/multiplying-matrices-by-matrices">Multiplying matrices by matrices</a> (1 Article, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Multiplying+matrices+by+matrices&video_ids=kT4Mp9EdVqs%2COMA2Mwo0aZg">11m 56s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/precalc-matrices/properties-of-matrix-multiplication">Egenskaber for matrixmultiplikation</a> (3 Articles, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Egenskaber+for+matrixmultiplikation&video_ids=O1-9f1g0OsI%2C3cnIa0fYJkY%2Cl7p1X5pdDoc%2Cz-SU7P-gIoQ%2C8Ryfe82DTcM%2CLOf8bfjiLow%2COjF765iVuF8%2CikadoCpDNT8">43m 34s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/precalc-matrices/matrices-as-transformations">Matrices as transformations</a> (2 Articles, 3 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Matrices+as+transformations&video_ids=Kh8HKAxdEyw%2CRKBSX-6pKgY%2C3tyM_M3FQNM">18m 6s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/precalc-matrices/determinant-of-2x2-matrix">The determinant of a 2x2 matrix</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=The+determinant+of+a+2x2+matrix&video_ids=OU9sWHk_dlw">1m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/precalc-matrices/intro-to-matrix-inverses">Introduction to matrix inverses</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduction+to+matrix+inverses&video_ids=iUQR0enP7RQ%2CUqyN7-tRS00">28m 41s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/precalc-matrices/finding-inverse-matrix-with-determinant">Finding the inverse of a matrix using its determinant</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Finding+the+inverse+of+a+matrix+using+its+determinant&video_ids=01c12NaUQDw">2m 48s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/precalc-matrices/solving-equations-with-inverse-matrices">Solving equations with inverse matrices</a> (1 Exercise, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Solving+equations+with+inverse+matrices&video_ids=EC2mgUZyzoA%2C0_DYEFtlCiM%2CgsNgdVdAT1o">30m 55s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/precalc-matrices/model-situations-with-matrices">Model real-world situations with matrices</a> (1 Test, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Model+real-world+situations+with+matrices&video_ids=PPOIlLhsT6s">5m 43s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/imaginary-and-complex-numbers">Complex numbers | Precalculus | Khan Academy</a> (11 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/imaginary-and-complex-numbers/the-imaginary-numbers">What are the imaginary numbers?</a> (2 Articles, 2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=What+are+the+imaginary+numbers%3F&video_ids=ysVcAYo7UPI%2CQiwfF83NWNA%2Cs03qez-6JMA%2CrYG1D5lUE4I">22m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/imaginary-and-complex-numbers/the-complex-numbers">What are the complex numbers?</a> (1 Article, 2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=What+are+the+complex+numbers%3F&video_ids=SP-YJe7Vldo%2CA_ESfuN1Pkg">9m 23s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/imaginary-and-complex-numbers/the-complex-plane">Det komplekse plan</a> (1 Article, 1 Exercise, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Det+komplekse+plan&video_ids=kGzXIbauGQk">1m 14s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/imaginary-and-complex-numbers/adding-and-subtracting-complex-numbers">At lægge komplekse tal sammen og trække dem fra</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=At+l%C3%A6gge+komplekse+tal+sammen+og+tr%C3%A6kke+dem+fra&video_ids=SfbjqVyQljk%2CtvXRaZbIjO8">3m 4s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/imaginary-and-complex-numbers/distance-and-midpoint-of-complex-numbers">Distance and midpoint of complex numbers</a> (2 Exercises, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Distance+and+midpoint+of+complex+numbers&video_ids=Efoeqb6tC88">6m 11s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/imaginary-and-complex-numbers/multiplying-complex-numbers">Multiplikation af komplekse tal</a> (2 Articles, 2 Exercises, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Multiplikation+af+komplekse+tal&video_ids=cWn6g8Qqvs4">5m 32s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/imaginary-and-complex-numbers/complex-conjugates-and-dividing-complex-numbers">Complex conjugates and dividing complex numbers</a> (1 Article, 2 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Complex+conjugates+and+dividing+complex+numbers&video_ids=BZxZ_eEuJBM%2CdbxJ6LD0344%2CZ8j5RDOibV4">17m 2s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/imaginary-and-complex-numbers/absolute-value-and-angle-of-complex-numbers">Absolute value and angle of complex numbers</a> (1 Article, 3 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Absolute+value+and+angle+of+complex+numbers&video_ids=yvzyC4VBpUU%2CFwuPXchH2rA">16m 37s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/imaginary-and-complex-numbers/polar-form-of-complex-numbers">Polar form of complex numbers</a> (1 Article, 1 Exercise, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Polar+form+of+complex+numbers&video_ids=8RasCV_Lggg">12m 16s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/imaginary-and-complex-numbers/multiplying-and-dividing-complex-numbers-in-polar-form">Multiplying and dividing complex numbers in polar form</a> (3 Articles, 2 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Multiplying+and+dividing+complex+numbers+in+polar+form&video_ids=xOa-l_tXgWA%2Cdl_9NC_J6yo%2CN0Y8ia57C24">25m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/imaginary-and-complex-numbers/complex-number-challenge">Udfordrende opgave med komplekse tal</a> (1 Test, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Udfordrende+opgave+med+komplekse+tal&video_ids=_5ei_I02huY%2CpQwoBOpVoWw%2CFwA_UZkI-JM%2CE7OkUomRq1Q">30m 54s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/prob-comb">Sandsynlighed og kombinatorik</a> (8 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/prob-comb/basic-prob-precalc">Grundlæggende sandsynlighedsregning</a> (1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Grundl%C3%A6ggende+sandsynlighedsregning&video_ids=Xr2ncNRWkgc%2CLLT7cz22OYc%2C-RaiEnhq5uc">21m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/prob-comb/addition-rule-prob-precalc">Venn-diagrammer og plusreglen</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Venn-diagrammer+og+plusreglen&video_ids=obZzOq_wSCg%2CQE2uR6Z-NcU">20m 45s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/prob-comb/independent-events-precalc">Compound probability of independent events using diagrams</a> (1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Compound+probability+of+independent+events+using+diagrams&video_ids=7buVWpT1XtA%2C3_otNr9kRuY%2C4fBXIcO0It4">9m 48s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/prob-comb/compound-probability-of-ind-events-using-mult-rule">Compound probability of independent events using the multiplication rule</a> (1 Exercise, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Compound+probability+of+independent+events+using+the+multiplication+rule&video_ids=rG4n5oofoaQ%2CtDJICydPesk%2Co6Zz0VTQViw%2Cp53MyEjQmxw%2CCZ1pdsU4NnI%2CiMqCSgqzmiQ%2CPddbEVNMgTY">44m 22s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/prob-comb/dependent-events-precalc">Afhængige hændelser</a> (1 Exercise, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Afh%C3%A6ngige+h%C3%A6ndelser&video_ids=SILImBaNFDs%2C0osiIsN4xgs%2CUjpLC29_5ug%2C4TQ97JtRado%2C9MbmY57aclM">32m 15s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/prob-comb/combinatorics-precalc">Permutationer</a> (1 Exercise, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Permutationer&video_ids=eoxbgUIYhHo%2CDROZVHObeko%2CVYbqG2NuOo8%2CHGoZfzz6dU0%2CoQpKtm5TtxU%2Cv9NLtiVt3XY">29m 41s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/prob-comb/combinations">Kombinationer</a> (2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Kombinationer&video_ids=iKy-d5_erhI%2Cp8vIcmr_Pqo%2CboH4l1SgJbM%2CSbpoyXTpC84">32m 46s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/prob-comb/prob-combinatorics-precalc">Sandsynlighedsregning med kombinatorik</a> (1 Exercise, 1 Quiz, 1 Test, 11 Videos | <a href="https://www.youtube.com/watch_videos?title=Sandsynlighedsregning+med+kombinatorik&video_ids=Xqfcy1rqMbI%2CW7DmsJKLoxc%2C3_otNr9kRuY%2C8TIben0bJpU%2CudG9KhNMKJw%2CAOsWph2FNLw%2Cl9ft9jpriNA%2CccrYD6iX_SY%2CDIjlllgq3dc%2CgyqodNhM3EU%2C9G0w61pZPig">1h 27m 36s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/seq-induction">Series | Precalculus | Khan Academy</a> (6 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/seq-induction/sequences-review">Aritmetiske serier</a> (4 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Aritmetiske+serier&video_ids=KRFiAlo7t1E%2C_cooC3yG_p0%2CgkQjmcX2VjI%2CViLt2WI0XSg">30m 18s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/seq-induction/sigma-notation">Sigma notation</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Sigma+notation&video_ids=5jwXThH6fg4">4m 27s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/seq-induction/seq-and-series">Sekvenser og serier</a> (2 Articles, 1 Exercise, 1 Quiz, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Sekvenser+og+serier&video_ids=cYw4MFWsB6c%2CUy_L8tnihDM%2CRM644gFKo_g%2C0-wa7voc0uM%2CpIO34mrW_Ro%2C1wnIsgUivEQ">34m 25s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/seq-induction/precalc-geometric-sequences">Geometriske rækker</a> (6 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Geometriske+r%C3%A6kker&video_ids=pXo0bG4iAyg%2CdIGLhLMsy2U%2C8a1a5A3CfdQ%2CIq7a2vEsT-o">29m 32s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/seq-induction/geometric-sequence-series">Endelige geometriske rækker</a> (1 Exercise, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Endelige+geometriske+r%C3%A6kker&video_ids=rcRg_gO7-7E%2CCecgFWTg9pQ%2CCf0-6ngH2gs%2CAXP5PGSaaYk%2CDY9Q3qNmZnw">24m 19s</a> )</li>
<li><a href="https://da.khanacademy.org/math/precalculus-2018/seq-induction/finite-geometric-series-word-problems">Endelige geometriske rækker - tekstopgaver</a> (1 Exercise, 1 Quiz, 1 Test, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Endelige+geometriske+r%C3%A6kker+-+tekstopgaver&video_ids=aIjzkiijGnA%2Ci05-okb1EJg">25m 39s</a> )</li>
</ul></li>
</ul>
<h2 id="differentialregning-6-topics"><a href="https://da.khanacademy.org/math/differential-calculus">Differentialregning</a> (6 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-limits">Limits and continuity</a> (18 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-limits/dc-limits-intro">Limits intro</a> (1 Article, 1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Limits+intro&video_ids=riXcZT2ICjA">11m 32s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-limits/dc-limits-from-graphs">Estimering af grænseværdier fra grafer</a> (1 Article, 3 Exercises, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Estimering+af+gr%C3%A6nsev%C3%A6rdier+fra+grafer&video_ids=mols6pMKrto%2C56qtGRCd8bE%2CnOnd3SiYZqM%2C5f1-Rg3MmKs%2Cl6FX_r_Tkls%2C_WOr9-_HbAM">30m 30s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-limits/dc-limits-from-tables">Estimating limits from tables</a> (1 Article, 3 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Estimating+limits+from+tables&video_ids=1tn0vd2835k%2CzX49LocrXbg%2C9geXUOXTJJQ">14m 11s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-limits/dc-epsilon-delta">Formal definition of limits (epsilon-delta)</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Formal+definition+of+limits+%28epsilon-delta%29&video_ids=5i8HLmVTcRQ%2Cljzn4SADuZc%2Cw70af5Ou70M%2C0sCttufU-jQ">25m 11s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-limits/dc-limit-prop">Determining limits using algebraic properties of limits</a> (3 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Determining+limits+using+algebraic+properties+of+limits&video_ids=lSwsAFgWqR8%2CAhnJtTI_DMM%2CXo49w4DDEfQ%2CRgfKNIkpFWc">18m 42s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-limits/dc-direct-substitution">Limits by direct substitution</a> (4 Exercises, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Limits+by+direct+substitution&video_ids=cfOcOgr0E7U%2CJlOyb_RTejo%2C5_zxtSyTfOY%2C2xdh0yKopB8%2CY7sqB1e4RBI">20m 36s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-limits/dc-limits-algebraic">Limits using algebraic manipulation</a> (3 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Limits+using+algebraic+manipulation&video_ids=EAa3J_nDkoI%2CyVWxxQ7SMOw%2Cd8qtbGMB2gI%2ClXShNH1G6Pk">32m 49s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-limits/dc-limit-strategy">Strategy in finding limits</a> (1 Article, 3 Exercises, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Strategy+in+finding+limits&video_ids=ZaLw1cunN3s">12m 31s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-limits/dc-squeeze-theorem">sandwich-bevis (sqeeze theorem)</a> (1 Exercise, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=sandwich-bevis+%28sqeeze+theorem%29&video_ids=WvxKwRcHGHg%2C5xitzTutKqM%2COjtwh8XDF8M">20m 32s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-limits/dc-discontinuities">Types of discontinuities</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Types+of+discontinuities&video_ids=NVGBq_V-F6U">7m 16s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-limits/dc-point-continuity">Continuity at a point</a> (2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Continuity+at+a+point&video_ids=3KMqU5j7irw%2Cjzn4rTPajT0%2CTdVDqWOR3dU%2CLVqv8PBR1is">23m 37s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-limits/dc-interval-continuity">Continuity over an interval</a> (2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Continuity+over+an+interval&video_ids=ENIQiqxFpBc%2CDCWeH62w-NA%2CX51CaI4tfQg">16m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-limits/dc-removing-discontinuity">Removing discontinuities</a> (1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Removing+discontinuities&video_ids=oUgDaEwMbiU%2CP1DJxuG7U9A">10m 17s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-limits/dc-infinite-limits">Infinite limits</a> (2 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Infinite+limits&video_ids=WS-76fFFICY%2C6BwDYdfw9NQ%2CTlWvQvMB9eI%2C_ZGHGDKWpp8%2CAI3aOkafYFw">21m 55s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-limits/dc-limits-at-infinity">Limits at infinity</a> (4 Exercises, 1 Quiz, 9 Videos | <a href="https://www.youtube.com/watch_videos?title=Limits+at+infinity&video_ids=eh_ATp0hbB0%2CH_Nm3qGE65s%2Cgv9ogppphso%2CKcqO1fX9b_I%2Cxks4cETlN58%2CuPksX_O9ARo%2CoAQnDsmu41E%2CwaWYIKAfkWw%2CnDXFgexOM5c">34m 54s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-limits/dc-ivt">Intermediate value theorem</a> (1 Article, 2 Exercises, 1 Quiz, 1 Test, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Intermediate+value+theorem&video_ids=9xgO-EJ3sr0%2CTrQTK-B4bzM%2CB0A2lDzn3yw%2CcSw5R-jdMiI">24m 3s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-diff-intro">Derivatives: definition and basic rules</a> (13 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-diff-intro/dc-diff-calc-intro">Average vs. instantaneous rate of change</a> (1 Article, 3 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Average+vs.+instantaneous+rate+of+change&video_ids=EKvHQc3QEow%2CN2PpRnFqnqY%2C0z_MDIWMBwU%2CS-dcMvJlMJs%2CfqQ6sslzyhY">35m 23s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-diff-intro/dc-secant-lines">Secant lines</a> (2 Exercises, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Secant+lines&video_ids=8r8Vp_1iB4k%2CRaNeCD8t01I%2C0zExhHh7_Ic%2Cl1xdKkIGxOc%2CT3nVKbxEQdo%2CH6ZNLD1AeM8%2CP3IlneCNm8A">35m 56s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-diff-intro/dc-derivative-intro">Derivative definition</a> (1 Article, 1 Exercise, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Derivative+definition&video_ids=ANyVpMS3HL4%2CDf2escG-Vu0%2Cm8yC7kR5Fuk%2CePh8iCbcXfA%2CIePCHjMeFkE%2CHEH_oKNLgUU%2ChoRISaqp1Po">54m 58s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-diff-intro/dc-estimate-derivatives">Estimating derivatives</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Estimating+derivatives&video_ids=jvYZNp5myXg">5m 56s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-diff-intro/dc-differentiability">Differentiability</a> (1 Article, 2 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Differentiability&video_ids=xuAiQOzIkWY%2Cpwh1dK3vTkM%2C_DkttKctXFY%2CBpPHve1cCCs">26m 41s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-diff-intro/dc-power-rule">Potensreglen</a> (1 Article, 3 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Potensreglen&video_ids=bRZmfc1YFsQ%2CH-v4oraDjuM">8m 18s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-diff-intro/dc-basic-diff-rules">Derivative rules: constant, sum, difference, and constant multiple</a> (1 Article, 2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Derivative+rules%3A+constant%2C+sum%2C+difference%2C+and+constant+multiple&video_ids=mzOBlH32qdk%2C4l_IvxXD9o8%2CrOftmuhGLjY">23m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-diff-intro/dc-combine-power-rule-with-others">Combining the power rule with other derivative rules</a> (3 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Combining+the+power+rule+with+other+derivative+rules&video_ids=-CTaxKTzbEI%2CW233qRK6HPs%2Cj9FDoYNxZlw">16m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-diff-intro/dc-more-diff-rules">Derivatives of cos(x), sin(x), 𝑒ˣ, and ln(x)</a> (3 Articles, 2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Derivatives+of+cos%28x%29%2C+sin%28x%29%2C+%F0%9D%91%92%CB%A3%2C+and+ln%28x%29&video_ids=UwFlrPNf5ZE%2CIur13MNO0Ro%2CW_gNAjWWvBg%2CQm1TDobNrns">14m</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-diff-intro/dc-product-rule">Produktregel</a> (2 Articles, 2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Produktregel&video_ids=79ngr0Bur38%2CWxTrxxW0qeM%2CSQUSh1LNjIo%2CxioPD_ldZNY">13m 27s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-diff-intro/dc-quotient-rule">Kvotientreglen</a> (1 Article, 3 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Kvotientreglen&video_ids=WqzY3xibFL8%2CZAElYVh5DXU%2Cwjm5ZYZ4hj8%2CGH8-URjRQpQ%2CC5G2Js2_Ep4">29m 12s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-diff-intro/dc-trig-derivatives">Derivatives of tan(x), cot(x), sec(x), and csc(x)</a> (1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Derivatives+of+tan%28x%29%2C+cot%28x%29%2C+sec%28x%29%2C+and+csc%28x%29&video_ids=Rr_1GQyiRYs%2CTDJ5nXWEkWM">9m 6s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-diff-intro/dc-diff-intro-proofs">Proof videos | Differentiation: definition and basic derivative rules | Differential calculus | Khan Academy</a> (1 Test, 9 Videos | <a href="https://www.youtube.com/watch_videos?title=Proof+videos+%7C+Differentiation%3A+definition+and+basic+derivative+rules+%7C+Differential+calculus+%7C+Khan+Academy&video_ids=eytyVWA5ZQs%2CBYTfCnR9Sl0%2CdZnc3PtNaN4%2C789aMeepbxI%2C5xitzTutKqM%2COjtwh8XDF8M%2CHVvCbnrUxek%2CPszFmdiMUcs%2CL5ErlC0COxI">1h 2m 29s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-chain">Derivatives: chain rule and other advanced topics</a> (12 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-chain/dc-chain-rule">Kædereglen</a> (1 Article, 3 Exercises, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=K%C3%A6dereglen&video_ids=0T0QrHO56qg%2CWVdPekbXSfE%2CMT1-bqKpal8%2CyAFphxolU5w%2CIiBC4ngwH6E%2CG2ZXpbMukEQ%2CbLKTkM-w5ps">44m 13s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-chain/dc-more-chain-rule">More chain rule practice</a> (2 Articles, 2 Exercises, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=More+chain+rule+practice&video_ids=gHzLHknEk1M%2C2XB4K6T-yKo%2CfqYds-feWcw%2CWZPpbkVESVk%2C6QRtLh_THmo%2C-_7td0mDbQs">31m 9s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-chain/dc-implicit-diff">Implicit differentiering</a> (1 Article, 1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Implicit+differentiering&video_ids=mSVrqKZDRF4%2C9uxvm-USEYE%2CKyYC8XzKsHU%2C2CsQ_l1S2_Y">26m 11s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-chain/dc-implicit-diff-advanced">Implicit differentiation (advanced examples)</a> (1 Article, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Implicit+differentiation+%28advanced+examples%29&video_ids=-EG10aI0rt0%2C1DcsREjyoiM%2CZtI94pI4Uzc%2C765X_PAxhAw">20m 24s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-chain/dc-inverse-func-diff">Differentiating inverse functions</a> (1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Differentiating+inverse+functions&video_ids=XOs9vVmzE70%2CUBctoCirje0%2C9Eg97Rtg-pE">15m 2s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-chain/dc-inverse-trig">Derivatives of inverse trigonometric functions</a> (1 Article, 1 Exercise, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Derivatives+of+inverse+trigonometric+functions&video_ids=yIQUhXa-n-M%2Cv_OfFmMRvOc%2CG7WyEp8gHs0">14m 42s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-chain/dc-diff-strategy">Strategy in differentiating functions</a> (1 Article, 2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Strategy+in+differentiating+functions&video_ids=1l4mmTSIbvU%2CAntQBDFOjUw">21m 59s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-chain/dc-diff-with-multiple-rules">Differentiation using multiple rules</a> (2 Exercises, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Differentiation+using+multiple+rules&video_ids=Qgj2_4r3VBs%2CQqAPCIIdx-E%2CeY1LuoSfiys%2CUXQGzgPf1LE%2C1015d63VKh4%2CBkkk0RLSEy8">29m 9s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-chain/dc-second-derivatives">Second derivatives</a> (1 Article, 2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Second+derivatives&video_ids=WC5VYKI807Q%2CoPijG5Bfemg%2CkomjMq5jm9k">12m 4s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-chain/dc-disguised-derivatives">Disguised derivatives</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Disguised+derivatives&video_ids=fUWn_SJSLBk">4m 33s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-chain/dc-logarithmic-diff">Logaritmisk differentiering</a> (1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Logaritmisk+differentiering&video_ids=N5kkwVoAtkc%2CBSrJi9uEJp0">17m 46s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-chain/dc-chain-proofs">Proof videos | Differentiation: composite, implicit, and inverse functions | Differential calculus | Khan Academy</a> (1 Test, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Proof+videos+%7C+Differentiation%3A+composite%2C+implicit%2C+and+inverse+functions+%7C+Differential+calculus+%7C+Khan+Academy&video_ids=eytyVWA5ZQs%2Cl6T4RhlgkG0%2CFKraGDm2fUY%2Cho87DN9wO70">29m</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-context-app">Applications of derivatives</a> (8 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-context-app/dc-interpret-derivatives">Meaning of the derivative in context</a> (1 Article, 1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Meaning+of+the+derivative+in+context&video_ids=IElkjzC9YhQ">4m 53s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-context-app/dc-linear-motion">Straight-line motion | Differential calculus | Khan Academy</a> (2 Exercises, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Straight-line+motion+%7C+Differential+calculus+%7C+Khan+Academy&video_ids=MFrpe4Wm8-g%2CPNBJQ2OtS_4%2ClsufpQEVHZ8%2Cpp08hpkTN-o%2Cb4w0xmuOiQo%2CHDntI7zfBNs">30m</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-context-app/dc-derivative-apps">Non-motion applications of derivatives</a> (1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Non-motion+applications+of+derivatives&video_ids=WbyODj_OiZU%2CWkjz1LlX1CQ">9m 40s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-context-app/dc-related-rates-intro">Introduction to related rates</a> (1 Article, 3 Exercises, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduction+to+related+rates&video_ids=kQF9pOqmS0U%2CTX69hjJpBFk%2ChFRQBhHdINM%2CXwEGKNPLQfQ%2CMj_2fVKWa0k%2CC3MI_mspN3o">38m 42s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-context-app/dc-related-rates">Solving related rates problems</a> (4 Exercises, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Solving+related+rates+problems&video_ids=wV59XWLmv0c%2CkBVDSu7v8os%2CXe6YlrCgkIo%2CcPOjnyjii-4%2C_kbd6troMgA">43m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-context-app/dc-linearization">Approximation with local linearity</a> (1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Approximation+with+local+linearity&video_ids=u7dhn-hBHzQ%2Ch2lARdo7Xko%2CwdQRY3Er7PE%2CvRw4ovZK1CQ">26m 54s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-context-app/dc-lhopital">L’Hôpital’s rule</a> (2 Exercises, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=L%E2%80%99H%C3%B4pital%E2%80%99s+rule&video_ids=PdSzruR5OeE%2CBiVOC3WocXs%2CFJo18AwLfuI%2CMeVFZjT-ABM%2COt0FxL8Vl7I%2CSIB4WDYF5DQ">39m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-context-app/dc-lhopital-composite-exp">L’Hôpital’s rule: composite exponential functions</a> (1 Article, 1 Exercise, 1 Quiz, 1 Test, 1 Video | <a href="https://www.youtube.com/watch_videos?title=L%E2%80%99H%C3%B4pital%E2%80%99s+rule%3A+composite+exponential+functions&video_ids=CDf_aE5yg3A">13m 11s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-analytic-app">Analyzing functions | Differential calculus | Khan Academy</a> (14 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-analytic-app/dc-mvt">Middelværdisætningen</a> (2 Articles, 2 Exercises, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Middelv%C3%A6rdis%C3%A6tningen&video_ids=6hri9k_2R8o%2CS_YIUXy-WFM%2CXg24JhQHVCM%2CPE8NNZG9IYw%2CIJ-obdnR_j8%2CInrLtU3k3Y8">31m 38s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-analytic-app/dc-evt">Extreme value theorem and critical points</a> (1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Extreme+value+theorem+and+critical+points&video_ids=bZYTDst1MOo%2ClDY9JcFaRd4%2CMUQfl385Yug">21m 42s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-analytic-app/dc-increasing-decreasing">Intervals on which a function is increasing or decreasing</a> (1 Article, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Intervals+on+which+a+function+is+increasing+or+decreasing&video_ids=KblYjo1Ijws%2CsOluh1zX5tE">10m 33s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-analytic-app/dc-first-derivative-test">Relative (local) extrema</a> (2 Articles, 1 Exercise, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Relative+%28local%29+extrema&video_ids=Hoyv3-BMAGc%2ClFQ4kMcODzU%2Cx09FpMmGB4A%2C-ihDprWkcY8%2CQcn8A5Ll7g4">27m 59s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-analytic-app/dc-candidates-test">Absolute (global) extrema</a> (1 Article, 2 Exercises, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Absolute+%28global%29+extrema&video_ids=JXVGPEOQCb8%2CXhc7Hens0f8">16m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-analytic-app/dc-concavity-intro">Concavity and inflection points intro</a> (2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Concavity+and+inflection+points+intro&video_ids=LcEqOzNov4E%2Culyyusmpc9w%2CUK2shgCXALo%2CiWgW2nD4wGQ">18m 11s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-analytic-app/dc-analyze-concavity">Analyzing concavity and inflection points</a> (3 Articles, 2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Analyzing+concavity+and+inflection+points&video_ids=72L_N7AtCRE%2CRoxefQ_Qgm8%2CTaRPDFqEd-c%2C1lA1hWdw62Q">25m 4s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-analytic-app/dc-second-derivative-test">Anden afledte test</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Anden+afledte+test&video_ids=-cW5hCsc9Yc">6m 13s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-analytic-app/dc-sketching-curves">Sketching curves</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Sketching+curves&video_ids=hIgnece9ins%2CzC_dTaEY2AY%2CpInFesXIfg8">55m 21s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-analytic-app/dc-connecting-func-derivative">Connecting f, f', and f''</a> (2 Articles, 3 Exercises, 1 Quiz, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Connecting+f%2C+f%27%2C+and+f%27%27&video_ids=qLhZdSNDQ0M%2Ct-RXwwBjxsc%2CYBQUw0NhqgU%2CQgpjYgAAW7o%2CPvZaQZBJzGU%2CelugjT_Np3M%2CG6ReTLn9vLc">32m 9s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-analytic-app/dc-optimization">Solving optimization problems</a> (1 Exercise, 9 Videos | <a href="https://www.youtube.com/watch_videos?title=Solving+optimization+problems&video_ids=1TK8V_qmqrk%2CMC0tq6fNRwU%2CcRboY08YG8g%2Cdam16G6cZ8k%2CtSMuKcN-RKM%2CIFU7Go6Qg6E%2CeS-_ZFzHjYA%2CviaPc8zDcRI%2C5P1O6tBiTlQ">1h 30m</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-analytic-app/dc-implicit-relations">Analyzing implicit relations</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Analyzing+implicit+relations&video_ids=ZhOojHeslhs">2m 55s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-adv-funcs">Parametric equations, polar coordinates, and vector-valued functions</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-adv-funcs/dc-parametric">Parametric equations intro | Differential calculus | Khan Academy</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Parametric+equations+intro+%7C+Differential+calculus+%7C+Khan+Academy&video_ids=m6c6dlmUT1c%2CAXasQLqazWU">16m 43s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-adv-funcs/dc-parametric-second">Second derivatives of parametric equations</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Second+derivatives+of+parametric+equations&video_ids=iHNa1fhV7IA">6m 30s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-adv-funcs/dc-vector-valued-func">Vector-valued functions | Differential calculus | Khan Academy</a> (2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Vector-valued+functions+%7C+Differential+calculus+%7C+Khan+Academy&video_ids=7fYDCUIvZnM%2CE9Q_Lc0g1xE%2C-vv63FS__bY">25m 32s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-adv-funcs/dc-planar-motion">Planar motion | Differential calculus | Khan Academy</a> (2 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Planar+motion+%7C+Differential+calculus+%7C+Khan+Academy&video_ids=HFdeHX_wA4k%2CSv3Y0F0ASZ0%2CnC5UgHDjbcg">16m 49s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-calculus/dc-adv-funcs/dc-polar">Polar functions | Differential calculus | Khan Academy</a> (2 Exercises, 1 Quiz, 1 Test, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Polar+functions+%7C+Differential+calculus+%7C+Khan+Academy&video_ids=8mS9eDHf0fQ%2CConsnUZGfmw">15m 22s</a> )</li>
</ul></li>
</ul>
<h2 id="integralregning-5-topics"><a href="https://da.khanacademy.org/math/integral-calculus">Integralregning</a> (5 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-integration">Integraler</a> (21 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-integration/ic-integral-calc-intro">Accumulations of change introduction</a> (1 Article, 1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Accumulations+of+change+introduction&video_ids=__Uw1SXPW7s%2C0dDIPzqKgYk%2Cokjt-OZY1JU">19m 40s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-integration/ic-riemann-sums">Approximation with Riemann sums</a> (3 Articles, 3 Exercises, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Approximation+with+Riemann+sums&video_ids=dEAk0BHBYCM%2CER5eoDkjsrc%2Cdki2K3Z-1kI%2CXmI80eJZAWM%2CkJ57S0Z4Vp8%2C1p0NHR5w0Lc%2Cv13fraCiLEg">46m 3s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-integration/ic-summation-notation">Summation notation review | Integral calculus | Khan Academy</a> (1 Article, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Summation+notation+review+%7C+Integral+calculus+%7C+Khan+Academy&video_ids=5jwXThH6fg4%2CluSh3hz_b18">9m 48s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-integration/ic-riemann-sums-summation-notation">Riemann sums in summation notation</a> (1 Article, 1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Riemann+sums+in+summation+notation&video_ids=ViqrHGae7FA%2C3ZhUdleD1lQ%2CnaRUWPvsQbQ%2CWeVWv_OEJsY">30m 27s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-integration/ic-definite-integral-definition">Defining integrals with Riemann sums</a> (1 Article, 1 Exercise, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Defining+integrals+with+Riemann+sums&video_ids=CXCtqBlEZ7g%2CeidemLqiPyQ%2CHimr2l8Rd18">16m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-integration/ic-ftc-part-1">Fundamental theorem of calculus and accumulation functions</a> (3 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Fundamental+theorem+of+calculus+and+accumulation+functions&video_ids=C7ducZoLKgw%2CqJMbAfbb_Ek%2CWapSrovs7yM%2CdptES2sb1oc">18m 51s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-integration/ic-connect-function-antiderivative">Interpreting the behavior of accumulation functions</a> (1 Article, 1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Interpreting+the+behavior+of+accumulation+functions&video_ids=51JgTZKnytA">8m 22s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-integration/ic-integral-prop">Egenskaber ved bestemte integraler</a> (1 Article, 3 Exercises, 1 Quiz, 14 Videos | <a href="https://www.youtube.com/watch_videos?title=Egenskaber+ved+bestemte+integraler&video_ids=TtRAY6Eyp4w%2C7R_DTzVHw5Y%2Cq3qvkZxhchE%2CJyArK4jw3XU%2CL5eBJjx2FP8%2CJUouea9XoF8%2CpRZzfoM-9lc%2CBE1FK7vDVq0%2Ch6mZLTpTHcU%2Cw00eCt3i9KM%2CKq5hqFg17bg%2CTqGCNNlx6pU%2C0z52CLjC2C0%2CW20SoZiJOHU">1h 6m 31s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-integration/ic-ftc-part-2">Fundamental theorem of calculus and definite integrals</a> (1 Article, 2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Fundamental+theorem+of+calculus+and+definite+integrals&video_ids=JbfVrwxuPxM%2CMMv-027KEqU">8m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-integration/ic-reverse-power-rule">Reverse power rule</a> (1 Article, 4 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Reverse+power+rule&video_ids=QxbJsg-Vdms%2CYwR_82jgJ_Q%2ChzSef_HVqz4%2CcBi4a1iSaPk">22m 17s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-integration/ic-common-indefinite-integrals">Indefinite integrals of common functions</a> (1 Article, 3 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Indefinite+integrals+of+common+functions&video_ids=sPPjk4aXzmQ%2ChXg-6YgAARk">11m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-integration/ic-common-definite-integrals">Definite integrals of common functions</a> (3 Exercises, 1 Quiz, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Definite+integrals+of+common+functions&video_ids=auOcNZFKfo0%2C4WJUEXIksH0%2C5UWdzPq8_Qs%2CldLdWj6DLTw%2CJMqKtEC2bbY%2Cf5qr1lH6ViU%2CPWcwhA2BwVk">38m 44s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-integration/ic-u-sub">Integrating with u-substitution</a> (3 Articles, 3 Exercises, 11 Videos | <a href="https://www.youtube.com/watch_videos?title=Integrating+with+u-substitution&video_ids=b76wePnIBdU%2CoqCfqIcbE10%2Cr5XXDSOh5Nk%2CrsBALP8QNns%2CZp5z0wa0kgo%2COLO64d4Y1qI%2CpaNqHnR3-aM%2C1ct7LUx23io%2CJ-NC1M6obKo%2CShpI3gPgLBA%2CC5Lbjbyr1t4">1h 3m</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-integration/ic-long-div">Integrating using long division and completing the square</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Integrating+using+long+division+and+completing+the+square&video_ids=5j81gyHn9i0%2C1nXSO3POyZ8">10m 46s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-integration/ic-integration-with-trig-identities">Integrating using trigonometric identities</a> (1 Exercise, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Integrating+using+trigonometric+identities&video_ids=rElAJA9GyL4%2CxSeYS3V5di8%2Cn34jx1FIN8M">16m 12s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-integration/ic-trig-substitution">Trigonometrisk substitution </a> (1 Exercise, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Trigonometrisk+substitution+&video_ids=EV5dhv0A2wU%2C8Yl_u_Otcjg%2Cn4EK92CSuBE%2CnMrJ6nbOQhQ%2CWAoaBTWKLoI%2CCYjAgOTVfZk%2CfD7MbnXbTls%2Csw2p2tUIFpc">1h 7m 7s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-integration/ic-integration-by-parts">Partiel integration</a> (2 Articles, 2 Exercises, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Partiel+integration&video_ids=dh__n9FVKA0%2CbZ8YAHDTFJ8%2Ciw5eLJV0Sj4%2Cn-iEqLhGfd4%2CLJqNdG6Y2cM%2CvS3bpx5ubBI">31m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-integration/ic-partial-frac">Integrating using linear partial fractions</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Integrating+using+linear+partial+fractions&video_ids=Mt92Ozs7aJg">7m 19s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-integration/ic-improper-integrals">Uegentlige integraler</a> (1 Article, 1 Exercise, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Uegentlige+integraler&video_ids=qv7DM5Ph0vU%2C9VqL6POWIoc%2C9JX2s90_RNQ">18m 1s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-integration/ic-integration-proofs">Proof videos | Integration and accumulation of change | Integral calculus | Khan Academy</a> (1 Test, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Proof+videos+%7C+Integration+and+accumulation+of+change+%7C+Integral+calculus+%7C+Khan+Academy&video_ids=pWtt0AvU0KA%2CCz_GWNdf_68">26m 24s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-diff-eq">Differentialligninger</a> (9 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-diff-eq/ic-diff-eq-intro">Differential equations introduction</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Differential+equations+introduction&video_ids=6o7b9yyhH7k%2CH9h-Xg7zjPU">10m 9s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-diff-eq/ic-verify-diff-eq-solutions">Verifying solutions for differential equations</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Verifying+solutions+for+differential+equations&video_ids=KZqg4L--YC0">5m 52s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-diff-eq/ic-sketch-slope-fields">Sketching slope fields</a> (1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Sketching+slope+fields&video_ids=8Amgakx5aII%2CsU5MCM3npXU%2CsPe6qoQFFD8%2CtgS5kgkZNGw">18m 37s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-diff-eq/ic-reason-slope-fields">Reasoning using slope fields</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Reasoning+using+slope+fields&video_ids=LoaagZPWvpM%2C8EA5wv-kQPw">9m 5s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-diff-eq/ic-eulers-method">Approximation with Euler’s method</a> (1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Approximation+with+Euler%E2%80%99s+method&video_ids=q87L9R9v274%2C_-a-yNubpk8">14m 43s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-diff-eq/ic-separation-of-vars">Separation of variables</a> (2 Articles, 3 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Separation+of+variables&video_ids=DL-ozRGDlkY%2CKQ7Y31QgX_w%2CUAcRCt9pEDI%2C6vUjGgI8Dso">23m 11s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-diff-eq/ic-diff-eq-particular-solutions">Particular solutions to differential equations</a> (2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Particular+solutions+to+differential+equations&video_ids=bjdOWH43-9s%2CT8rbpI4OZCc%2CE444KhRcWSk%2C72xChzYjJdM">16m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-diff-eq/ic-exp-models">Exponential models | Differential equations | Khan Academy</a> (2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Exponential+models+%7C+Differential+equations+%7C+Khan+Academy&video_ids=IYFkXWlgC_w%2C6jqx5uEBs5U%2CpRuwcphjJeg">17m 1s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-diff-eq/ic-logistic-models">Logistic models | Differential equations | Khan Academy</a> (1 Exercise, 1 Quiz, 1 Test, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Logistic+models++%7C+Differential+equations+%7C+Khan+Academy&video_ids=_JpS8k1a9yE%2CoiDvNs15tkE%2CkDZlMFkKhWA%2Cj_Taf2Tgggo%2CNU1v-8VRirU%2C-fIsaqN-aaQ">1h 2m 23s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-int-app">Applications of integrals</a> (14 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-int-app/ic-avg-value">Gennemsnitlig værdi af en funktion</a> (1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Gennemsnitlig+v%C3%A6rdi+af+en+funktion&video_ids=NCF4m8BDs7w%2C0rzL08BHr5c%2C59UeshgSuEE">18m 58s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-int-app/ic-linear-motion">Straight-line motion | Integral calculus | Khan Academy</a> (1 Article, 2 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Straight-line+motion+%7C+Integral+calculus+%7C+Khan+Academy&video_ids=Sy_7PkoTCtA%2CM7IZClYqdEo%2CIh-NVgXuTnQ%2CsLw902V40L0%2CwdAgEzdkFZI">27m 32s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-int-app/ic-integral-apps">Non-motion applications of integrals</a> (1 Article, 3 Exercises, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Non-motion+applications+of+integrals&video_ids=6FTiHeius1c%2C5-qpfFTaY8c%2CFWcXFU8Zj8U%2CU4dtruMdQ7Y%2CvYix-RPhT64">30m 46s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-int-app/ic-vertical-area">Area: vertical area between curves</a> (3 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Area%3A+vertical+area+between+curves&video_ids=xR4AnXDBnsw%2CMM0FTzvedH4%2CwQXYtsyfbqg%2CaaCRnT8o-Ng%2CLbTH7MGMNjk">32m 31s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-int-app/ic-horizontal-area">Area: horizontal area between curves</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Area%3A+horizontal+area+between+curves&video_ids=6XqsLv0QDUE%2CB5441_DREY0">11m 53s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-int-app/ic-vol-squares-rect">Volume: squares and rectangles cross sections</a> (2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Volume%3A+squares+and+rectangles+cross+sections&video_ids=4vLy5VoUcQE%2C_y6zKNoWiKI%2CaYT0Gm-v5T8">15m 52s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-int-app/ic-vol-tri-circle">Volume: triangles and semicircles cross sections</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Volume%3A+triangles+and+semicircles+cross+sections&video_ids=tf4C8x8e7HQ%2CS-agS4YaxxU">16m 51s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-int-app/ic-disc-method-axes">Volume: disc method (revolving around x- and y-axes)</a> (1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Volume%3A+disc+method+%28revolving+around+x-+and+y-axes%29&video_ids=btGaOTXxXs8%2CvmS3cTaxKdA%2C43AS7bPUORc">19m 9s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-int-app/ic-disc-method-non-axes">Volume: disc method (revolving around other axes)</a> (1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Volume%3A+disc+method+%28revolving+around+other+axes%29&video_ids=XdzcU5JbVcA%2Cjxf7XqvZWWg%2CeLdhifUUMmk">20m 24s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-int-app/ic-washer-method-axes">Volume: washer method (revolving around x- and y-axes)</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Volume%3A+washer+method+%28revolving+around+x-+and+y-axes%29&video_ids=vhMl755vR5Q%2CThvc2s9aUP4">17m 38s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-int-app/ic-washer-method-non-axes">Volume: washer method (revolving around other axes)</a> (1 Exercise, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Volume%3A+washer+method+%28revolving+around+other+axes%29&video_ids=OFNGpKGg9IQ%2CLKzpw_HUKNQ%2CWAPZihVUmzE%2Ci-Rb4_n929k">28m 17s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-int-app/ic-arc-length">Buelængde</a> (1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Buel%C3%A6ngde&video_ids=8Y-snjheI9M%2COhISsmqv4_8%2CMtRXjXdXDow">22m 42s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-adv-funcs">Parametric equations, polar coordinates, and vector-valued functions</a> (7 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-adv-funcs/ic-parametric-arc-length">Arc length: parametric curves</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Arc+length%3A+parametric+curves&video_ids=DXHM7LYGcbI%2CF3KyoI26fKI">10m 53s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-adv-funcs/ic-planar-motion">Planar motion | Integral calculus | Khan Academy</a> (1 Exercise, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Planar+motion+%7C+Integral+calculus+%7C+Khan+Academy&video_ids=EZbgMfuh9C8">7m 8s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-adv-funcs/ic-polar-one-region">Area: polar regions (single curve)</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Area%3A+polar+regions+%28single+curve%29&video_ids=qVn_Lfec-Ac%2C-cR6FzM1zNE">12m 57s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-adv-funcs/ic-polar-two-regions">Area: polar regions (two curves)</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Area%3A+polar+regions+%28two+curves%29&video_ids=KwR_ysrv3sg">6m 9s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-adv-funcs/dc-polar-arc-length">Arc length: polar curves</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Arc+length%3A+polar+curves&video_ids=CEPuNmVKnZM%2CsFlH7V7QDbQ">18m 9s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-adv-funcs/ic-polar-calc-active">Calculator-active practice | Parametric equations, polar coordinates, and vector-valued functions | Integral calculus | Khan Academy</a> (1 Exercise, 1 Quiz, 1 Test, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Calculator-active+practice+%7C+Parametric+equations%2C+polar+coordinates%2C+and+vector-valued+functions+%7C+Integral+calculus+%7C+Khan+Academy&video_ids=4tWFdI7DkJ4">2m 59s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-series">Series | Integral calculus | Khan Academy</a> (18 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-series/ic-series-intro">Convergent and divergent infinite series</a> (3 Exercises, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Convergent+and+divergent+infinite+series&video_ids=lfZGtjSWcQs%2CmuqyereWEh4%2Ck9MEOgcc5KY%2CPpuj5gw78Vc%2CqmWJ3nLII1M%2Cbh1UrCGWz1k">28m 3s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-series/ic-geometric-series">Uendelige geometriske rækker</a> (1 Article, 1 Exercise, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Uendelige+geometriske+r%C3%A6kker&video_ids=Sify7Bp7BmI%2CGk1mWXIpasE%2CtqTJZEglrvc%2C2BgWWsypzLA%2CHP8ZTo2iDtw">27m 24s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-series/ic-nth-term-test">nth-term test</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=nth-term+test&video_ids=1yInzfzDDKY">7m 56s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-series/ic-integral-test">Integral test</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Integral+test&video_ids=u1UKIljUWuc%2CxRyXz_UZ14Q">17m 51s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-series/ic-p-series">Harmonic series and p-series</a> (1 Article, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Harmonic+series+and+p-series&video_ids=m6ByHObCs6Y%2CvspcKkcLuuA">8m 5s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-series/ic-comparison-tests">Comparison tests</a> (2 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Comparison+tests&video_ids=0tXxFPHzFFI%2CXoBlfbrdBpQ%2CAtbZZiSLemQ%2C0dWF35WPKfM%2C4yyLfrsSXQQ">27m 41s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-series/ic-alternating-series">Alternerende rækker test</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Alternerende+r%C3%A6kker+test&video_ids=UsMom3yNsX8%2CDPxf4-ta4PM">8m 45s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-series/ic-ratio-test">Forholdstest</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Forholdstest&video_ids=av947KCWf2U">8m 59s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-series/ic-absolute-conditional">Absolute and conditional convergence</a> (1 Exercise, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Absolute+and+conditional+convergence&video_ids=ORTI4kk1okM">5m 1s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-series/ic-alternating-error-bound">Alternating series error bound</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Alternating+series+error+bound&video_ids=gs9O255gdEY%2CvTYxY4IpmF8">19m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-series/ic-taylor-polynomials">Taylor and Maclaurin polynomials intro</a> (1 Exercise, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Taylor+and+Maclaurin+polynomials+intro&video_ids=epgwuzzDHsQ%2C1LxhXqD3_CE%2CtWNxdsWoAd4%2CRRYh4cqv6ZQ%2Ceo9dra_yIbc%2CAFMXixBVP-0">38m 45s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-series/ic-lagrange-error-bound">Lagrange error bound</a> (1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Lagrange+error+bound&video_ids=wgkRH5Uoavk%2CyUUPP70Fhpo%2C2KWifFPOy5s%2CIeHlXGpfaeA">44m 42s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-series/ic-power-series-intro">Power series intro</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Power+series+intro&video_ids=DlBQcj_zQk0%2CoXUJXsoCtDs">15m 15s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-series/ic-function-as-geo-series">Function as a geometric series</a> (1 Exercise, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Function+as+a+geometric+series&video_ids=EXIUYib9d8M%2C6ynr9N-NQ8E%2CNgYrsqoKXpM%2CznT4W6n3WkI%2Caiwy2fNF_ZQ">38m 36s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-series/ic-maclaurin-series">Maclaurin series of eˣ, sin(x), and cos(x)</a> (1 Exercise, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Maclaurin+series+of+e%CB%A3%2C+sin%28x%29%2C+and+cos%28x%29&video_ids=WWe7pZjc4s8%2CLlKvubIqHc8%2CJYQqml4-4q4%2CkXULrUxGzmU%2CBAFOOQxiwkU%2C0BdZZCwDE-I%2C8dMLK2Wueaw%2CmgNtPOgFje0">54m 24s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-series/ic-represent-func-as-series">Representing functions as power series</a> (2 Exercises, 1 Quiz, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Representing+functions+as+power+series&video_ids=dEHZV7q5VV0%2C904esvqoJns%2CixFgd1lFe9g%2CTeIgljoLIxA%2C0DBDuNYsciY%2CyvddTWa9ptU">36m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-series/ic-telescoping-series">Telescoping series</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Telescoping+series&video_ids=qUNGPqCPzMg%2C5LMzbgfZ8cA">17m 24s</a> )</li>
<li><a href="https://da.khanacademy.org/math/integral-calculus/ic-series/ic-series-proofs">Proof videos | Infinite sequences and series | Integral calculus | Khan Academy</a> (1 Test, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Proof+videos+%7C+Infinite+sequences+and+series+%7C+Integral+calculus+%7C+Khan+Academy&video_ids=wzw9ll80Zbc%2C-XRQovTI04Q%2CCf0-6ngH2gs%2CwqnpSzEzq1w%2Cb-7kCymoUpg%2C4WChwIGKdaA">39m 52s</a> )</li>
</ul></li>
</ul>
<h2 id="multivariabel-infinitesimalregning--5-topics"><a href="https://da.khanacademy.org/math/multivariable-calculus">Multivariabel infinitesimalregning </a> (5 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/math/multivariable-calculus/thinking-about-multivariable-function">Thinking about multivariable functions</a> (6 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/multivariable-calculus/thinking-about-multivariable-function/introduction-to-multivariable-calculus">Introduction to multivariable calculus</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Introduction+to+multivariable+calculus&video_ids=TrcCbdWwCBc">6m 2s</a> )</li>
<li><a href="https://da.khanacademy.org/math/multivariable-calculus/thinking-about-multivariable-function/visualizing-scalar-valued-functions">Visualizing scalar-valued functions</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Visualizing+scalar-valued+functions&video_ids=iBgOoaeLUcM%2C2DRmfxkH_VI%2CE9bAwP7iK80%2CWsZj5Rb6do8">24m 59s</a> )</li>
<li><a href="https://da.khanacademy.org/math/multivariable-calculus/thinking-about-multivariable-function/visualizing-vector-valued-functions">Visualizing vector-valued functions</a> (6 Videos | <a href="https://www.youtube.com/watch_videos?title=Visualizing+vector-valued+functions&video_ids=bb4bSCjlFAw%2C345SnWfahhY%2C5FWAVmwMXWg%2CVJ2ZDLQk3IQ%2CGo3UvzbsSGo%2CZiMYRBtDB2M">30m 6s</a> )</li>
<li><a href="https://da.khanacademy.org/math/multivariable-calculus/thinking-about-multivariable-function/multivariable-transformations">Transformationer</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Transformationer&video_ids=roRR6A3TozM%2CRkm0dLTYUuw%2CU2SQXHMqclc">13m 23s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/multivariable-calculus/multivariable-derivatives">Multivariable derivatives</a> (14 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/multivariable-calculus/multivariable-derivatives/partial-derivatives">Partial derivatives</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Partial+derivatives&video_ids=AXqhWeUEtQU%2CdfvnCHqzK54%2CkdMep5GUOBw%2CJ08-L2buigM">32m 51s</a> )</li>
<li><a href="https://da.khanacademy.org/math/multivariable-calculus/multivariable-derivatives/gradient-and-directional-derivatives">Gradient and directional derivatives</a> (7 Videos | <a href="https://www.youtube.com/watch_videos?title=Gradient+and+directional+derivatives&video_ids=tIpKfDc295M%2C_-02ze7tf08%2CZTbTYEMvo10%2CN_ZRcLheNv0%2C4RBkIJPG6Yo%2C4tdyIGIEtNU%2CTEB2z7ZlRAw">51m 14s</a> )</li>
<li><a href="https://da.khanacademy.org/math/multivariable-calculus/multivariable-derivatives/position-vector-functions">Differentiating parametric curves</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Differentiating+parametric+curves&video_ids=7fYDCUIvZnM%2CE9Q_Lc0g1xE%2CFYMn61HLw1k%2CvcwvzUVLPw0">39m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/math/multivariable-calculus/multivariable-derivatives/multivariable-chain-rule">Multivariable chain rule</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Multivariable+chain+rule&video_ids=NO3AqAaAE6o%2ChFvBZf-Jx28%2CqZlBjnC3iro%2Cm2mW2FQJgEE%2C5mMLaK1ByZc">41m 21s</a> )</li>
<li><a href="https://da.khanacademy.org/math/multivariable-calculus/multivariable-derivatives/curvature">Curvature</a> (9 Videos | <a href="https://www.youtube.com/watch_videos?title=Curvature&video_ids=ugtUGhBSeE0%2CgspjhwSNMWs%2CQ-BxnC-uWQo%2C8V4_4M90RfA%2CWmdN_iPhxAI%2C8aHUrjgF6s0%2CAE8NVTyESd8%2CkjNgXVZ1aZ4%2CbiK6_fWLDRc">1h 51s</a> )</li>
<li><a href="https://da.khanacademy.org/math/multivariable-calculus/multivariable-derivatives/partial-derivatives-of-vector-valued-functions">Partielle afledte af vektor-funktioner</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Partielle+afledte+af+vektor-funktioner&video_ids=ln43wOC3iC4%2Ce7Nel0UoXR8%2Clz8L-0SoMo0%2Car9SeJpbPI8%2CVhtFSSq3lXo">34m 55s</a> )</li>
<li><a href="https://da.khanacademy.org/math/multivariable-calculus/multivariable-derivatives/divergence-grant-videos">Divergens</a> (6 Videos | <a href="https://www.youtube.com/watch_videos?title=Divergens&video_ids=c0MR-vWiUPU%2CYeie-aJT2eU%2CuOX7SijjH9w%2CTKlpZ0UUJTQ%2CAlXVrAOls-8%2CTyYlBXNETZE">30m 32s</a> )</li>
<li><a href="https://da.khanacademy.org/math/multivariable-calculus/multivariable-derivatives/curl-grant-videos">Curl</a> (10 Videos | <a href="https://www.youtube.com/watch_videos?title=Curl&video_ids=eEwZeY51mT0%2CqF9Kz37Ksq0%2CcAAEMza4GvQ%2CszLkF7isbI0%2Ch5BmWo5_sc8%2CerMopRd-MXg%2C4yzV8m8X3Kk%2Ca_49iMi10kg%2C0k4tWeI3R0Y%2CGRuEOLcdWjo">59m 57s</a> )</li>
<li><a href="https://da.khanacademy.org/math/multivariable-calculus/multivariable-derivatives/laplacian">Laplacian</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Laplacian&video_ids=EW08rD-GFh0%2CXbCvGRjjzgg%2C6cMn1F6bNPU%2CJQSC0lCPG24">25m 51s</a> )</li>
<li><a href="https://da.khanacademy.org/math/multivariable-calculus/multivariable-derivatives/jacobian">Jacobian</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Jacobian&video_ids=VmfTXVG9S0U%2CVnga_psnCAo%2CbohL918kXQk%2CCGbBbH1e7Yw%2Cp46QWyHQE6M">33m 53s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/multivariable-calculus/applications-of-multivariable-derivatives">Applications of multivariable derivatives</a> (6 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/multivariable-calculus/applications-of-multivariable-derivatives/tangent-planes-and-local-linearization">Tangent planes and local linearization</a> (2 Articles, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Tangent+planes+and+local+linearization&video_ids=cHNT7_F8m1Y%2CH2hOwKszKRo%2CQL6qb1h65hg%2Co7_zS7Bx2VA">32m 54s</a> )</li>
<li><a href="https://da.khanacademy.org/math/multivariable-calculus/applications-of-multivariable-derivatives/quadratic-approximations">Quadratic approximations</a> (2 Articles, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Quadratic+approximations&video_ids=80bJA_tSbo4%2CUV5yj5A3QIM%2CszHMvVXxp-g%2CfW3snxnCPEY%2CLbBcuZukCAw%2C0yEiCV-xEWQ%2CClFrIg0PpnM">56m 55s</a> )</li>
<li><a href="https://da.khanacademy.org/math/multivariable-calculus/applications-of-multivariable-derivatives/optimizing-multivariable-functions-videos">Optimizing multivariable functions</a> (7 Videos | <a href="https://www.youtube.com/watch_videos?title=Optimizing+multivariable+functions&video_ids=ux7EQ3ip2DU%2C8aAU4r_pUUU%2CnRJM4mY-Pq0%2Cm1FhUjMMv30%2CsJo7D74PAak%2CshWXeUn5BHk%2CTqslX-bUTD8">1h 2m</a> )</li>
<li><a href="https://da.khanacademy.org/math/multivariable-calculus/applications-of-multivariable-derivatives/lagrange-multipliers-and-constrained-optimization">Lagrange multipliers and constrained optimization</a> (8 Videos | <a href="https://www.youtube.com/watch_videos?title=Lagrange+multipliers+and+constrained+optimization&video_ids=vwUV2IDLP8Q%2CyuqB-d5MjZA%2Caep6lwPqm6I%2CBSKtQcLQLWU%2C5gCx5YCmXbI%2ChQ4UNu1P2kw%2Cm-G3K2GPmEQ%2Cb9B2FZ5cqbM">1h 16m 27s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/multivariable-calculus/integrating-multivariable-functions">Integrating multivariable functions</a> (13 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/multivariable-calculus/integrating-multivariable-functions/line-integrals">Kurveintegraler for skalare funktioner</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Kurveintegraler+for+skalare+funktioner&video_ids=_60sKaoRmhU%2CuXjQ8yc9Pdg%2CwyTjyQMVvc4%2CQqanbd3gLhw">54m 41s</a> )</li>
<li><a href="https://da.khanacademy.org/math/multivariable-calculus/integrating-multivariable-functions/line-integrals-vectors">Kurveintegraler i vektorfelter</a> (9 Videos | <a href="https://www.youtube.com/watch_videos?title=Kurveintegraler+i+vektorfelter&video_ids=t3cJYNdQLYg%2CAFF8FXxt5os%2CeGRZKkmI_fo%2C99pD1-6ZpuM%2CfuSOY9r1R6w%2CK_fgnCJOI8I%2CI2dbzp0zHuw%2CQ9t1LghwdGc%2CLpY8Qa3IP1w">1h 54m 57s</a> )</li>
<li><a href="https://da.khanacademy.org/math/multivariable-calculus/integrating-multivariable-functions/double-integrals-topic">Dobbelt Integraler</a> (6 Videos | <a href="https://www.youtube.com/watch_videos?title=Dobbelt+Integraler&video_ids=85zGYB-34jQ%2CTdLD2Zh-nUQ%2Cz8BM6cHifPA%2CtwT-WZChfZ8%2ChrIPO8mQqtw%2C0pv0QtOi5l8">57m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/math/multivariable-calculus/integrating-multivariable-functions/double-integrals-a">Double integrals (articles)</a> (4 Articles, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Double+integrals+%28articles%29&video_ids=jexMSlSDubM">10m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/math/multivariable-calculus/integrating-multivariable-functions/triple-integrals-topic">Tredobbelte integraler</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Tredobbelte+integraler&video_ids=vr0sTKbV7lI%2CvxQvL_WhBGU%2CZN2PfqZ4ihM">29m 52s</a> )</li>
<li><a href="https://da.khanacademy.org/math/multivariable-calculus/integrating-multivariable-functions/surface-parametrization">Parametrisering af en flade</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Parametrisering+af+en+flade&video_ids=owKAHXf1y1A%2CbJ_09eoCmag%2Cc7ByaI3T7Dc">45m 41s</a> )</li>
<li><a href="https://da.khanacademy.org/math/multivariable-calculus/integrating-multivariable-functions/surface-integrals-introduction">Fladeintegraler</a> (13 Videos | <a href="https://www.youtube.com/watch_videos?title=Fladeintegraler&video_ids=9k97m8oWnaY%2C7sQCcGlK2bY%2CqQAhhithHa8%2Cs2_NTiISZl4%2CE_Hwhp74Rhc%2CtyVCA_8MUV4%2CuzOXGgAgmPs%2CPpUWpxAb39w%2CItW5CxLsLSo%2CEOpzN8ZHqpU%2CxGiILI906C4%2CwiVWafc3JBM%2CbhrmEy0wvD0">2h 19m 51s</a> )</li>
<li><a href="https://da.khanacademy.org/math/multivariable-calculus/integrating-multivariable-functions/3d-flux">Flux i 3D og konstruktion af enheds normalvektorer til overfladen</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Flux+i+3D+og+konstruktion+af+enheds+normalvektorer+til+overfladen&video_ids=ivg3dLTarbs%2CusH9VUi2-Xg%2CNCwwfvPEVn8">24m 21s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/multivariable-calculus/greens-theorem-and-stokes-theorem">Green's theorem and Stokes' theorem</a> (11 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/multivariable-calculus/greens-theorem-and-stokes-theorem/greens-theorem">Green's theorem (videos)</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Green%27s+theorem+%28videos%29&video_ids=l5zJvZKfMYE%2CqdFD-0OWBRo%2CgGXnILbrhsM%2CsSyPAAyL8nQ">51m 30s</a> )</li>
<li><a href="https://da.khanacademy.org/math/multivariable-calculus/greens-theorem-and-stokes-theorem/2d-divergence-theorem-ddp">2D Divergenssætningen</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=2D+Divergenss%C3%A6tningen&video_ids=_9x2cqO7-Ig%2CeoJGBr-tJXo%2Cqs0hRHfnzTQ">34m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/math/multivariable-calculus/greens-theorem-and-stokes-theorem/stokes-theorem">Stokes' theorem (videos)</a> (11 Videos | <a href="https://www.youtube.com/watch_videos?title=Stokes%27+theorem+%28videos%29&video_ids=9iaYNaENVH4%2CTPov_v9mLWc%2C84NkvxfMPtM%2CU6U4HhR3Fqc%2CyDB-191sa2M%2CE2MRMdaPKcc%2C9bwy85M1Zxg%2CVPz4bCQDGgk%2CclL2jLXtX4I%2CA57_63yP1UU%2CJhu1M53AF0E">1h 8m 4s</a> )</li>
<li><a href="https://da.khanacademy.org/math/multivariable-calculus/greens-theorem-and-stokes-theorem/divergence-theorem">3D divergence theorem (videos)</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=3D+divergence+theorem+%28videos%29&video_ids=XyiQ2dwJHXE%2CasyIsn59Lnc%2CiFpyKTuC7jY">23m 33s</a> )</li>
<li><a href="https://da.khanacademy.org/math/multivariable-calculus/greens-theorem-and-stokes-theorem/stokes-proof">Beviset for Stokes' sætning</a> (7 Videos | <a href="https://www.youtube.com/watch_videos?title=Beviset+for+Stokes%27+s%C3%A6tning&video_ids=qIBqvr5_QqQ%2CapWQoMKVmW4%2C4o4P7KrkzXg%2C1og25U-d3_8%2Ca29qZSRDBdE%2C02gVmoObrjM%2CYT6XwkcPcsw">47m 7s</a> )</li>
<li><a href="https://da.khanacademy.org/math/multivariable-calculus/greens-theorem-and-stokes-theorem/region-types-3d">Typer af områder i tre dimensioner</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Typer+af+omr%C3%A5der+i+tre+dimensioner&video_ids=A11AfJ2-3rE%2CpZ_2bATPi2I%2CbxGnbVOtRYo">22m 41s</a> )</li>
<li><a href="https://da.khanacademy.org/math/multivariable-calculus/greens-theorem-and-stokes-theorem/divergence-theorem-proof">Divergens teorem bevis</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Divergens+teorem+bevis&video_ids=vCAFlt4pQSQ%2COM3e-J3euXo%2C3_W6bGuTfzU%2ClUD7ti47IQc%2CDrRsXhln4S8">33m 41s</a> )</li>
</ul></li>
</ul>
<h2 id="differentialligninger-3-topics"><a href="https://da.khanacademy.org/math/differential-equations">Differentialligninger</a> (3 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/math/differential-equations/first-order-differential-equations">Første ordens differentialligninger</a> (8 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/differential-equations/first-order-differential-equations/differential-equations-intro">Introduktion til differentialligninger</a> (3 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+differentialligninger&video_ids=6o7b9yyhH7k%2CH9h-Xg7zjPU%2Czid7J4EhZN8">16m 40s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-equations/first-order-differential-equations/slope-fields">Slope fields</a> (2 Exercises, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Slope+fields&video_ids=8Amgakx5aII%2CsU5MCM3npXU%2CsPe6qoQFFD8%2CtgS5kgkZNGw%2CLoaagZPWvpM%2C8EA5wv-kQPw">27m 42s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-equations/first-order-differential-equations/eulers-method-tutorial">Eulers metode</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Eulers+metode&video_ids=q87L9R9v274%2C_-a-yNubpk8">14m 43s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-equations/first-order-differential-equations/separable-equations">Separable ligninger</a> (1 Exercise, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Separable+ligninger&video_ids=DL-ozRGDlkY%2CKQ7Y31QgX_w%2C6vUjGgI8Dso%2CE444KhRcWSk%2C72xChzYjJdM%2CC5-lz0hcqsE%2CxVWCfMe97ws">45m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-equations/first-order-differential-equations/exponential-models-diff-eq">Exponential models</a> (1 Exercise, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Exponential+models&video_ids=IYFkXWlgC_w%2C6jqx5uEBs5U%2CpRuwcphjJeg%2CIICR-w1jYcA%2CjH5qflAe3C8">39m 26s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-equations/first-order-differential-equations/logistic-differential-equation">Logistic models</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Logistic+models&video_ids=_JpS8k1a9yE%2CoiDvNs15tkE%2Cj_Taf2Tgggo%2CNU1v-8VRirU%2C-fIsaqN-aaQ">53m 36s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-equations/first-order-differential-equations/exact-equations">Eksakte ligninger og integrerende faktorer</a> (7 Videos | <a href="https://www.youtube.com/watch_videos?title=Eksakte+ligninger+og+integrerende+faktorer&video_ids=iEpqcdaJNTQ%2Ca7wYAtMjORQ%2CPb04ntcDJcQ%2CutQi1ZhF__Q%2Ceu_GFuU7tLI%2Cj511hg7Hlbg%2C0NyeDUhKwBE">1h 9m 36s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-equations/first-order-differential-equations/homogeneous-equations">Homogene ligninger</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Homogene+ligninger&video_ids=9Wfn-WWV1aY%2C6YRGEsQWZzY">15m 43s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/differential-equations/second-order-differential-equations">Anden ordens differentialligninger</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/differential-equations/second-order-differential-equations/linear-homogeneous-2nd-order">Lineære homogene ligninger</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Line%C3%A6re+homogene+ligninger&video_ids=UFWAu8Ptth0%2CSPVqgkOZMAc%2CUyCwAFQt4v0%2C3uO_uPb9H8w">33m 21s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-equations/second-order-differential-equations/complex-roots-characteristic-equation">Komplekse og gentagne rødder af karakteristisk ligning</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Komplekse+og+gentagne+r%C3%B8dder+af+karakteristisk+ligning&video_ids=6xEO4BeawzA%2CjJyRrIZ595c%2CrGaM6pwqhB0%2CNW9JfMvIsxw%2CYezsgIlcb68">51m 52s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-equations/second-order-differential-equations/undetermined-coefficients">Metode med ubestemte koefficienter</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Metode+med+ubestemte+koefficienter&video_ids=znE4Nq9NJCQ%2ChbJ2o9EUmJ0%2CI3vIAzMcm4Y%2CvAepSNDLZRM">35m 14s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/differential-equations/laplace-transform">Laplace Transformation</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/differential-equations/laplace-transform/laplace-transform-tutorial">Laplace Transformation</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Laplace+Transformation&video_ids=OiNh2DswFt4%2C33TYoybjqPg%2CgMcs6RF_LrQ%2C-cApVwKR1Ps">35m 32s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-equations/laplace-transform/properties-of-laplace-transform">Laplace-transformationens egenskaber</a> (9 Videos | <a href="https://www.youtube.com/watch_videos?title=Laplace-transformationens+egenskaber&video_ids=E2VxbufzuWQ%2CfyJkXBvcA2Q%2C_X_QwpXsdOs%2CqhKJ1DG9kYY%2CpZIaUx3UQoA%2C4Mr7aEHQr8E%2CBbqbvSig6Mc%2C4qfdCwys2ew%2CvhfjEpQWWeE">2h 5m 31s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-equations/laplace-transform/laplace-transform-to-solve-differential-equation">Laplace-transformation til løsning af en differentialligning</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Laplace-transformation+til+l%C3%B8sning+af+en+differentialligning&video_ids=3uYb-RhM7lU%2CEdQ7Q9VoF44%2CnlUG4OKN1IY%2CR0JY8oWsuOY">59m 37s</a> )</li>
<li><a href="https://da.khanacademy.org/math/differential-equations/laplace-transform/convolution-integral">Foldningsintegralet</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Foldningsintegralet&video_ids=IW4Reburjpc%2CTJgBEI3drUc%2Crfyq32mHcYs">44m 59s</a> )</li>
</ul></li>
</ul>
<h2 id="lineær-algebra-3-topics"><a href="https://da.khanacademy.org/math/linear-algebra">Lineær algebra</a> (3 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/math/linear-algebra/vectors-and-spaces">Vektorer og rum</a> (7 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/linear-algebra/vectors-and-spaces/vectors">Vektorer</a> (4 Exercises, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Vektorer&video_ids=br7tS1t2SFE%2ClCsjJbZHhHU%2C8QihetGj3pg%2CZN7YaSbY3-w%2Cr4bH66vYjss%2C9ylUcCOTH8Y%2ChWhs2cIj7Cw">1h 23m 24s</a> )</li>
<li><a href="https://da.khanacademy.org/math/linear-algebra/vectors-and-spaces/linear-combinations">Linearkombinationer og span</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Linearkombinationer+og+span&video_ids=Qm_OS-8COwU">20m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/math/linear-algebra/vectors-and-spaces/linear-independence">Lineær afhængighed og uafhængighed</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Line%C3%A6r+afh%C3%A6ngighed+og+uafh%C3%A6ngighed&video_ids=CrV1xCWdY-g%2CAlhcv5d_XOs%2C9kW6zFK5E5c">50m 17s</a> )</li>
<li><a href="https://da.khanacademy.org/math/linear-algebra/vectors-and-spaces/subspace-basis">Underrum og basis for et underrum</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Underrum+og+basis+for+et+underrum&video_ids=pMFv6liWK4M%2CzntNi3-ybfQ">42m 29s</a> )</li>
<li><a href="https://da.khanacademy.org/math/linear-algebra/vectors-and-spaces/dot-cross-products">Vektor prik- og kryds-produkter</a> (13 Videos | <a href="https://www.youtube.com/watch_videos?title=Vektor+prik-+og+kryds-produkter&video_ids=WNuIhXo39_k%2CrVQ3G9epCjw%2Cr2PogGDl8_U%2CPsNidCBr5II%2C5AWob_z74Ks%2CUJxgcVaNTqY%2CpJzmiywagfY%2C7MKA2QlKvHc%2CtdwFdzVqito%2Cb7JTVLc_aMk%2Cgw-4wltP5tY%2C7rIFO8hct9g%2Cv8plb6V8BQo">3h 19m 17s</a> )</li>
<li><a href="https://da.khanacademy.org/math/linear-algebra/vectors-and-spaces/matrices-elimination">Løsning af ligningssystemer med Eliminering</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=L%C3%B8sning+af+ligningssystemer+med+Eliminering&video_ids=L0CmbneYETs%2ClP1DGtZ8Wys%2CJVDrlTdzxiI">37m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/math/linear-algebra/vectors-and-spaces/null-column-space">Nulrum og kolonnerum</a> (12 Videos | <a href="https://www.youtube.com/watch_videos?title=Nulrum+og+kolonnerum&video_ids=7Mo4S2wyMg4%2CjCwRV1QL_Xs%2CqvyboGryeA8%2C-fKh6SNEPr4%2Cst6D5OdFV9M%2C_uTAdf_AsfQ%2CEGNlXtjYABw%2CZn2K8UIT8r4%2CabYAUqs_n6I%2CJUgrBkPteTg%2CBfVjTOjvI30%2CCkQOCnLWPUA">3h 1m 51s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/linear-algebra/matrix-transformations">Transformationer</a> (7 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/linear-algebra/matrix-transformations/linear-transformations">Funktioner og lineære transformationer</a> (2 Articles, 11 Videos | <a href="https://www.youtube.com/watch_videos?title=Funktioner+og+line%C3%A6re+transformationer&video_ids=BQMyeQOLvpg%2CgAbadNuQEjI%2C4PCktDZJH8E%2CondmopWLiEg%2CPErhLkQcpZ8%2CMIAmN5kgp3k%2ChZ827mfh1Jo%2CzVsGtU8lIWs%2C6yrPU8rYOhs%2CwHuY97vss18%2CZ19-ObbmHJE">2h 40m 12s</a> )</li>
<li><a href="https://da.khanacademy.org/math/linear-algebra/matrix-transformations/lin-trans-examples">Lineær Transformation Eksempler</a> (6 Videos | <a href="https://www.youtube.com/watch_videos?title=Line%C3%A6r+Transformation+Eksempler&video_ids=qkfODKmZ-x4%2ClPWfIq5DzqI%2CgkyuLPzfDV0%2ClQn7fksaDq0%2C27vT-NWuw0M%2CJK-8XNIoAkI">1h 23m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/math/linear-algebra/matrix-transformations/composition-of-transformations">Transformationer og matrixmultiplikation</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Transformationer+og+matrixmultiplikation&video_ids=f_DTiXZpb8M%2CBuqcKpe5ZQs%2Cx1z0hOyjapU%2CHhc96U_HvQE%2CoMWTMj78cwc">1h 8m 56s</a> )</li>
<li><a href="https://da.khanacademy.org/math/linear-algebra/matrix-transformations/inverse-transformations">Inverse funktioner og tranformationer</a> (9 Videos | <a href="https://www.youtube.com/watch_videos?title=Inverse+funktioner+og+tranformationer&video_ids=-eAzhBZgq28%2C7GEUgRcnfVE%2CxKNX8BUWR0g%2CQIU1daMN8fw%2CeR8vEdJTvd0%2C1PsNIzUJPkc%2CM3FuL9qKTBs%2CYz2OosyMTmY%2Cmr9Tow8hpCg">2h 28m 2s</a> )</li>
<li><a href="https://da.khanacademy.org/math/linear-algebra/matrix-transformations/inverse-of-matrices">At finde den inverse matrix</a> (7 Videos | <a href="https://www.youtube.com/watch_videos?title=At+finde+den+inverse+matrix&video_ids=6DpzCKJBsz0%2Cr9aTLTN16V4%2CeEUK_ThrHuQ%2C0c7dt2SQfLw%2CH9BWRYJNIv4%2Cnu87kfmwNfU%2C4xFIi0JF2AM">1h 27m 44s</a> )</li>
<li><a href="https://da.khanacademy.org/math/linear-algebra/matrix-transformations/determinant-depth">Mere afgørende dybde</a> (9 Videos | <a href="https://www.youtube.com/watch_videos?title=Mere+afg%C3%B8rende+dybde&video_ids=32rdijPB-rA%2CWY6QG0mZ7uQ%2CVrB3LaSD_uo%2CgYv8sttBIqs%2CkpG7xySkivg%2CVX7K8iqoiRc%2CQV0jsTiobU4%2Cn-S63_goDFg%2Cg3MqSdO5Ubc">1h 50m 57s</a> )</li>
<li><a href="https://da.khanacademy.org/math/linear-algebra/matrix-transformations/matrix-transpose">Transponering af en matrix</a> (9 Videos | <a href="https://www.youtube.com/watch_videos?title=Transponering+af+en+matrix&video_ids=2t0003_sxtU%2Cx-GV2v0dRNE%2CUdHgWK13x5I%2CBr_8t58mdeI%2ClSoaMCNKfAg%2CqBfc57x_RSg%2CGW8ZPjGlk24%2CtqqVOWm9YsU%2CESSMQH6Y5OA">1h 59m 19s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/linear-algebra/alternate-bases">Alternative koordinatsystemer (baser)</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/linear-algebra/alternate-bases/othogonal-complements">Ortogonale komplementære</a> (7 Videos | <a href="https://www.youtube.com/watch_videos?title=Ortogonale+komplement%C3%A6re&video_ids=QOTjdgmNqlg%2CpGhBfkBqok0%2CM6lFqkqvUgo%2CzlI8mx8Hc8o%2CLE_aQAur7nI%2CczIYvs9zj2g%2Cqdf2CuMGdKs">1h 53m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/math/linear-algebra/alternate-bases/orthogonal-projections">Vinkelrette projektioner</a> (9 Videos | <a href="https://www.youtube.com/watch_videos?title=Vinkelrette+projektioner&video_ids=5B8XluiqdHM%2CuWbZlJURkfA%2CcTyNpXB92bQ%2CQTcSBB3uVP0%2CXhCSHu6dHb8%2Cb269qpILOpk%2CMC7l96tW8V8%2C8mAZYv5wIcE%2CQkepM8Vv3kw">2h 14m 40s</a> )</li>
<li><a href="https://da.khanacademy.org/math/linear-algebra/alternate-bases/change-of-basis">Ændring af grundlaget</a> (7 Videos | <a href="https://www.youtube.com/watch_videos?title=%C3%86ndring+af+grundlaget&video_ids=uvgru6FcyxU%2C1j5WnqwMdCk%2CmeibWcbGqt4%2CPiuhTj0zCf4%2ClCRGNykWqFI%2CEyORbCPUAd4%2CK_na_j1Msfg">2h 34s</a> )</li>
<li><a href="https://da.khanacademy.org/math/linear-algebra/alternate-bases/orthonormal-basis">Orthonormal basis</a> (9 Videos | <a href="https://www.youtube.com/watch_videos?title=Orthonormal+basis&video_ids=7BFx8pt2aTQ%2CSWbis2zWIvo%2Cwe829K4NOq8%2CSUoqA9srY1Q%2CgfVY7cW7VLQ%2CyDwIfYjKEeo%2CrHonltF77zI%2Ctu1GPtfsQ7M%2CZRRG386v6DI">2h 14m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/math/linear-algebra/alternate-bases/eigen-everything">Eigen-altsammen</a> (7 Videos | <a href="https://www.youtube.com/watch_videos?title=Eigen-altsammen&video_ids=PhfbEr2btGQ%2Crfm0wQObxjk%2CpZ6mMVEE89g%2C3-xfmbdzkqc%2C11dNghWC4HI%2C3Md5KCCQX-0%2CC2PC9185gIw">1h 20m 6s</a> )</li>
</ul></li>
</ul>
<h2 id="infinitesimalregning-al-indhold-2017-udgave-9-topics"><a href="https://da.khanacademy.org/math/calculus-all-old">Infinitesimalregning al indhold (2017 udgave)</a> (9 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/limits-and-continuity-calc">Limits and continuity</a> (21 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/limits-and-continuity-calc/limits-introduction-calc">Limits introduction</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Limits+introduction&video_ids=EKvHQc3QEow%2CriXcZT2ICjA%2CW0VWO4asgmk">28m 18s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/limits-and-continuity-calc/limits-from-tables-calc">Limits from tables</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Limits+from+tables&video_ids=XIsPC-f2e2c">3m 6s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/limits-and-continuity-calc/limits-from-graphs-calc">Limits from graphs</a> (1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Limits+from+graphs&video_ids=Y9sP4V3bKh0%2ChWJLd6bRthI%2ColrXr3J5xq4">7m 17s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/limits-and-continuity-calc/one-sided-limits-calc">One-sided limits</a> (1 Exercise, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=One-sided+limits&video_ids=nOnd3SiYZqM%2C5f1-Rg3MmKs%2Ct7NvlTgMsO8%2CrccqylTloMs%2CY7sqB1e4RBI%2C_WOr9-_HbAM">29m 58s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/limits-and-continuity-calc/formal-definition-of-limits-calc">Formal definition of limits (epsilon-delta)</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Formal+definition+of+limits+%28epsilon-delta%29&video_ids=5i8HLmVTcRQ%2Cljzn4SADuZc%2Cw70af5Ou70M%2C0sCttufU-jQ">25m 11s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/limits-and-continuity-calc/continuity-at-a-point-calc">Continuity at a point</a> (1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Continuity+at+a+point&video_ids=kdEQGfeC0SE%2Cjzn4rTPajT0%2C_bBAiZhfH_4">22m 38s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/limits-and-continuity-calc/limits-of-combined-and-composite-functions-calc">Limits of combined and composite functions</a> (2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Limits+of+combined+and+composite+functions&video_ids=lSwsAFgWqR8%2CAhnJtTI_DMM%2CRgfKNIkpFWc">14m 29s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/limits-and-continuity-calc/continuous-functions-calc">Continuous functions</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Continuous+functions&video_ids=DCWeH62w-NA%2CX51CaI4tfQg">7m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/limits-and-continuity-calc/intermediate-value-theorem-calc">Intermediate value theorem</a> (1 Article, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Intermediate+value+theorem&video_ids=9xgO-EJ3sr0%2CTrQTK-B4bzM">14m 48s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/limits-and-continuity-calc/limits-from-equations-calc">Limits from equations (direct substitution)</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Limits+from+equations+%28direct+substitution%29&video_ids=cfOcOgr0E7U%2CJlOyb_RTejo">4m 21s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/limits-and-continuity-calc/limits-with-factoring-and-rationalizing-calc">Limits from equations (factoring & rationalizing)</a> (3 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Limits+from+equations+%28factoring+%26+rationalizing%29&video_ids=EAa3J_nDkoI%2CyVWxxQ7SMOw%2CrU222pVq520">19m 12s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/limits-and-continuity-calc/squeeze-theorem-calc">sandwich-bevis (sqeeze theorem)</a> (1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=sandwich-bevis+%28sqeeze+theorem%29&video_ids=WvxKwRcHGHg%2C2XQH-J5KeHI%2C5xitzTutKqM%2CigJdDN-DPgA">28m 2s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/limits-and-continuity-calc/limits-of-trigonometric-functions-calc">Limits of trigonometric functions</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Limits+of+trigonometric+functions&video_ids=d8qtbGMB2gI%2ClXShNH1G6Pk">17m 33s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/limits-and-continuity-calc/limits-of-piecewise-functions-calc">Limits of piecewise functions</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Limits+of+piecewise+functions&video_ids=TdVDqWOR3dU%2CLVqv8PBR1is">8m 2s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/limits-and-continuity-calc/removable-discontinuities-calc">Removable discontinuities</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Removable+discontinuities&video_ids=oUgDaEwMbiU%2CP1DJxuG7U9A">10m 17s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/limits-and-continuity-calc/unbounded-limits-calc">Unbounded limits (vertical asymptotes)</a> (2 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Unbounded+limits+%28vertical+asymptotes%29&video_ids=a2Ia_ZlUCaQ%2CTlWvQvMB9eI%2C_ZGHGDKWpp8%2CAI3aOkafYFw%2CSUrlTlI-oxI">22m 45s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/limits-and-continuity-calc/limits-at-infinity-calc">Limits at infinity (horizontal asymptotes)</a> (3 Exercises, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Limits+at+infinity+%28horizontal+asymptotes%29&video_ids=a2Ia_ZlUCaQ%2Cgv9ogppphso%2CKcqO1fX9b_I%2Cxks4cETlN58%2CuPksX_O9ARo%2CoAQnDsmu41E%2CwaWYIKAfkWw%2CnDXFgexOM5c">36m 3s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/taking-derivatives-calc">Find den afledte</a> (41 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/taking-derivatives-calc/intro-to-diff-calculus-calc">Introduktion til differentialregning</a> (1 Article, 2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+differentialregning&video_ids=EKvHQc3QEow%2CS-dcMvJlMJs%2CCpDfay5NeCg">18m 8s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/taking-derivatives-calc/derivative-as-tangent-slope-calc">Afledte som hældningen på tangentlinjen</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Afledte+som+h%C3%A6ldningen+p%C3%A5+tangentlinjen&video_ids=fqQ6sslzyhY%2CEXLVMGSDQbI">11m 47s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/taking-derivatives-calc/derivative-as-instantaneous-rate-of-change-calc">Derivative as instantaneous rate of change</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Derivative+as+instantaneous+rate+of+change&video_ids=XdsifNBa9kk%2CfI6w2kL295Y%2C2oHUkHYtQoM">18m 18s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/taking-derivatives-calc/secant-lines-calc">Secant lines</a> (2 Exercises, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Secant+lines&video_ids=8r8Vp_1iB4k%2CRaNeCD8t01I%2C0zExhHh7_Ic%2Cl1xdKkIGxOc%2CT3nVKbxEQdo%2CH6ZNLD1AeM8%2CP3IlneCNm8A">35m 56s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/taking-derivatives-calc/derivative-as-a-limit-calc">Derivative as a limit</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Derivative+as+a+limit&video_ids=ANyVpMS3HL4%2C4b8YnmUUIfI">19m 18s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/taking-derivatives-calc/formal-definition-of-derivative-calc">Formal definition of derivative</a> (1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Formal+definition+of+derivative&video_ids=Df2escG-Vu0%2Cm8yC7kR5Fuk%2CePh8iCbcXfA">15m 56s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/taking-derivatives-calc/using-the-formal-definition-of-derivative-calc">Using the formal definition of derivative</a> (1 Article, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Using+the+formal+definition+of+derivative&video_ids=IePCHjMeFkE%2CHEH_oKNLgUU%2CnGCW5teACC0%2CH5eIE7zdnvI%2ChoRISaqp1Po">34m 49s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/taking-derivatives-calc/differentiability-calc">Differentiability</a> (2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Differentiability&video_ids=pwh1dK3vTkM%2C_DkttKctXFY%2CBpPHve1cCCs%2Cpj1VvscsV0s">20m 38s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/taking-derivatives-calc/derivative-as-a-function-calc">Derivative as a function</a> (1 Exercise, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Derivative+as+a+function&video_ids=eVme7kuGyuo%2C61ecnr8m04U%2CNFzma7NsHtI%2CPF6_y4zYVec%2CEeIXVN1zUeM">22m 27s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/taking-derivatives-calc/basic-differentiation-rules-calc">Basic differentiation rules</a> (2 Articles, 2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Basic+differentiation+rules&video_ids=OsPNBYmqxLo%2CuCLZyTliZj0%2C4l_IvxXD9o8%2CrOftmuhGLjY">22m 50s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/taking-derivatives-calc/power-rule-calc">Potensreglen</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Potensreglen&video_ids=bRZmfc1YFsQ%2CBYTfCnR9Sl0%2CdZnc3PtNaN4%2C789aMeepbxI">22m 46s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/taking-derivatives-calc/polynomial-functions-differentiation-calc">Polynomial functions differentiation</a> (1 Article, 2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Polynomial+functions+differentiation&video_ids=mzOBlH32qdk%2C-CTaxKTzbEI%2Cj9FDoYNxZlw">21m 14s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/taking-derivatives-calc/rational-functions-differentiation-intro-calc">Rational functions differentiation (intro)</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Rational+functions+differentiation+%28intro%29&video_ids=W233qRK6HPs%2CFJ7AMaR9miI">10m 48s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/taking-derivatives-calc/radical-functions-differentiation-intro-calc">Radical functions differentiation (intro)</a> (1 Article, 2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Radical+functions+differentiation+%28intro%29&video_ids=HWFtcIRhr5c%2CJFBdnJzBgcg">5m 16s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/taking-derivatives-calc/sine-and-cosine-derivatives-calc">Sine & cosine derivatives</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Sine+%26+cosine+derivatives&video_ids=TDHI-aieyfk%2CIur13MNO0Ro">8m 58s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/taking-derivatives-calc/ex-and-lnx-derivatives-calc">eˣ and ln(x) derivatives</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=e%CB%A3+and+ln%28x%29+derivatives&video_ids=TDHI-aieyfk">3m 44s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/taking-derivatives-calc/product-rule-calc">Produktregel</a> (1 Article, 2 Exercises, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Produktregel&video_ids=79ngr0Bur38%2CWxTrxxW0qeM%2CSQUSh1LNjIo%2CxioPD_ldZNY%2CBkkk0RLSEy8%2CL5ErlC0COxI">26m 27s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/taking-derivatives-calc/chain-rule-calc">Kædereglen</a> (2 Articles, 2 Exercises, 10 Videos | <a href="https://www.youtube.com/watch_videos?title=K%C3%A6dereglen&video_ids=0T0QrHO56qg%2CyAFphxolU5w%2CG2ZXpbMukEQ%2CIiBC4ngwH6E%2CbLKTkM-w5ps%2Cho87DN9wO70%2CTI-j-fr6c4A%2CZr72qWNMk7E%2CeJxSDYO82c4%2CpSSqUF_mmtM">56m 44s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/taking-derivatives-calc/chain-rule-proof-calc">Chain rule proof</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Chain+rule+proof&video_ids=eytyVWA5ZQs%2Cl6T4RhlgkG0%2CFKraGDm2fUY">23m 45s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/taking-derivatives-calc/quotient-rule-calc">Kvotientreglen</a> (1 Article, 2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Kvotientreglen&video_ids=ho87DN9wO70%2CZAElYVh5DXU%2CGH8-URjRQpQ%2CC5G2Js2_Ep4">23m 50s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/taking-derivatives-calc/rational-functions-differentiation-calc">Rational functions differentiation</a> (1 Article, 1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Rational+functions+differentiation&video_ids=wjm5ZYZ4hj8">6m 44s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/taking-derivatives-calc/radical-functions-differentiation-calc">Radical functions differentiation</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Radical+functions+differentiation&video_ids=-_7td0mDbQs">5m 55s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/taking-derivatives-calc/trigonometric-functions-differentiation-calc">Trigonometric functions differentiation</a> (1 Article, 2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Trigonometric+functions+differentiation&video_ids=Rr_1GQyiRYs%2CTDJ5nXWEkWM%2C6QRtLh_THmo%2CeJUGoAtF-7A">19m 59s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/taking-derivatives-calc/exponential-functions-differentiation-calc">Exponential functions differentiation</a> (1 Article, 2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Exponential+functions+differentiation&video_ids=TDHI-aieyfk%2CgHzLHknEk1M%2CfqYds-feWcw%2CMci8Cuik_Gw">17m 37s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/taking-derivatives-calc/logarithmic-functions-differentiation-calc">Logarithmic functions differentiation</a> (1 Article, 2 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Logarithmic+functions+differentiation&video_ids=TDHI-aieyfk%2C2XB4K6T-yKo%2CWZPpbkVESVk%2CR2JsjJyr0ck%2Cssz6TElXEOM">21m 30s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/taking-derivatives-calc/derivatives-capstone-calc">Derivatives capstone</a> (2 Articles, 2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Derivatives+capstone&video_ids=UXQGzgPf1LE%2C1015d63VKh4">10m 44s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/taking-derivatives-calc/implicit-differentiation-intro-calc">Implicit differentiation introduction</a> (1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Implicit+differentiation+introduction&video_ids=mSVrqKZDRF4%2C9uxvm-USEYE%2CKyYC8XzKsHU%2C2CsQ_l1S2_Y">26m 11s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/taking-derivatives-calc/implicit-differentiation-advanced-calc">Implicit differentiation (advanced examples)</a> (1 Article, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Implicit+differentiation+%28advanced+examples%29&video_ids=-EG10aI0rt0%2C1DcsREjyoiM%2CZtI94pI4Uzc%2C765X_PAxhAw">20m 24s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/taking-derivatives-calc/inverse-trig-functions-differentiation-calc">Inverse trig functions differentiation</a> (1 Article, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Inverse+trig+functions+differentiation&video_ids=yIQUhXa-n-M%2Cv_OfFmMRvOc%2CG7WyEp8gHs0">14m 42s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/taking-derivatives-calc/derivatives-of-inverse-functions-calc">Afledte af inverse funktioner</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Afledte+af+inverse+funktioner&video_ids=UBctoCirje0%2C9Eg97Rtg-pE">10m 16s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/taking-derivatives-calc/disguised-derivatives-calc">Disguised derivatives</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Disguised+derivatives&video_ids=fUWn_SJSLBk">4m 33s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/taking-derivatives-calc/proofs-for-derivatives-of-ex-and-lnx-calc">Proofs for the derivatives of eˣ and ln(x)</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Proofs+for+the+derivatives+of+e%CB%A3+and+ln%28x%29&video_ids=SFWN-TkVFyI%2C3LgfZ4bQ-yc">16m 47s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/taking-derivatives-calc/logarithmic-differentiation-calc">Logaritmisk differentiering</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Logaritmisk+differentiering&video_ids=N5kkwVoAtkc%2CBSrJi9uEJp0">17m 46s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/taking-derivatives-calc/parametric-and-vector-valued-function-differentiation-calc">Parametric & vector-valued function differentiation</a> (2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Parametric+%26+vector-valued+function+differentiation&video_ids=7fYDCUIvZnM%2CE9Q_Lc0g1xE%2CAXasQLqazWU">27m 25s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/taking-derivatives-calc/higher-order-derivatives-calc">Higher-order derivatives</a> (1 Article, 1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Higher-order+derivatives&video_ids=WC5VYKI807Q">2m 27s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/taking-derivatives-calc/higher-order-derivatives-parametric-vector-valued-calc">Higher-order derivatives (parametric & vector-valued functions)</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Higher-order+derivatives+%28parametric+%26+vector-valued+functions%29&video_ids=-vv63FS__bY%2CiHNa1fhV7IA">10m 12s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/derivative-applications-calc">Anvendelser af afledte funktioner</a> (18 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/derivative-applications-calc/critical-points-calc">Critical points</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Critical+points&video_ids=Hoyv3-BMAGc%2CLSIgi9krswU%2ClDY9JcFaRd4%2CMUQfl385Yug">22m 22s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/derivative-applications-calc/increasing-and-decreasing-intervals-calc">Increasing & decreasing intervals</a> (1 Article, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Increasing+%26+decreasing+intervals&video_ids=KblYjo1Ijws%2CsOluh1zX5tE">10m 33s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/derivative-applications-calc/relative-minima-and-maxima-calc">Relative minima & maxima</a> (1 Article, 1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Relative+minima+%26+maxima&video_ids=lFQ4kMcODzU%2CpInFesXIfg8%2Cx09FpMmGB4A">22m 56s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/derivative-applications-calc/absolute-minima-and-maxima-calc">Absolute minima & maxima</a> (1 Article, 2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Absolute+minima+%26+maxima&video_ids=bZYTDst1MOo%2CJXVGPEOQCb8%2CXhc7Hens0f8">24m 18s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/derivative-applications-calc/concavity-calc">Concavity</a> (1 Article, 3 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Concavity&video_ids=LcEqOzNov4E%2Culyyusmpc9w%2C72L_N7AtCRE%2C-cW5hCsc9Yc">27m 46s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/derivative-applications-calc/points-of-inflection-calc">Points of inflection</a> (1 Article, 2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Points+of+inflection&video_ids=UK2shgCXALo%2CiWgW2nD4wGQ%2CZCnsO65rWX0%2CRoxefQ_Qgm8">15m 17s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/derivative-applications-calc/sketching-graphs-using-calculus">Sketching graphs using calculus</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Sketching+graphs+using+calculus&video_ids=hIgnece9ins%2CzC_dTaEY2AY">45m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/derivative-applications-calc/linear-approximation-calc">Linear approximation</a> (1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Linear+approximation&video_ids=u7dhn-hBHzQ%2CvRw4ovZK1CQ%2CCDmJL-VNlaM">23m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/derivative-applications-calc/rectilinear-motion-diff-calc">Rectilinear motion (diff calc)</a> (1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Rectilinear+motion+%28diff+calc%29&video_ids=SE1ltVuE5yM%2C5P1O6tBiTlQ%2CwKPyzrEVqaQ%2CHDntI7zfBNs">28m 51s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/derivative-applications-calc/planar-motion-diff-calc">Planar motion (diff calc)</a> (2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Planar+motion+%28diff+calc%29&video_ids=HFdeHX_wA4k%2CSv3Y0F0ASZ0%2CnC5UgHDjbcg">16m 49s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/derivative-applications-calc/related-rates-calc">Relaterede rater</a> (4 Exercises, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Relaterede+rater&video_ids=kQF9pOqmS0U%2CwV59XWLmv0c%2CkBVDSu7v8os%2CXe6YlrCgkIo%2CcPOjnyjii-4%2C_kbd6troMgA">50m 53s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/derivative-applications-calc/optimization-calc">Optimering</a> (1 Exercise, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Optimering&video_ids=1TK8V_qmqrk%2CMC0tq6fNRwU%2CcRboY08YG8g%2Cdam16G6cZ8k%2CtSMuKcN-RKM%2CIFU7Go6Qg6E%2CeS-_ZFzHjYA%2CviaPc8zDcRI">1h 25m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/derivative-applications-calc/applied-rates-of-change-calc">Applied rates of change</a> (1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Applied+rates+of+change&video_ids=WbyODj_OiZU%2CiVAYOeGmNqo%2CWkjz1LlX1CQ">17m 26s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/derivative-applications-calc/mean-value-theorem-calc">Middelværdisætningen</a> (1 Article, 1 Exercise, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Middelv%C3%A6rdis%C3%A6tningen&video_ids=6hri9k_2R8o%2CS_YIUXy-WFM%2CXg24JhQHVCM%2CInrLtU3k3Y8%2CbGNMXfaNR5Q">41m 51s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/derivative-applications-calc/lhopitals-rule-calc">L'Hôpitals regel</a> (1 Article, 2 Exercises, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=L%27H%C3%B4pitals+regel&video_ids=PdSzruR5OeE%2CBiVOC3WocXs%2CMeVFZjT-ABM%2CFJo18AwLfuI%2COt0FxL8Vl7I%2CCDf_aE5yg3A%2CSIB4WDYF5DQ">52m 21s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/integration-calc">Integration</a> (18 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/integration-calc/antiderivatives-calc">Antiderivatives</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Antiderivatives&video_ids=MMv-027KEqU">3m 43s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/integration-calc/indefinite-integrals-intro-calc">Indefinite integrals intro</a> (1 Article, 3 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Indefinite+integrals+intro&video_ids=QxbJsg-Vdms%2CcBi4a1iSaPk%2CnZrxs-U9d8o%2CGn3mJOC1wK8">20m 37s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/integration-calc/indefinite-integrals-of-common-functions-calc">Indefinite integrals of common functions</a> (2 Articles, 4 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Indefinite+integrals+of+common+functions&video_ids=hXg-6YgAARk%2CsPPjk4aXzmQ%2CbjdOWH43-9s%2CT8rbpI4OZCc">19m 11s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/integration-calc/definite-integral-as-area-calc">Definite integral as area</a> (1 Article, 2 Exercises, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Definite+integral+as+area&video_ids=hTTDI49LhjE">3m 31s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/integration-calc/definite-integral-properties-calc">Definite integral properties</a> (2 Articles, 1 Exercise, 11 Videos | <a href="https://www.youtube.com/watch_videos?title=Definite+integral+properties&video_ids=JyArK4jw3XU%2CJUouea9XoF8%2Cq3qvkZxhchE%2CBE1FK7vDVq0%2C09VLUSkaZU8%2CL5eBJjx2FP8%2C9FLYqh697xI%2CpRZzfoM-9lc%2CTqMxlzZiKg4%2CnopnFjMy3rQ%2CdX0JyJRTXm4">48m 43s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/integration-calc/rieman-sums-calc">Riemann summer</a> (2 Articles, 1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Riemann+summer&video_ids=dEAk0BHBYCM%2CViqrHGae7FA%2Cv13fraCiLEg">25m 16s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/integration-calc/riemann-sums-with-sigma-notation-calc">Riemann sums with sigma notation</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Riemann+sums+with+sigma+notation&video_ids=3ZhUdleD1lQ%2CWeVWv_OEJsY">13m 43s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/integration-calc/trapezoidal-rule-calc">Trapezoidal rule</a> (2 Articles, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Trapezoidal+rule&video_ids=naRUWPvsQbQ%2C1p0NHR5w0Lc">16m 40s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/integration-calc/definite-integral-as-the-limit-of-a-riemann-sum-calc">Definite integral as the limit of a Riemann sum</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Definite+integral+as+the+limit+of+a+Riemann+sum&video_ids=CXCtqBlEZ7g%2CgIQgnSfUB6E">11m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/integration-calc/functions-defined-by-integrals-calc">Funktioner defineret ved integraler</a> (2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Funktioner+defineret+ved+integraler&video_ids=h6mZLTpTHcU%2CKq5hqFg17bg%2CW20SoZiJOHU">20m 4s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/integration-calc/fundamental-theorem-of-calculus-calc">Det grundlæggende teorem i calculus</a> (1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Det+grundl%C3%A6ggende+teorem+i+calculus&video_ids=C7ducZoLKgw%2CWapSrovs7yM%2C0z52CLjC2C0%2CpWtt0AvU0KA">30m 31s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/integration-calc/fundamental-theorem-of-calculus-chain-rule-calc">Fundamental theorem of calculus: chain rule</a> (1 Article, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Fundamental+theorem+of+calculus%3A+chain+rule&video_ids=WapSrovs7yM%2CTqGCNNlx6pU">6m 24s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/integration-calc/definite-integral-evaluation-calc">Definite integral evaluation</a> (3 Exercises, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Definite+integral+evaluation&video_ids=JbfVrwxuPxM%2CCz_GWNdf_68%2CxR4AnXDBnsw%2CMM0FTzvedH4%2C4WJUEXIksH0%2C5UWdzPq8_Qs%2CldLdWj6DLTw%2CJMqKtEC2bbY">51m 54s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/integration-calc/definite-integrals-of-piecewise-functions-calc">Definite integrals of piecewise functions</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Definite+integrals+of+piecewise+functions&video_ids=f5qr1lH6ViU%2CPWcwhA2BwVk">13m 7s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/integration-calc/improper-integrals-calc">Uegentlige integraler</a> (1 Article, 2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Uegentlige+integraler&video_ids=qv7DM5Ph0vU%2C9JX2s90_RNQ%2C9VqL6POWIoc">18m 1s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/integration-techniques-calc">Integrationsteknikker</a> (6 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/integration-techniques-calc/integration-by-parts-calc">Partiel integration</a> (2 Articles, 2 Exercises, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Partiel+integration&video_ids=dh__n9FVKA0%2CbZ8YAHDTFJ8%2Ciw5eLJV0Sj4%2Cn-iEqLhGfd4%2CLJqNdG6Y2cM%2CCZdziIlYIfI">41m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/integration-techniques-calc/u-substitution-calc">u-substitution</a> (1 Article, 3 Exercises, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=u-substitution&video_ids=b76wePnIBdU%2CZp5z0wa0kgo%2CoqCfqIcbE10%2COLO64d4Y1qI%2CC5Lbjbyr1t4%2CJ-NC1M6obKo%2C1ct7LUx23io%2CShpI3gPgLBA">48m 58s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/integration-techniques-calc/reverse-chain-rule-calc">Omvendt kæderegel</a> (1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Omvendt+k%C3%A6deregel&video_ids=X36GTLhw3Gw%2C7FQWBCeVIJM%2CgflKYcGG6hc">15m 42s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/integration-techniques-calc/partial-fraction-expansion-calc">Partiel brøk ekspansion</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Partiel+br%C3%B8k+ekspansion&video_ids=7IkufOBIw5g%2C5j81gyHn9i0">14m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/integration-techniques-calc/integration-using-trigonometric-identities-calc">Integration ved hjælp af trigonometriske identiteter</a> (1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Integration+ved+hj%C3%A6lp+af+trigonometriske+identiteter&video_ids=rElAJA9GyL4%2CxSeYS3V5di8%2Cn34jx1FIN8M">16m 12s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/integration-techniques-calc/trigonometric-substitution-calc">Trigonometrisk substitution </a> (1 Exercise, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Trigonometrisk+substitution+&video_ids=EV5dhv0A2wU%2C8Yl_u_Otcjg%2Cn4EK92CSuBE%2CnMrJ6nbOQhQ%2CWAoaBTWKLoI%2CCYjAgOTVfZk%2CfD7MbnXbTls%2Csw2p2tUIFpc">1h 7m 7s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/integration-applications-calc">Anvendelser af integration</a> (11 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/integration-applications-calc/area-between-curves-calc">Arealet mellem kurver</a> (4 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Arealet+mellem+kurver&video_ids=wQXYtsyfbqg%2CLbTH7MGMNjk">13m 44s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/integration-applications-calc/area-defined-by-polar-graphs-calc">Areal defineret med polære grafer</a> (2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Areal+defineret+med+pol%C3%A6re+grafer&video_ids=qVn_Lfec-Ac%2C-cR6FzM1zNE%2CKwR_ysrv3sg%2C4tWFdI7DkJ4">22m 5s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/integration-applications-calc/arc-length-calc">Buelængde</a> (2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Buel%C3%A6ngde&video_ids=8Y-snjheI9M%2COhISsmqv4_8%2CMtRXjXdXDow">22m 42s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/integration-applications-calc/arc-length-of-polar-graphs-calc">Buelængde for polær graf</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Buel%C3%A6ngde+for+pol%C3%A6r+graf&video_ids=CEPuNmVKnZM%2CsFlH7V7QDbQ">18m 9s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/integration-applications-calc/average-value-of-a-function-calc">Gennemsnitlig værdi af en funktion</a> (2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Gennemsnitlig+v%C3%A6rdi+af+en+funktion&video_ids=NCF4m8BDs7w%2C0rzL08BHr5c%2CwdAgEzdkFZI%2C59UeshgSuEE">24m 5s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/integration-applications-calc/area-and-net-change-calc">Area & net change</a> (3 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Area+%26+net+change&video_ids=okjt-OZY1JU%2C6FTiHeius1c">14m 22s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/integration-applications-calc/rectilinear-motion-integral-calc">Rectilinear motion (integral calc)</a> (1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Rectilinear+motion+%28integral+calc%29&video_ids=sLw902V40L0">8m 32s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/integration-applications-calc/solids-with-known-cross-sections-calc">Solids with known cross sections</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Solids+with+known+cross+sections&video_ids=tf4C8x8e7HQ%2CS-agS4YaxxU">16m 51s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/integration-applications-calc/disk-method-calc">Disc method</a> (1 Article, 1 Exercise, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Disc+method&video_ids=btGaOTXxXs8%2CvmS3cTaxKdA%2C43AS7bPUORc%2CXdzcU5JbVcA%2Cjxf7XqvZWWg%2CeLdhifUUMmk">39m 33s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/integration-applications-calc/washer-method-calc">Washer method</a> (1 Article, 2 Exercises, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Washer+method&video_ids=vhMl755vR5Q%2CThvc2s9aUP4%2COFNGpKGg9IQ%2CLKzpw_HUKNQ%2CWAPZihVUmzE%2Ci-Rb4_n929k">45m 55s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/integration-applications-calc/shell-method-calc">Shell method</a> (1 Article, 2 Exercises, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Shell+method&video_ids=6Ozz3J-LRrY%2C5ZGCqKAl_CA%2CR-Qu3QWOEiA%2CSfWrVNyP9E8%2C16aKF_eDGdw%2COelluIKIkCY%2Czg3-miF4qeg">44m 21s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/series-calc">Rækker</a> (16 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/series-calc/sequences-calc">Sekvenser</a> (4 Exercises, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Sekvenser&video_ids=KRFiAlo7t1E%2CHiY5UElqfhs%2Ct96N4zaP-s8%2CW2NnNKtquaE%2CyZ-GufE_uyA%2CHODIXLzIMIk%2CRkJBZALhXRA">25m 24s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/series-calc/seq-conv-diverg-calc">Sekvens konvergens og divergens</a> (1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Sekvens+konvergens+og+divergens&video_ids=lfZGtjSWcQs%2CmuqyereWEh4%2Cwzw9ll80Zbc%2C-XRQovTI04Q">19m 12s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/series-calc/series-calculus">Series review</a> (2 Exercises, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Series+review&video_ids=5jwXThH6fg4%2C0DBDuNYsciY%2CyvddTWa9ptU%2CUy_L8tnihDM%2CRM644gFKo_g%2C0-wa7voc0uM%2CpIO34mrW_Ro">39m 5s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/series-calc/finite-geometric-series-calc">Endelige geometriske rækker</a> (1 Exercise, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Endelige+geometriske+r%C3%A6kker&video_ids=rcRg_gO7-7E%2CCecgFWTg9pQ%2CAXP5PGSaaYk%2CDY9Q3qNmZnw%2CCf0-6ngH2gs">24m 19s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/series-calc/partial-sums-calc">Partial sums</a> (2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Partial+sums&video_ids=k9MEOgcc5KY%2CPpuj5gw78Vc%2Cbh1UrCGWz1k%2CqmWJ3nLII1M">19m 11s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/series-calc/geo-series-calc">Geometriske rækker</a> (1 Exercise, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Geometriske+r%C3%A6kker&video_ids=Sify7Bp7BmI%2CGk1mWXIpasE%2CwqnpSzEzq1w%2Cb-7kCymoUpg%2CtqTJZEglrvc%2C2BgWWsypzLA%2CHP8ZTo2iDtw">40m 4s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/series-calc/series-basics-challenge">Series basics challenge</a> (1 Exercise, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Series+basics+challenge&video_ids=qUNGPqCPzMg%2C5LMzbgfZ8cA%2Ci7iKLZQ-vCk%2CMkGXR8umLco%2CKvvFTPsZxU4%2CLwhJVURumAA">40m 37s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/series-calc/basic-convergence-tests-calc">Basic convergence tests</a> (3 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Basic+convergence+tests&video_ids=1yInzfzDDKY%2Cu1UKIljUWuc%2CxRyXz_UZ14Q%2CvspcKkcLuuA%2C4WChwIGKdaA">38m 19s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/series-calc/convergence-divergence-tests-calc">Comparison tests</a> (2 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Comparison+tests&video_ids=0tXxFPHzFFI%2CXoBlfbrdBpQ%2CAtbZZiSLemQ%2C0dWF35WPKfM%2C4yyLfrsSXQQ">27m 41s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/series-calc/ratio-and-alternating-series-tests-calc">Ratio & alternating series tests</a> (2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Ratio+%26+alternating+series+tests&video_ids=av947KCWf2U%2CUsMom3yNsX8%2CORTI4kk1okM%2CDPxf4-ta4PM">22m 45s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/series-calc/estimating-infinite-series-calc">Estimering af endelig rækker</a> (1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Estimering+af+endelig+r%C3%A6kker&video_ids=mUfp0KaXSj4%2C8I_KtODUekU%2Cgs9O255gdEY%2CvTYxY4IpmF8">35m 30s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/series-calc/power-series-intro-calc">Power series intro</a> (2 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Power+series+intro&video_ids=DlBQcj_zQk0%2CoXUJXsoCtDs%2CdEHZV7q5VV0%2C904esvqoJns%2CTeIgljoLIxA">37m 57s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/series-calc/taylor-series-calc">Taylor & Maclaurin polynomials intro</a> (2 Exercises, 11 Videos | <a href="https://www.youtube.com/watch_videos?title=Taylor+%26+Maclaurin+polynomials+intro&video_ids=epgwuzzDHsQ%2C1LxhXqD3_CE%2CtWNxdsWoAd4%2CRRYh4cqv6ZQ%2Ceo9dra_yIbc%2CwgkRH5Uoavk%2CyUUPP70Fhpo%2C2KWifFPOy5s%2CIeHlXGpfaeA%2CAFMXixBVP-0%2CaMIyUsF75Pw">1h 28m 50s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/series-calc/maclaurin-taylor-calc">Maclaurin series of sin(x), cos(x), and eˣ</a> (1 Exercise, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Maclaurin+series+of+sin%28x%29%2C+cos%28x%29%2C+and+e%CB%A3&video_ids=WWe7pZjc4s8%2CLlKvubIqHc8%2CJYQqml4-4q4%2CmgNtPOgFje0%2CkXULrUxGzmU%2CBAFOOQxiwkU%2C0BdZZCwDE-I%2C8dMLK2Wueaw">54m 24s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/series-calc/power-series-calc">Potensrække funktion repræsentation ved hjælp af algebra</a> (2 Exercises, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Potensr%C3%A6kke+funktion+repr%C3%A6sentation+ved+hj%C3%A6lp+af+algebra&video_ids=EXIUYib9d8M%2C6ynr9N-NQ8E%2Caiwy2fNF_ZQ%2CNgYrsqoKXpM%2CznT4W6n3WkI%2CixFgd1lFe9g">44m 23s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/ap-calc-topic">AP Calculus spørgsmål til at øve sig på</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/ap-calc-topic/ap-calculus-ab-questions">AP Calculus AB questions</a> (34 Videos | <a href="https://www.youtube.com/watch_videos?title=AP+Calculus+AB+questions&video_ids=_3VKtPGbSzk%2CZsxMPW083mI%2CuvNkvT6XgBo%2C9Fqy_stBdFk%2C5QY8yvZViO0%2CxmVBv7vk3Gg%2CNcv6gt2Luew%2CsdFT_8AJsy0%2C8OpvFcwKK7w%2CwN6LPqhnO6M%2CC06ELfztA9g%2Cn3BtxJkEuUU%2Cj_kI7OcaLKI%2Cbba11I93w8o%2Col4bW-3qs_s%2Ca601bUPEYUs%2C4ThUMRAvUkY%2Cs3jvXHQlO-c%2CqSb78ptLZU0%2CppBJWf_Wdmc%2CZ3X6QqezqUg%2C2axaRJQkfVk%2C9UhChwcVWq8%2Cv-H_7o7EMoU%2CtnoPnyvVjyc%2COvMBNVi5bLY%2CM_ADc9jkBig%2CyX3JpmEgNHo%2Cn9UvuzI2fq0%2ChAAIgNzBGg0%2CR-2Uw10QgIo%2Cfr-8tjLoeDw%2CRuEJzPQ_N10%2CucghWyc2_qs">3h 45m 5s</a> )</li>
<li><a href="https://da.khanacademy.org/math/calculus-all-old/ap-calc-topic/ap-calculus-bc-questions">AP Calculus BC questions</a> (27 Videos | <a href="https://www.youtube.com/watch_videos?title=AP+Calculus+BC+questions&video_ids=UmU0L6j-48s%2CZFBwkvVa6NE%2CeU7MCBQTvoY%2CzhNP1LM479g%2C1RGnb-QvQzU%2CkWQzA37MqAk%2CDYCwLAtNsjQ%2Cwwc5yi3c4gY%2CAZ6B7J8K1VU%2C59Jop9bZ-mw%2CIAJHoGeevSQ%2CupO6Mh862PI%2CxPb6HLM3xEQ%2C_l0Mfsu__gU%2CsPTuCE5zd3s%2CxvvI_QRYxBY%2CS4oOSgTj9C8%2Co_vMb655dFk%2CwtLTb_VaI-k%2C73eSiVcg4tQ%2Cv-4QScXlN0o%2C_G9JwTwjulA%2ClpXCvX6ZenM%2C1BGlbx67B6s%2CNQazgcu8c7s%2Cl1hJABkcuYI%2Cm6oMgtGsAa4">3h 5m 5s</a> )</li>
</ul></li>
</ul>
<h2 id="matematik-for-sjov-og-ære-5-topics"><a href="https://da.khanacademy.org/math/math-for-fun-and-glory">Matematik for sjov og ære</a> (5 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/math/math-for-fun-and-glory/vi-hart">Vi Hart</a> (9 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/math-for-fun-and-glory/vi-hart/spirals-fibonacci">Spiraler, Fibonacci og det at være en plante</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Spiraler%2C+Fibonacci+og+det+at+v%C3%A6re+en+plante&video_ids=ahXIMUkSXX0%2ClOIP_Z_-0Hs%2C14-NdQwKz9w%2CgBxeju8dMho%2Co6W6P8JZW0o">22m 18s</a> )</li>
<li><a href="https://da.khanacademy.org/math/math-for-fun-and-glory/vi-hart/doodling-in-math">Kruseduller i Matematik</a> (11 Videos | <a href="https://www.youtube.com/watch_videos?title=Kruseduller+i+Matematik&video_ids=DK5Z709J2eo%2CCfJzrmS9UfY%2Ce4MSN6IImpI%2CYhlv5Aeuo_k%2Cik2CZqsAw28%2Cv-pyuaThp-c%2Co6KlpIWhbcw%2CheKK95DAKms%2CEdyociU35u8%2CdsvLLKQCxeA%2COc8sWN_jNF4">1h 5m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/math/math-for-fun-and-glory/vi-hart/hexaflexagons">Hexaflexagons</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Hexaflexagons&video_ids=VIVIegSt81k%2CpaQ10POrZh8%2CAmN0YyaTD60%2CGTwrVAbV56o">15m 47s</a> )</li>
<li><a href="https://da.khanacademy.org/math/math-for-fun-and-glory/vi-hart/pi-tau">Om pi og tau</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Om+pi+og+tau&video_ids=FtxmFlMLYRI%2CjG7vhMMXagQ%2CD2xYjiL8yyE%2CuXoh6vi6J5U%2C5iUh_CSjaSw">23m 8s</a> )</li>
<li><a href="https://da.khanacademy.org/math/math-for-fun-and-glory/vi-hart/singing">Sang (og lyde)</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Sang+%28og+lyde%29&video_ids=Av_Us6xHkUc%2COCYZTg3jahU%2Ci_0DXxNeaQ0%2CWkmPDOq2WfA">26m 33s</a> )</li>
<li><a href="https://da.khanacademy.org/math/math-for-fun-and-glory/vi-hart/mobius-strips">Möbius strimler</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=M%C3%B6bius+strimler&video_ids=Am-a5x9DGjg%2C4mdEsouIXGM">12m 7s</a> )</li>
<li><a href="https://da.khanacademy.org/math/math-for-fun-and-glory/vi-hart/thanksgiving-math">Thanksgiving matematik</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Thanksgiving+matematik&video_ids=XwIs1nlDQ2I%2C4tsjCND2ZfM%2CF5RyVWI4Onk%2CpjrI91J6jOw">12m 53s</a> )</li>
<li><a href="https://da.khanacademy.org/math/math-for-fun-and-glory/vi-hart/infinity">Uendelig . . .</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Uendelig+.+.+.&video_ids=TINfzxSnnIE%2C23I5GS4JiDg%2ClA6hE7NFIK0">35m 1s</a> )</li>
<li><a href="https://da.khanacademy.org/math/math-for-fun-and-glory/vi-hart/vi-cool-stuff">Andre cool ting</a> (12 Videos | <a href="https://www.youtube.com/watch_videos?title=Andre+cool+ting&video_ids=X1E7I7_r3Cw%2Cz6lL83wl31E%2CGFLkou8NvJo%2CdBVoIUASFS0%2Ca5z-OEIfw3s%2CGx5D09s5X6U%2Ca-e8fzqv3CE%2CsxnX5_LbBDU%2C8EmhGOQ-DNQ%2CtoKu2-qzJeM%2CWU3AlAOCxN0%2CN-7tcTIrers">1h 2m 40s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/math-for-fun-and-glory/puzzles">Gåder</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/math-for-fun-and-glory/puzzles/brain-teasers">Gåder</a> (11 Videos | <a href="https://www.youtube.com/watch_videos?title=G%C3%A5der&video_ids=S5LEdJfCsHM%2CZN48Ub3k8uE%2C69rDtSpshAw%2Cl3OkPYhDi9w%2CK4pocYXOmTQ%2CrBaCDC52NOY%2C-xYkTJFbuM0%2CjqpQPxWj8gE%2CWNhxkpmVQYw%2C9QduzzW10uA%2CwRxzDOloS3o">1h 54m 45s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/math-for-fun-and-glory/amc-10">AMC 10</a> (1 Topic)
<ul>
<li><a href="https://da.khanacademy.org/math/math-for-fun-and-glory/amc-10/2013-amc-10-a">2013 AMC 10 A</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=2013+AMC+10+A&video_ids=-UagBvxCReA%2CrcLw4BlxaRs%2CMyanDgvTb2g%2CduomXwMSPv8%2CcU9L1bTDePM">30m</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/math-for-fun-and-glory/aime">AIME</a> (1 Topic)
<ul>
<li><a href="https://da.khanacademy.org/math/math-for-fun-and-glory/aime/2003-aime">2003 AIME</a> (23 Videos | <a href="https://www.youtube.com/watch_videos?title=2003+AIME&video_ids=IAmi68voZdM%2CJU67TL2L1CA%2C17st-s5gg10%2CtbQ_7zvRoN4%2CgXnHodHNusg%2CwQ34EIfd-5A%2CEzE53aPGbrQ%2CyXg5CYuCcU4%2CFxHPyN0eLbs%2Cl9j26EOvTYc%2C6h-3YntZXkM%2CZFN63oTeYzc%2C9eWyvWq9CCs%2CbbeWLtarzrE%2CZSESJ8TeGSI%2CHh3iY4tdkGI%2CsmtrrefmC40%2CKD46pC_KFWk%2CvKMNRcctwL4%2CEc-BKdC8vOo%2C2eLAEMRrR7Q%2CTljVBB7gxbE%2CJTpXK2mENH4">4h 17m</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/math/math-for-fun-and-glory/math-warmup">Matematik - opvarmning</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/math/math-for-fun-and-glory/math-warmup/probabilty-warmup">Sandsynlighedsregning - opvarmning</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Sandsynlighedsregning+-+opvarmning&video_ids=o3y7CzT-LRk%2CtDdtAF3WtIY">3m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/math/math-for-fun-and-glory/math-warmup/random-sample-warmup">Stikprøver - opvarmning</a> (1 Exercise, 1 Interactive, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Stikpr%C3%B8ver+-+opvarmning&video_ids=NaO01BO8X70%2C8hcanS-j8Ho">3m 50s</a> )</li>
<li><a href="https://da.khanacademy.org/math/math-for-fun-and-glory/math-warmup/arithmetic-warmups">Aritmetik - opvarmning</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Aritmetik+-+opvarmning&video_ids=UCCNoXqCGZQ%2Cv3gdX07Q6qE%2CMzY6PTY0Bks">11m 21s</a> )</li>
</ul></li>
</ul>
<h1 id="biologi-43-topics"><a href="https://da.khanacademy.org/science">Biologi</a> (43 Topics)</h1>
<h2 id="fysik-20-topics"><a href="https://da.khanacademy.org/science/physics">Fysik</a> (20 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/science/physics/one-dimensional-motion">En-Dimensionel Bevægelse</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/physics/one-dimensional-motion/introduction-to-physics-tutorial">Introduction to physics</a> (2 Articles, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Introduction+to+physics&video_ids=uIojjqSm0m4">9m 30s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/one-dimensional-motion/displacement-velocity-time">Forskydning, hastighed og tid</a> (3 Articles, 2 Exercises, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Forskydning%2C+hastighed+og+tid&video_ids=ihNZlp7iUHE%2C3yaZ7lkQPUQ%2CoRKxmXwLvUU%2CawzOvyMKeMA%2ClQ-dvt3V4yQ%2CpfTTHx9kCHk%2CGtoamALPOP0">1h 1m 52s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/one-dimensional-motion/acceleration-tutorial">Acceleration</a> (3 Articles, 1 Exercise, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Acceleration&video_ids=FOkQszg1-j8%2Cp4DTormtEG0%2CfQt69_Q2CTw%2Cd-_eqgj5-K8%2CDD58B2siDv0">46m 47s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/one-dimensional-motion/kinematic-formulas">Kinematiske formler og Projektilbevægelse</a> (1 Article, 2 Exercises, 1 Quiz, 10 Videos | <a href="https://www.youtube.com/watch_videos?title=Kinematiske+formler+og+Projektilbev%C3%A6gelse&video_ids=MAS6mBRZZXA%2CVYgSXBjEA8I%2CfQt69_Q2CTw%2CwlB0x9W-qBU%2CT0zpF_j7Mvo%2CIYS4Bd9F3LA%2CP7LKEkcNibo%2C2ZgBJxT9pbU%2C1E3Z_R5AHdg%2CP3jCdsWJa38">1h 46m 23s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/one-dimensional-motion/old-projectile-motion">Old videos on projectile motion</a> (1 Test, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Old+videos+on+projectile+motion&video_ids=15zliAL4llE%2CemdHj6WodLw%2CY5cSGxdDHz4%2C-W3RkgvLrGI%2CdlpmllTx5MY">45m 58s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/physics/two-dimensional-motion">Two-dimensional motion</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/physics/two-dimensional-motion/two-dimensional-projectile-mot">To-dimensionel Projektilbevægelse</a> (2 Articles, 2 Exercises, 1 Quiz, 12 Videos | <a href="https://www.youtube.com/watch_videos?title=To-dimensionel+Projektilbev%C3%A6gelse&video_ids=jmSWImPs6fQ%2Cxp6ibuI8UuQ%2CZZ39o1rAZWY%2Ca5QnXi_lZII%2CUXORCpvKYiI%2CsTp4cI9VyCU%2CDNoDJlB0ygU%2CjNESnky3RVg%2C2QjdcVTgTTA%2CFaF3v-ezbSk%2C595Tiga1gIg%2Cjl_gQ-eL3xo">2h 13m 18s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/two-dimensional-motion/optimal-projectile-angle">Optimal angle for a projectile</a> (1 Test, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Optimal+angle+for+a+projectile&video_ids=RhUdv0jjfcE%2CXtAB9GOfLiM%2C-h_x8TwC1ik%2Csnw0BrCBQYQ">23m 22s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/physics/forces-newtons-laws">Kræfter og Newtons love om Bevægelse</a> (7 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/physics/forces-newtons-laws/newtons-laws-of-motion">Newtons love om bevægelse</a> (3 Articles, 3 Exercises, 1 Quiz, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Newtons+love+om+bev%C3%A6gelse&video_ids=5-ZFOhHQS68%2CCQYELiTtUs8%2CD1NubiWCpQg%2Cou9YMWlJgkE%2C24vtg9Ehr0Q%2CBy-ggTfeuJU%2CVfpKzwrhmqQ">1h 6m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/forces-newtons-laws/normal-contact-force">Normal force</a> (2 Articles, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Normal+force&video_ids=1WOrgrIcQZU%2ChoRsHNSrMpc%2C1CTdrWFNkGo%2CN_J5SeI_62U">36m 38s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/forces-newtons-laws/balanced-unbalanced-forces">Balancerede og ubalancerede kræfter</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Balancerede+og+ubalancerede+kr%C3%A6fter&video_ids=oNgo9bbDi7Q%2CIgYUR7aFY-c">14m 48s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/forces-newtons-laws/lubricon-vi">Langsom sok på Lubricon VI</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Langsom+sok+p%C3%A5+Lubricon+VI&video_ids=CEdXvoAv_oM%2ChJ18CrKU3Zc">11m 59s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/forces-newtons-laws/inclined-planes-friction">Skråt plan og friktion</a> (2 Articles, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Skr%C3%A5t+plan+og+friktion&video_ids=TC23wD34C7k%2CMz2nDXElcoM%2Cv8ODIMqbQ44%2CBukTc4q9BMc%2CiA7Thhnzc64%2CJ9BWNiOSGlc%2CZA_D4O6l1lo">59m 11s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/forces-newtons-laws/tension-tutorial">Tension</a> (1 Article, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Tension&video_ids=9BJ_WWRgtLc%2CaHlOp5nYs28%2CEEnzhdQJUYA%2C_UrfHFEBIpU%2CzwDJ1wVr7Is%2C52wxpYnS64U">1h 18m 41s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/forces-newtons-laws/treating-systems">Treating systems</a> (1 Test, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Treating+systems&video_ids=QKXeZFwFPS0%2CUrfLAlk2b_8%2CBrLbtCnrPaA%2Cibdidr-bEvI%2C_0nDUXO0k7o">51m 10s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/physics/centripetal-force-and-gravitation">Centripetal force and gravitation</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/physics/centripetal-force-and-gravitation/centripetal-acceleration-tutoria">Centripetal acceleration</a> (1 Article, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Centripetal+acceleration&video_ids=ITA1rW5UraU%2CvZOk8NnjILg%2CNH1_sO8QY3o%2CMKnI3425EMI%2CXjCEumlJBno%2CwjZb3zPuoeA%2C4SQDybFjhRE%2CzcnnZz2pCSg">1h 5s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/centripetal-force-and-gravitation/centripetal-forces">Centripetal forces</a> (1 Article, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Centripetal+forces&video_ids=FfNgm-w9Krw%2C2lcaBPLLoLo%2CXpgsg-fY4DY%2C0cDmgCcX_nU">46m 59s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/centripetal-force-and-gravitation/gravity-newtonian">Newton's law of gravitation</a> (1 Test, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Newton%27s+law+of+gravitation&video_ids=Xcel427Ezl0%2CIuBoeDihLUc%2CoIZV-ixRTcY%2C36Rym2q4H94%2CR5CRZONOHCU%2C9BNkmfHYYYI%2C391txUI76gM%2C8i0j3j16yFk">1h 17m 53s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/physics/work-and-energy">Arbejde og energi</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/physics/work-and-energy/work-and-energy-tutorial">Arbejde og energi</a> (6 Articles, 1 Quiz, 11 Videos | <a href="https://www.youtube.com/watch_videos?title=Arbejde+og+energi&video_ids=2WS1sG9fhOk%2C3mier94pbnU%2Ckw_4Loo1HR4%2C30o4omX5qfo%2CsZG-zHkGR4U%2CudgMh3Y-dTk%2Cz01om-Qk2xM%2CdclP0R2wf7g%2CYvacYWgygaA%2CqWR7SBsnLwo%2CRpbxIG5HTf4">1h 30m 21s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/work-and-energy/hookes-law">Springs and Hooke's Law</a> (2 Articles, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Springs+and+Hooke%27s+Law&video_ids=ZzwuHS9ldbY%2CeVl5zs6Lqy0%2CP3QV9ktuYlQ%2C_8RohfPMklM%2CBnqKCCFKG0M">59m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/work-and-energy/mechanical-advantage">Mechanical advantage</a> (1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Mechanical+advantage&video_ids=pfzJ-z5Ij48%2CDiBXxWBrV24%2CvSsK7Rfa3yA">27m 26s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/physics/linear-momentum">Impacts and linear momentum</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/physics/linear-momentum/momentum-tutorial">Impuls</a> (3 Articles, 1 Quiz, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Impuls&video_ids=XFhntPxow0U%2CuMYAc04D0ak%2C1i8VMBvMQ_E%2CvPkkCOlGND4%2CCFygKiTB-4A%2CleudxqivIJI%2C8bHPj3ll0vs">1h 3m 25s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/linear-momentum/elastic-and-inelastic-collisions">Elastic and inelastic collisions</a> (1 Article, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Elastic+and+inelastic+collisions&video_ids=8OB8eIPgEkQ%2C9yXrEZy5WME%2COTtI4urvgDg%2CokFcjFD5umU">52m 53s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/linear-momentum/center-of-mass">Center of mass</a> (1 Article, 1 Test, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Center+of+mass&video_ids=VrflZifKIuw%2CB0Ard8jDiHM">15m 16s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/physics/torque-angular-momentum">Moments, torque, and angular momentum</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/physics/torque-angular-momentum/rotational-kinematics">Rotational kinematics</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Rotational+kinematics&video_ids=garegCgMxxg%2CdVYYh8C80zo%2CzAx61CO5mDw%2CTBlDBaUGqNc">51m 42s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/torque-angular-momentum/torque-tutorial">Torque, moments, and angular momentum</a> (2 Articles, 1 Test, 13 Videos | <a href="https://www.youtube.com/watch_videos?title=Torque%2C+moments%2C+and+angular+momentum&video_ids=QhuJn8YBtmg%2CESusD8HRLBI%2CpeXbz0frV74%2CZQnGh-t25tI%2CxusMSv2z77s%2ClwO0V5FitAo%2Co7_zmuBweHI%2C5eX5WnPDnvs%2CnFSMu3bxXVA%2CCbeCE1HoGfA%2CKFrhclyEpVM%2CviLpmZtQYzE%2Cs38l6nmTrvM">2h 39m 9s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/physics/mechanical-waves-and-sound">Mechanical waves and sound</a> (6 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/physics/mechanical-waves-and-sound/harmonic-motion">Harmonisk Bevægelse</a> (1 Quiz, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Harmonisk+Bev%C3%A6gelse&video_ids=ZcZQsj6YAgU%2CtLOWcfeJ-74%2CkLWXLbciobw%2C6M_bjRzyUn0%2C0ORHDj3VEEY%2CWPa5IgLgDyQ">1h 11m 12s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/mechanical-waves-and-sound/simple-harmonic-motion-with-calculus">Simple harmonic motion (with calculus)</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Simple+harmonic+motion+%28with+calculus%29&video_ids=Nk2q-_jkJVs%2CxoUppFlif04%2CoqBHBO8cqLI">29m 33s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/mechanical-waves-and-sound/mechanical-waves">Mechanical waves</a> (1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Mechanical+waves&video_ids=c38H6UKt3_I%2CtJW_a6JeXD8%2C9WZM68aVnGk">42m 13s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/mechanical-waves-and-sound/sound-topic">Lyd</a> (8 Videos | <a href="https://www.youtube.com/watch_videos?title=Lyd&video_ids=nGKffdaI4Pg%2C-_xZZt99MzY%2CUgE2GIQwUCw%2CyF4cvbAYjwI%2CVlaGxYjnoPY%2C_p-WyPg1sbU%2C46V8qqVRirk%2CsTcqtljxLOk">45m 3s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/mechanical-waves-and-sound/doppler-effect">The Doppler effect</a> (6 Videos | <a href="https://www.youtube.com/watch_videos?title=The+Doppler+effect&video_ids=dc7l7Qqa8xk%2CkGrk6V8tWDY%2CKkJ0wL9f2VY%2C4Xgk3vusxT8%2C2TTu0TvB6N0%2Ci4ZiV6NIs98">50m 47s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/mechanical-waves-and-sound/standing-waves">Standing waves</a> (1 Quiz, 1 Test, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Standing+waves&video_ids=lpee2Qddqjo%2CoTjTXS40pqs%2CgT0IqL1dyyk%2CBhQUW9s-R8M%2C1S4DtuMY88I%2CCa91iOVGd9A%2CpI6iJg_W1ug">1h 20m 32s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/physics/fluids">Væsker</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/physics/fluids/density-and-pressure">Density and Pressure</a> (1 Article, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Density+and+Pressure&video_ids=nVPrWz8Jfgo%2CPn5YEMwQb4Y%2ClWDtFHDVqqk%2C5EWjlpc0S00%2Ci6gz9VFyYks">43m 11s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/fluids/buoyant-force-and-archimedes-principle">Buoyant Force and Archimedes' Principle</a> (1 Article, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Buoyant+Force+and+Archimedes%27+Principle&video_ids=vzID7ds600c%2CwwjtuZ5vTvc">18m 22s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/fluids/fluid-dynamics">Fluid Dynamics</a> (2 Articles, 1 Test, 10 Videos | <a href="https://www.youtube.com/watch_videos?title=Fluid+Dynamics&video_ids=G4CgOF4ccXk%2CuqyLOuAzbvo%2CQX2YLR09Q78%2CNGpJPz44JYc%2CHnfBFeLunk4%2CxlJYYM5TWoA%2CG3bO8RcRgxQ%2CZcaPndok1hc%2CQz1g6kqvUG8%2CpmagWO-kQ0M">1h 21m 48s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/physics/thermodynamics">Termodynamik</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/physics/thermodynamics/temp-kinetic-theory-ideal-gas-law">Temperature, kinetic theory, and the ideal gas law</a> (2 Articles, 1 Quiz, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Temperature%2C+kinetic+theory%2C+and+the+ideal+gas+law&video_ids=tQcB9BLUoVI%2Cx34OTtDE5q8%2CHvYUKRMT0VI%2C5B1i26dUwME%2CUekR9J31a2o%2CxQ9D4Jz95-A">58m 16s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/thermodynamics/specific-heat-and-heat-transfer">Specific heat and heat transfer</a> (1 Article, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Specific+heat+and+heat+transfer&video_ids=WU7TfO-iaK8%2C8GQvMt-ow4w%2CPA-T6lMxCBI%2C6f553BGaufI%2ChDP6egLrsdM">45m 3s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/thermodynamics/laws-of-thermodynamics">Laws of thermodynamics</a> (2 Articles, 1 Quiz, 1 Test, 19 Videos | <a href="https://www.youtube.com/watch_videos?title=Laws+of+thermodynamics&video_ids=5EU-y1VF7g4%2ClKq-10ysDb4%2CXb05CaG7TsQ%2CaOSlXuDO4UU%2CobeGVTOZyfE%2CM5uOIy-JTmo%2CqSFY7GKhSRs%2CiiFWoXQPOJc%2CaAfBSJObd6Y%2CixRtSV3CXPA%2CsPz5RrFus1Q%2CPFcGiMLwjeY%2CWLKEVfLFau4%2CxJf6pHqLzs0%2CaKRDvSZ-igA%2CdFFzAP2OZ3E%2CM_5KYncYNyc%2CpQWwP7YYH6o%2CLUoUb4hGMH8">5h 8m 20s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/physics/electric-charge-electric-force-and-voltage">Electric charge, electric force, and voltage</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/physics/electric-charge-electric-force-and-voltage/charge-electric-force">Charge and electric force (Coulomb's law)</a> (1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Charge+and+electric+force+%28Coulomb%27s+law%29&video_ids=IDQYakHRAG8%2C2GQTfpDE9DQ%2CZgDIX2GOaxQ%2CSn5CwAODVdI">45m 58s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/electric-charge-electric-force-and-voltage/electric-field">Electric field</a> (8 Videos | <a href="https://www.youtube.com/watch_videos?title=Electric+field&video_ids=_4VC3IHbuW8%2CZ_ddImEdmCQ%2C-LtvW5783zE%2CqzUE0ey1yQA%2CClLmdWL0bIQ%2C0YOGrTNgGhE%2CprLfVucoxpw%2CTxwE4_dXo8s">1h 32m 43s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/electric-charge-electric-force-and-voltage/electric-potential-voltage">Electric potential energy, electric potential, and voltage</a> (1 Quiz, 1 Test, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Electric+potential+energy%2C+electric+potential%2C+and+voltage&video_ids=elJUghWSVh4%2CCqsYCIjSm9A%2CzqGvUbvVQXg%2CwEQxtUwiV1E%2Cks1B1_umFk8%2CMxjdCPeoYvg">1h 2m 24s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/physics/circuits-topic">Circuits</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/physics/circuits-topic/circuits-resistance">Ohm's law and circuits with resistors</a> (2 Articles, 11 Videos | <a href="https://www.youtube.com/watch_videos?title=Ohm%27s+law+and+circuits+with+resistors&video_ids=F_vLWkkOETI%2C7vHh1sfZ5KE%2CZrMw7P6P2Gw%2C3NcIK0s3IwU%2Cj-iR7puLj6M%2C4rsswT_Rv1M%2C3zt7DWUiaDE%2COYerdzZPSI0%2CBt6V7D5av9A%2CyE3eQ6q39f4%2CuUhBEufepWk">1h 38m 1s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/circuits-topic/circuits-with-capacitors">Circuits with capacitors</a> (6 Videos | <a href="https://www.youtube.com/watch_videos?title=Circuits+with+capacitors&video_ids=u-jigaMJT10%2CngOC4eUQl8Y%2CSIU_9SMd5q0%2C-MaD9Ycy3a4%2CP-1mWGeJjmg%2Crkntp3_cZl4">51m 44s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/physics/magnetic-forces-and-magnetic-fields">Magnetic forces, magnetic fields, and Faraday's Law</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/physics/magnetic-forces-and-magnetic-fields/magnets-magnetic">Magnets and Magnetic Force</a> (1 Article, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Magnets+and+Magnetic+Force&video_ids=8Y4JSp5U82I%2CNnlAI4ZiUrQ%2CzA0fvwtvgvA%2Co_puKe_lTKk%2CLTuGQy4rmmo%2Cb1QFKLZC11U%2CjQ2nD8ZGeEw">1h 12m 58s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/magnetic-forces-and-magnetic-fields/magnetic-field-current-carrying-wire">Magnetic field created by a current</a> (1 Article, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Magnetic+field+created+by+a+current&video_ids=Ri557hvwhcM%2Cl3hw0twZSCc%2C4tctB1wZNiI%2CKuUMUvwvML8">43m 50s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/magnetic-forces-and-magnetic-fields/electric-motors">Electric motors</a> (6 Videos | <a href="https://www.youtube.com/watch_videos?title=Electric+motors&video_ids=pAgPfr7MkkU%2CcePkWyXRvIQ%2CXMkUDyl1ZRo%2CKDHuWxy53uM%2CE34CftP455k%2Cenr7JqvehJs">58m 57s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/magnetic-forces-and-magnetic-fields/magnetic-flux-faradays-law">Magnetic flux and Faraday's law</a> (2 Articles, 1 Quiz, 1 Test, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Magnetic+flux+and+Faraday%27s+law&video_ids=m1PPujngqAw%2CvcStzn55MG0%2CxxZenoBs2Pg%2C9q-T8o1HUcw%2Crqq11Id_x5E%2CmqIkaCXbjCw">44m 36s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/physics/light-waves">Light waves</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/physics/light-waves/introduction-to-light-waves">Introduction to light waves</a> (1 Article, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduction+to+light+waves&video_ids=7eutept5h0Q%2CHH58VmUbOKM">25m 32s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/light-waves/interference-of-light-waves">Interference of light waves</a> (1 Test, 9 Videos | <a href="https://www.youtube.com/watch_videos?title=Interference+of+light+waves&video_ids=oTjTXS40pqs%2CPk6s2OlKzKQ%2C1abpdO27KTo%2C5-2RZsU8e3U%2CF6dZjuw1KUo%2C7CmbItRjM-Y%2CT-kgoxhFSmU%2CoXowkdgJPO4%2CyWkga94iBzU">1h 43m 40s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/physics/geometric-optics">Geometric optics</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/physics/geometric-optics/reflection-refraction">Reflection and refraction</a> (8 Videos | <a href="https://www.youtube.com/watch_videos?title=Reflection+and+refraction&video_ids=sd0BOnN6aNY%2CXR52dXLyz-M%2Cy55tzg_jW9I%2CjxptCXHLxKQ%2CHahjsBApxLE%2C10LuSfZZa3E%2CWRuatAcd2WY%2CHRuLhY0NAMI">1h 9m 48s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/geometric-optics/mirrors">Mirrors</a> (6 Videos | <a href="https://www.youtube.com/watch_videos?title=Mirrors&video_ids=nrOg85VPQgw%2C8X1AS9qD5AQ%2C7m0u6dxA5Xo%2CdWY25vb1ZB0%2COIkD1viOMWk%2CoeGC4-aQd_Q">1h 3m 51s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/geometric-optics/lenses">Lenses</a> (1 Test, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Lenses&video_ids=K0sjZ5nqQ7g%2CxxF_mdoZom0%2CVh70PyitQzo%2Crse0I7rZ8jM%2CacQYX4nwhCk%2C7GV1UZSTNJg%2CGPomGcZ3_kk%2Ceji8zKa7H7s">1h 16m 57s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/physics/special-relativity">Special relativity</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/physics/special-relativity/michelson-and-morleys-luminiferous-ether-experiment">Historical background</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Historical+background&video_ids=iAPYsOaq-VY%2C88hs5LcCoX4%2C3G_Q6AggQF8">23m 34s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/special-relativity/minkowski-spacetime">Minkowski spacetime</a> (6 Videos | <a href="https://www.youtube.com/watch_videos?title=Minkowski+spacetime&video_ids=PRx_R9iIWk4%2CF7BU1sXtul4%2COIwp8m3S30c%2Cii-KBKSODek%2CnEqexIckVCM%2CqzNokxFaAAg">51m 41s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/special-relativity/lorentz-transformation">Lorentz transformation</a> (6 Videos | <a href="https://www.youtube.com/watch_videos?title=Lorentz+transformation&video_ids=HIQ5hnm61LQ%2CG-aTU0RXJww%2CZ9DuKef9jkw%2C_qiFIMviIeM%2CLm_Yn_MZU6k%2Cxb8nBY4MDC8">53m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/special-relativity/einstein-velocity-addition">Einstein velocity addition</a> (1 Quiz, 1 Test, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Einstein+velocity+addition&video_ids=1F1tFouUGTU%2CF9BW57exRn8%2C0XkyAPXq55k%2CBiua3BgRf54%2CiTyBlnTK2ac%2C2BVGig1LXLs">43m 15s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/physics/quantum-physics">Quantum physics</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/physics/quantum-physics/photons">Photons</a> (1 Article, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Photons&video_ids=Zqt3btS1FwE%2CQwtz-QSDyOM%2CvuGpUFjLaYE">22m 37s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/quantum-physics/atoms-and-electrons">Atoms and electrons</a> (1 Article, 1 Quiz, 9 Videos | <a href="https://www.youtube.com/watch_videos?title=Atoms+and+electrons&video_ids=iTRxuBxttj8%2COFwskHrtYQ4%2C_vK5KPycEvA%2CQcd0IhW_85I%2CHbuh5m3p0x0%2C7Zin8hG9Nhw%2CnJ-PtF14EFw%2CAznXSVx2xX0%2CKv-hRvEOjuA">1h 32m 34s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/quantum-physics/quantum-numbers-and-orbitals">Quantum numbers and orbitals</a> (1 Article, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Quantum+numbers+and+orbitals&video_ids=PZIoFD_Z73M%2CKrXE_SzRoqw%2CqLU0X154wlE">34m 55s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/quantum-physics/in-in-nuclei">Nuclei</a> (1 Quiz, 1 Test, 10 Videos | <a href="https://www.youtube.com/watch_videos?title=Nuclei&video_ids=9b8qZ6OHZ5s%2Cgqrh8wbPXVE%2C3koOwozY4oc%2CmzLOT6uOfO4%2C9REPnibO4IQ%2CdnYyMHSSb8M%2CH7nrVDV8ahc%2CHTDop6eEsaA%2CHqzakjo_dYg%2CvnNlvnnBX0I">1h 43m 40s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/physics/discoveries">Discoveries and projects</a> (12 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/physics/discoveries/magnetism">Discovery of Magnetism</a> (1 Exercise, 1 Interactive, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Discovery+of+Magnetism&video_ids=l8tW0EBONHI%2CvzCVnLwaRKc%2C2hRIKH-Dca0%2CJQ_Wojqtn7c%2CWII2kc2QYdU%2CD8NVS7itIOo%2CLjC-H-RAclc">6m 38s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/discoveries/magnetic-fields">Opdagelsen af magnetiske felter</a> (4 Interactives, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Opdagelsen+af+magnetiske+felter&video_ids=SysHZ6-yai0%2Cx2V_Lz6AWEk%2CZML-uf36gys%2CWxgNAsiOXY4%2Cmi5cWPjhJ2c">5m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/discoveries/measure-magnets">Måling af magnetfelter</a> (2 Articles, 1 Interactive, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=M%C3%A5ling+af+magnetfelter&video_ids=A_ToB9T-de8%2C5K8U9QOj_TE%2C1NjuXzHByN8%2C2uzDuGp0HQ0">5m 49s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/discoveries/batteries">Batterier</a> (1 Article, 1 Interactive, 12 Videos | <a href="https://www.youtube.com/watch_videos?title=Batterier&video_ids=ccQ332zljAI%2CS6_7zk_Ht_g%2CE4WYJC85UQk%2C3iNCb7P_bdY%2CGKohvH75Mqg%2C6U9f8Q3Y_SY%2Ce3XNXl_6NSg%2C6bsu9w9iIQY%2Cw6AWQb3r9o8%2CNue0DINMRPM%2CPI01CwKmiZE%2Coxpr5dhqqyw">18m 34s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/discoveries/electromagnet">Elektromagnet</a> (2 Articles, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Elektromagnet&video_ids=9u0ApENWT-Q%2CPOrFhETplGs%2Cx-6yMjpsqJU%2CKCVl-zdGYUU%2CS6_7zk_Ht_g">3m 45s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/discoveries/resistance">modstand</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=modstand&video_ids=ZjTS8dBsF4w%2CY8yga-UzFBY%2CEYlT-9KYPO0%2CLsvqEN3XVX4">4m 55s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/discoveries/electric-motor">Electric Motor</a> (1 Article, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Electric+Motor&video_ids=BMvR86gG0Ew%2Cjabo8iTesqQ">8m 7s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/discoveries/electrostatics">Electrostatik</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Electrostatik&video_ids=nrcKGJj7RVw%2C3B3gBDPBAFs%2CEvo0sf5FztI%2CAurTtzpAr4c">11m 25s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/discoveries/projectile-launcher">Projektil Launcher</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Projektil+Launcher&video_ids=rrAKZWfhzrE%2CSlQDuTS6FR4%2CBdd1Lu5jN08">23m 4s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/discoveries/thermo-can">Termodynamik</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Termodynamik&video_ids=UQK7EAgRBpE">3m 54s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/physics/review-for-ap-physics-1-exam">Review for AP Physics 1 exam</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/physics/review-for-ap-physics-1-exam/ap-physics-1-concept-review">AP Physics 1 concept review</a> (9 Videos | <a href="https://www.youtube.com/watch_videos?title=AP+Physics+1+concept+review&video_ids=NyPbcdE9v6o%2CYJEfSqlSxks%2CBkl6Mn1Y23Q%2C0r_JWUkXEkY%2C65uG6v7YY2Q%2CqMc6KOkmjTU%2CuRA8vI2Gzvk%2CRA7x81NI8C4%2CqdmYAXjhWiw">2h 26m 36s</a> )</li>
<li><a href="https://da.khanacademy.org/science/physics/review-for-ap-physics-1-exam/ap-physics-1-free-response-questions-2015">AP Physics 1 free response questions 2015</a> (11 Videos | <a href="https://www.youtube.com/watch_videos?title=AP+Physics+1+free+response+questions+2015&video_ids=NrNG6OPijeY%2Cff6SNrgUFt0%2C18HrvnXsgNs%2COpbYvr8yhqQ%2CT1p_tQZsPLg%2CqQM-IGnxi6g%2CKH60uz5LNWk%2C8DmmUjnyMJI%2CPdTRPJlp2Xk%2Cx7UHl3Umeeg%2Cz_KX8Xpxa-c">1h 34m 21s</a> )</li>
</ul></li>
</ul>
<h2 id="kemi-17-topics"><a href="https://da.khanacademy.org/science/chemistry">Kemi</a> (17 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/science/chemistry/atomic-structure-and-properties">Atoms, molecules, and ions</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/chemistry/atomic-structure-and-properties/introduction-to-the-atom">Introduktion til atomet</a> (1 Article, 1 Exercise, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+atomet&video_ids=Rd4a1X3B61w%2CIFKnq9QM6_A%2CNG-rrorZcM8%2CEPvd-3712U8%2CAsqEkF7hcII%2CI-Or4bUAIfo%2CkoAFBScR41A">57m 29s</a> )</li>
<li><a href="https://da.khanacademy.org/science/chemistry/atomic-structure-and-properties/introduction-to-compounds">Ions and compounds</a> (1 Article, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Ions+and+compounds&video_ids=zTUnjPALX_U%2CptAw20kem90%2Cbmjg7lq4m4o%2C_WXndBGQnyI">24m 46s</a> )</li>
<li><a href="https://da.khanacademy.org/science/chemistry/atomic-structure-and-properties/names-and-formulas-of-ionic-compounds">Names and formulas of ionic compounds</a> (2 Articles, 3 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Names+and+formulas+of+ionic+compounds&video_ids=ptAw20kem90%2CDpnUrVXSLaQ%2CvVTwzjvWySs%2C8_fMpRUsnBk">16m 46s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/chemistry/chemical-reactions-stoichiome">Kemiske reaktioner og støkiometri</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/chemistry/chemical-reactions-stoichiome/balancing-chemical-equations">Afstemning af kemiske ligninger</a> (1 Exercise, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Afstemning+af+kemiske+ligninger&video_ids=TStjgUmL1RQ%2CTUuABq95BBM%2CxqpYeiefZl8%2CHbIdp5DURJA%2Ccmi8EnJQA84%2C8KXWJCmshEE">32m 41s</a> )</li>
<li><a href="https://da.khanacademy.org/science/chemistry/chemical-reactions-stoichiome/stoichiometry-ideal">Støkiometri</a> (1 Article, 2 Exercises, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=St%C3%B8kiometri&video_ids=SjQG3rKSZUQ%2CjFv6k2OV7IU%2CeQf_EAYGo-k">42m 24s</a> )</li>
<li><a href="https://da.khanacademy.org/science/chemistry/chemical-reactions-stoichiome/limiting-reagent-stoichiometry">Begrænsende reaktant støkiometri</a> (3 Articles, 1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Begr%C3%A6nsende+reaktant+st%C3%B8kiometri&video_ids=rESzyhPOJ7I%2CYNriRslOk9A%2C12lYK1U4dyY%2C5dvIBOsITTA">51m 55s</a> )</li>
<li><a href="https://da.khanacademy.org/science/chemistry/chemical-reactions-stoichiome/empirical-molecular-formula">Molecular composition</a> (1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Molecular+composition&video_ids=bmjg7lq4m4o%2C4Y2cY5YGxI4%2CUPoXG1Z3sI8%2CNM0WycKCCDU%2CsXOIIEZh6qg">36m 25s</a> )</li>
<li><a href="https://da.khanacademy.org/science/chemistry/chemical-reactions-stoichiome/types-of-chemical-reactions">Types of chemical reactions</a> (5 Articles, 1 Test, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Types+of+chemical+reactions&video_ids=OE0MMIyMTNU%2Cg_snytB7iQ0%2CcdvV8O90HJM%2CjzcB3faNdq0%2CBgTpPM9BMuU">41m 23s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/chemistry/electronic-structure-of-atoms">Elektronstruktur for atomer</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/chemistry/electronic-structure-of-atoms/history-of-atomic-structure">History of atomic structure</a> (3 Articles, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=History+of+atomic+structure&video_ids=agjG7kgixJs%2CbVlwH1kfDeg">20m 11s</a> )</li>
<li><a href="https://da.khanacademy.org/science/chemistry/electronic-structure-of-atoms/bohr-model-hydrogen">Bohr's model of the hydrogen atom</a> (4 Articles, 1 Quiz, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Bohr%27s+model+of+the+hydrogen+atom&video_ids=rLNM8zI4Q_M%2CvuGpUFjLaYE%2CQcd0IhW_85I%2CHbuh5m3p0x0%2C7Zin8hG9Nhw%2CnJ-PtF14EFw%2CAznXSVx2xX0%2CKv-hRvEOjuA">1h 21m 5s</a> )</li>
<li><a href="https://da.khanacademy.org/science/chemistry/electronic-structure-of-atoms/orbitals-and-electrons">Quantum numbers and orbitals</a> (1 Article, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Quantum+numbers+and+orbitals&video_ids=PZIoFD_Z73M%2CKrXE_SzRoqw%2CqLU0X154wlE">34m 55s</a> )</li>
<li><a href="https://da.khanacademy.org/science/chemistry/electronic-structure-of-atoms/electron-configurations-jay-sal">Electron configurations</a> (1 Article, 1 Exercise, 1 Quiz, 1 Test, 11 Videos | <a href="https://www.youtube.com/watch_videos?title=Electron+configurations&video_ids=yBrp8uvNAhI%2CFmQoSenbtnU%2CtlSJCG5DqzI%2CYURReI6OJsg%2C0MKsFD03Ukc%2CUEPs-GA2s40%2C3tyrkxruz88%2CqkLzAXUP_K0%2CddNsfv8iaps%2CL-0FkEPPdXE%2C-lIc5z3XjXQ">1h 50m 36s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/chemistry/periodic-table">Den periodiske tabel</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/chemistry/periodic-table/copy-of-periodic-table-of-elements">Introduction to the periodic table</a> (1 Exercise, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduction+to+the+periodic+table&video_ids=t_f8bB1kf6M%2CUXOcWAfBdZg%2Cakm5H2JsccI%2CkCM2mSb4qIU%2CNYtPw0WiUCo">42m 6s</a> )</li>
<li><a href="https://da.khanacademy.org/science/chemistry/periodic-table/periodic-table-trends-bonding">Periodic table trends </a> (1 Test, 10 Videos | <a href="https://www.youtube.com/watch_videos?title=Periodic+table+trends+&video_ids=q--2WP8wXtk%2CrKoIcgBM4Vg%2CHBi8xjMchZc%2C5CBs36jtZxY%2C649ZlWMp0LE%2CuVWquWFjnCw%2C6WIBa32o63Q%2CRr7LhdSKMxY%2C126N4hox9YA%2CpAjluTxSYgY">1h 35m 57s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/chemistry/chemical-bonds">Kemiske bindinger</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/chemistry/chemical-bonds/types-chemical-bonds">Types of chemical bonds</a> (6 Videos | <a href="https://www.youtube.com/watch_videos?title=Types+of+chemical+bonds&video_ids=CGA8sRwqIFg%2CTwqMtO2FLYk%2CRr7LhdSKMxY%2C126N4hox9YA%2CpAjluTxSYgY%2CRw_pDVbnfQk">1h 1m 9s</a> )</li>
<li><a href="https://da.khanacademy.org/science/chemistry/chemical-bonds/copy-of-dot-structures">Prik-strukturer</a> (1 Exercise, 1 Quiz, 12 Videos | <a href="https://www.youtube.com/watch_videos?title=Prik-strukturer&video_ids=p7Fsb21B2Xg%2CdNPs-cr_6Bk%2CbUCu7bPkZeI%2C97POZGcfoY8%2C3RDytvJYehY%2CFr_La6MrAfM%2Cka8Yt4bTODs%2C0na0xtIHkXA%2CufzlgOyWBHE%2CWEoml1Fs26I%2Cq3g3jsmCOEQ%2CImTwySWxA4U">2h 1m 34s</a> )</li>
<li><a href="https://da.khanacademy.org/science/chemistry/chemical-bonds/hybridization-and-hybrid-orbitals-chemistry">Hybridization and hybrid orbitals</a> (1 Exercise, 1 Quiz, 1 Test, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Hybridization+and+hybrid+orbitals&video_ids=JHgTNNX01r4%2CBM-My1AheLw%2CROzkyTgscGg%2CBRHfy7envyQ%2CGuaozMpFS3w">54m 33s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/chemistry/gases-and-kinetic-molecular-theory">Gasser og kinetisk molekyleteori</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/chemistry/gases-and-kinetic-molecular-theory/ideal-gas-laws">Ideal gas equation</a> (1 Article, 1 Exercise, 1 Quiz, 10 Videos | <a href="https://www.youtube.com/watch_videos?title=Ideal+gas+equation&video_ids=WScwPIPqZa0%2CG2JdRB3bdFM%2CerjMiErRgSQ%2CGwoX_BemwHs%2C69V-60sga3M%2COsl6HEDZZ-E%2CUQHT5RktlVk%2Cd4bqNf37mBY%2C-QpkmwIoMaY%2CxQ9D4Jz95-A">1h 39m 48s</a> )</li>
<li><a href="https://da.khanacademy.org/science/chemistry/gases-and-kinetic-molecular-theory/non-ideal-gas-behavior">Non-ideal gas behavior</a> (1 Article, 1 Test, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Non-ideal+gas+behavior&video_ids=5kT7oUB0q6Q%2Cy8W5aAsBXSQ">21m 22s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/chemistry/states-of-matter-and-intermolecular-forces">Tilstande for stof og intermolekylære kræfter</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/chemistry/states-of-matter-and-intermolecular-forces/states-of-matter">Stoffers tilstandsformer</a> (8 Videos | <a href="https://www.youtube.com/watch_videos?title=Stoffers+tilstandsformer&video_ids=pKvo0XWZtjo%2CWenwtcuqOj8%2CWU7TfO-iaK8%2Czz4KbvF_X-0%2ClsXcKgjg8Hs%2CtvO0358YUYM%2ChA5jddDYcyg%2CQp87Z4m8R-w">1h 47m 36s</a> )</li>
<li><a href="https://da.khanacademy.org/science/chemistry/states-of-matter-and-intermolecular-forces/introduction-to-intermolecular-forces">Introduction to intermolecular forces</a> (8 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduction+to+intermolecular+forces&video_ids=8qfzpJvsp04%2CzjIVJh4JLNo%2C_RTF0DAHBBM%2CeQXGpturk3A%2CpILGRZ0nT4o%2CJRxFsmvsmHY%2C_mWHWJiMKXU%2C5c9hXhJ_o5w">1h 13m 11s</a> )</li>
<li><a href="https://da.khanacademy.org/science/chemistry/states-of-matter-and-intermolecular-forces/mixtures-and-solutions">Mixtures and solutions</a> (1 Article, 1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Mixtures+and+solutions&video_ids=3ROWXs3jtQU%2Cz9LxdqYntlU">27m 57s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/chemistry/chemical-equilibrium">Kemisk ligevægt</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/chemistry/chemical-equilibrium/equilibrium-constant">Equilibrium constant</a> (2 Articles, 1 Exercise, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Equilibrium+constant&video_ids=CGJjjm7-DJ4%2CONBJo7dXJm8%2CpsLX080RQR8%2CTsXlTWgyItw%2CowA2rUggKoA%2CPAz3qwVxDKY">1h 16m 43s</a> )</li>
<li><a href="https://da.khanacademy.org/science/chemistry/chemical-equilibrium/factors-that-affect-chemical-equilibrium">Factors that affect chemical equilibrium</a> (1 Article, 1 Exercise, 1 Test, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Factors+that+affect+chemical+equilibrium&video_ids=4-fEvpVNTlE%2C5gujU2QcGcY%2C2PM1yc_z4Bk%2CpnW1PNJlmWg">36m 9s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/chemistry/acids-and-bases-topic">Syrer og baser</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/chemistry/acids-and-bases-topic/acids-and-bases">Syrer og baser</a> (4 Articles, 2 Exercises, 1 Quiz, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Syrer+og+baser&video_ids=Y4HzGldIAss%2CXVOU9c3crbc%2CNUyYlRxMtcs%2CJ7-GewgqWUQ%2CtS2YJPmKOFQ%2Cgsu4gjrFApA%2CCe4BGV1DVVg">1h 12m 26s</a> )</li>
<li><a href="https://da.khanacademy.org/science/chemistry/acids-and-bases-topic/copy-of-acid-base-equilibria">Acid-base equilibria</a> (2 Articles, 1 Quiz, 1 Test, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Acid-base+equilibria&video_ids=4441EyWBPt8%2C3Gm4nAAc3zc%2CDGMs81-Rp1o%2CBeHOvYchtBg%2CicNOBmKjDLo%2CxGE3sEz6U9Y%2CHwkEQfsJenk%2CXZWoMXVANww">1h 26m 18s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/chemistry/acid-base-equilibrium">Syre-base ligevægt og ligevægte for opløselighed</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/chemistry/acid-base-equilibrium/buffer-solutions">Buffer solutions</a> (1 Quiz, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Buffer+solutions&video_ids=gjKmQ501sAg%2C77mjvRkfqW4%2C223KLPnJCBI%2CLJmFbcaxDPE%2ClsHq5aqz4uQ%2C7ZLjzp7thNI%2CpnPWdDOR9XE%2Cl9-Qkl42-Tc">1h 23m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/science/chemistry/acid-base-equilibrium/titrations">Titrations</a> (1 Quiz, 17 Videos | <a href="https://www.youtube.com/watch_videos?title=Titrations&video_ids=d1XTOsnNlgg%2Caj34f2Bg9Vw%2CJoGQYSTlOKo%2CHO1dsNrzE58%2Cx3CbfUr449Y%2CWbDL7xN-Pn0%2CpmHlKhv7C0E%2CkWucfgOkCIQ%2Ceuyhg6APq1k%2CN8bTEEgskss%2CSHL_3JvfhXM%2C55yE4qwjHbE%2CXcbobQqv4j4%2C1YlXtpF-19A%2CBBIGR0RAMtY%2CXjFNmfLv9_Q%2CEQJf8Gb8pg4">2h 34m 36s</a> )</li>
<li><a href="https://da.khanacademy.org/science/chemistry/acid-base-equilibrium/copy-of-solubility-equilibria-mcat">Solubility equilibria</a> (1 Test, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Solubility+equilibria&video_ids=g_snytB7iQ0%2CDpnUrVXSLaQ%2Cp4559dZIFco%2C3rkDpqp-mw0%2CJbLRFt_Z8nI%2Cpb-wsUpPuI8%2CRrJY9dSbRtI%2Cr7gTH_5XfOI">1h 14m 37s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/chemistry/thermodynamics-chemistry">Termodynamik</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/chemistry/thermodynamics-chemistry/internal-energy-sal">Internal energy</a> (2 Articles, 9 Videos | <a href="https://www.youtube.com/watch_videos?title=Internal+energy&video_ids=vny1qUaToHw%2CaOSlXuDO4UU%2CFTO0lS1Q9QI%2CWU7TfO-iaK8%2ClsXcKgjg8Hs%2C5EU-y1VF7g4%2ClKq-10ysDb4%2CobeGVTOZyfE%2CM5uOIy-JTmo">1h 57m 50s</a> )</li>
<li><a href="https://da.khanacademy.org/science/chemistry/thermodynamics-chemistry/enthalpy-chemistry-sal">Enthalpi</a> (1 Article, 1 Quiz, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Enthalpi&video_ids=6y5oO6NfGHw%2CfucyI7Ouj2c%2CPK_JXzYcme0%2CchXMpDwjBDk%2C8bCL8TQZFKo%2CxE1gdQZcR-o%2ChAeC68RvwT4">1h 24m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/science/chemistry/thermodynamics-chemistry/entropy-chemistry-sal">Entropy</a> (12 Videos | <a href="https://www.youtube.com/watch_videos?title=Entropy&video_ids=Svvr5uF_FZ8%2CVc8mmZTrNtI%2C5yQlaMy4T2w%2CiiFWoXQPOJc%2CaAfBSJObd6Y%2CixRtSV3CXPA%2CsPz5RrFus1Q%2CPFcGiMLwjeY%2CWLKEVfLFau4%2CxJf6pHqLzs0%2CdFFzAP2OZ3E%2CaKRDvSZ-igA">3h 8m 45s</a> )</li>
<li><a href="https://da.khanacademy.org/science/chemistry/thermodynamics-chemistry/gibbs-free-energy">Gibbs free energy</a> (1 Article, 1 Quiz, 1 Test, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Gibbs+free+energy&video_ids=ViAmQivKif0%2CsG1ZAdYi13A%2C7aur5h44pV4%2CyYbzJs6vgv8%2CtB4lr5Qh3DI%2CU5-3wnY04gU%2C6uojNiKFymc">1h 27m 10s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/chemistry/oxidation-reduction">Redox-reaktioner og elektrokemi</a> (6 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/chemistry/oxidation-reduction/redox-oxidation-reduction">Redox-reaktioner</a> (1 Article, 11 Videos | <a href="https://www.youtube.com/watch_videos?title=Redox-reaktioner&video_ids=DvYs1HILq1g%2CCCsNJFsYSGs%2CM7PnxSQedkM%2CR2EtXOoIU-E%2COE0MMIyMTNU%2Cn30yILpUitw%2CTOdHMORp4is%2CPXlvKtpvUEk%2C4tLrbMstfm8%2CVjs8uK2ovQE%2CEQJf8Gb8pg4">1h 33m 2s</a> )</li>
<li><a href="https://da.khanacademy.org/science/chemistry/oxidation-reduction/batter-galvanic-voltaic-cell">Galvanic cells</a> (7 Videos | <a href="https://www.youtube.com/watch_videos?title=Galvanic+cells&video_ids=wVMe8ZmCZo0%2C9Xncz_mMc5g%2Cm0SFJt_0v28%2CxHuLZHasldg%2CPQ48N5jaG2w%2CtUvpwdqdLlI%2CgD2mjdGVIus">53m 44s</a> )</li>
<li><a href="https://da.khanacademy.org/science/chemistry/oxidation-reduction/cell-potential">Cell potentials</a> (1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Cell+potentials&video_ids=oAOq55MPJpM%2C79OmpES_9OE%2CxsSLvlonxs4%2CsorB6XFJ8Jc%2CfYUwEAPejbY">44m 53s</a> )</li>
<li><a href="https://da.khanacademy.org/science/chemistry/oxidation-reduction/electrochemistry-thermodynamics-and-equilibrium">Electrochemistry, thermodynamics, and equilibrium</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Electrochemistry%2C+thermodynamics%2C+and+equilibrium&video_ids=4tcLzVJdxZs%2CCdE1Sa18gIo%2CkxNaVzQ07yc">23m 19s</a> )</li>
<li><a href="https://da.khanacademy.org/science/chemistry/oxidation-reduction/cell-potentials-under-nonstandard-conditions">Cell potentials under nonstandard conditions</a> (1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Cell+potentials+under+nonstandard+conditions&video_ids=TYFAJHx5LFA%2CQaOtsYouet0%2CWqsJNtBEKtg%2CmMzbr5rm4j8%2CrPim-9WSg6g">47m 36s</a> )</li>
<li><a href="https://da.khanacademy.org/science/chemistry/oxidation-reduction/electrolytic-cell">Electrolytic cells and electrolysis</a> (1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Electrolytic+cells+and+electrolysis&video_ids=1tvvSUySfls%2CQEUsZeKYsgo%2CQ9BtOLDr0vg">26m 19s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/chemistry/chem-kinetics">Kinetik</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/chemistry/chem-kinetics/reaction-rates">Reaction rates and rate laws</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Reaction+rates+and+rate+laws&video_ids=__zy-oOLPug%2C8wIodo1HD4Y%2C6Ng8ayarWHw%2CfLL8xxjhDPI%2CAd0aaYixFJg">52m 57s</a> )</li>
<li><a href="https://da.khanacademy.org/science/chemistry/chem-kinetics/copy-of-kinetics">Relationship between reaction concentrations and time</a> (1 Quiz, 12 Videos | <a href="https://www.youtube.com/watch_videos?title=Relationship+between+reaction+concentrations+and+time&video_ids=Bt0mz4mGddk%2CvN7O7zsRKb8%2Ce4qci9b2d3U%2C9REPnibO4IQ%2CfCdT2z0JcU8%2CdqvoAwA9nUQ%2CBRVPlDCMgMg%2CeajQ4ZY2r-U%2CXUmB0reCB-U%2COmWyMLucEbE%2C49LcF9Zf9TI%2C5Qr-0-Vgxyk">1h 44m 8s</a> )</li>
<li><a href="https://da.khanacademy.org/science/chemistry/chem-kinetics/arrhenius-equation">Arrhenius equation and reaction mechanisms</a> (2 Articles, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Arrhenius+equation+and+reaction+mechanisms&video_ids=1iAxhc6EflI%2CzjhepBLtqug%2CJ0ndBMMQW20%2CaIvYdSzLGoI%2CxQ9D4Jz95-A%2CvIZ0LnLo3jE%2CShzW1LoQgoc%2Cif5JGssffm8">1h 7m 16s</a> )</li>
<li><a href="https://da.khanacademy.org/science/chemistry/chem-kinetics/spectrophotometry-tutorial">Spectrophotometry</a> (1 Quiz, 1 Test, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Spectrophotometry&video_ids=qbCZbP6_j48%2CVqAa_cmZ7OY">25m 48s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/chemistry/nuclear-chemistry">Kernekemi</a> (1 Topic)
<ul>
<li><a href="https://da.khanacademy.org/science/chemistry/nuclear-chemistry/radioactive-decay">Radioaktivt henfald</a> (10 Videos | <a href="https://www.youtube.com/watch_videos?title=Radioaktivt+henfald&video_ids=9b8qZ6OHZ5s%2Cgqrh8wbPXVE%2C3koOwozY4oc%2CmzLOT6uOfO4%2C9REPnibO4IQ%2CdnYyMHSSb8M%2CH7nrVDV8ahc%2CHTDop6eEsaA%2CHqzakjo_dYg%2CvnNlvnnBX0I">1h 43m 40s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/chemistry/studying-for-ap-chemistry-exam">Studying for the AP Chemistry exam?</a> (8 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/chemistry/studying-for-ap-chemistry-exam/2015-ap-chemistry-free-response-questions">2015 AP Chemistry free response questions</a> (20 Videos | <a href="https://www.youtube.com/watch_videos?title=2015+AP+Chemistry+free+response+questions&video_ids=fYUwEAPejbY%2CrPim-9WSg6g%2CgD2mjdGVIus%2CzZv70LK8TIw%2C12lYK1U4dyY%2C5dvIBOsITTA%2C6uojNiKFymc%2CImTwySWxA4U%2C5c9hXhJ_o5w%2CjzcB3faNdq0%2Ceuyhg6APq1k%2CN8bTEEgskss%2CSHL_3JvfhXM%2C55yE4qwjHbE%2CXcbobQqv4j4%2CJbLRFt_Z8nI%2C5Qr-0-Vgxyk%2CRoEZkrDWqmc%2CYakL8PYQw58%2ChAeC68RvwT4">2h 24m 8s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/chemistry/meet-a-chemistry-professional">Meet a chemistry professional</a> (1 Topic)
<ul>
<li><a href="https://da.khanacademy.org/science/chemistry/meet-a-chemistry-professional/meet-the-chemistry-professional">Meet the chemistry professional</a> (9 Articles, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Meet+the+chemistry+professional&video_ids=Y1O9UNJ8MIU">2m 26s</a> )</li>
</ul></li>
</ul>
<h2 id="organisk-kemi-14-topics"><a href="https://da.khanacademy.org/science/organic-chemistry">Organisk kemi</a> (14 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/gen-chem-review">Structure and bonding</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/gen-chem-review/dot-strcutures-jay">Prik-strukturer</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Prik-strukturer&video_ids=BIZNBfBuu1w%2CWLGTx6sSIOc">12m 56s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/gen-chem-review/hybrid-orbitals-jay">Hybridization</a> (8 Videos | <a href="https://www.youtube.com/watch_videos?title=Hybridization&video_ids=u1eGSL6J6Fo%2ClJX8DxoPRfk%2CJHgTNNX01r4%2CBM-My1AheLw%2CROzkyTgscGg%2CBRHfy7envyQ%2CGuaozMpFS3w%2C2UTr46btzaY">1h 30m 15s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/gen-chem-review/bond-line-structures">Stregformler</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Stregformler&video_ids=XEPdMvZqCHQ%2C8AwKNC1texM%2CZAgQH2azx3w%2CRBbJKOOZ6FY">40m 36s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/gen-chem-review/electronegativity-polarity">Elektronegativitet</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Elektronegativitet&video_ids=126N4hox9YA%2Cq3g3jsmCOEQ%2CpBZ-RiT5nEE%2CpILGRZ0nT4o%2C_mWHWJiMKXU">53m 5s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/organic-structures">Resonance and acid-base chemistry</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/organic-structures/oxidation-reduction-review">Counting electrons</a> (6 Videos | <a href="https://www.youtube.com/watch_videos?title=Counting+electrons&video_ids=CuGg-Tf8lPI%2C7p2qfyqiXHc%2C5-MM39VCwc0%2C8x8tA4YPhJw%2CrhuYuerbhIE%2CbJMUKNbAsTY">59m 9s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/organic-structures/formal-charge-resonance">Resonance structures</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Resonance+structures&video_ids=7BgiKyvviyU%2CUHZHkZ6_H5o%2Coxf0LMJTklg%2CqpP8D7yQV50%2CkQCS1AhAnMI">45m 49s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/organic-structures/acid-base-review">Organic acid-base chemistry</a> (12 Videos | <a href="https://www.youtube.com/watch_videos?title=Organic+acid-base+chemistry&video_ids=diCb6JkLlQE%2CjIL333CKE9A%2CBeHOvYchtBg%2CYEUQXx0fx_I%2COhAAi3DZ984%2Cve5hfX3ywk0%2CVkrOYs2LFNk%2CCe4BGV1DVVg%2CCOZqJb-HT-k%2CznlvsmuROwI%2Ckl8nvKKGvOg%2CvAYoAH98Gag">1h 15m 43s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/bond-line-structures-alkanes-cycloalkanes">Alkaner og cykloalkaner</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/bond-line-structures-alkanes-cycloalkanes/naming-alkanes">Navngivning af alkaner</a> (12 Videos | <a href="https://www.youtube.com/watch_videos?title=Navngivning+af+alkaner&video_ids=pMoA65Dj-zk%2CNRFPvLp3r3g%2CKKAD-OOOHxg%2CCFBKfgGTP98%2CTJUm860AjNw%2Cq_Q9C1Ooofc%2CO9RPGJcAfJk%2CCJRQ8gOjq4E%2CSe-ekDNhCDk%2CygXkdSKXQoA%2CXw1CMTXQGPY%2C6BR0Q5e74bs">1h 35m 2s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/bond-line-structures-alkanes-cycloalkanes/naming-alkanes-cycloalkanes-bicyclic">Navngivning af alkaner, cykloalkaner og bicykliske forbindelser</a> (6 Videos | <a href="https://www.youtube.com/watch_videos?title=Navngivning+af+alkaner%2C+cykloalkaner+og+bicykliske+forbindelser&video_ids=F8RCR_1jIAk%2C9tEnXUuHkp4%2CjoQd0qVnX4M%2CcM-SFbffb7k%2CayKHmN90ncc%2C8QYiN--_4-c">1h 3m 36s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/bond-line-structures-alkanes-cycloalkanes/conformations-alkanes-cycloalkanes">Konformationer af alkaner og cykloalkaner</a> (8 Videos | <a href="https://www.youtube.com/watch_videos?title=Konformationer+af+alkaner+og+cykloalkaner&video_ids=IkmM4CPnqF0%2CryJvNEHcuDg%2CE52oU-pwDxY%2CvOq6cwT-l2U%2ClIJ45KYQOLM%2CdTst62XXJ8g%2CMOHzzgQLkk8%2CiUrleWSqok4">1h 23m 55s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/bond-line-structures-alkanes-cycloalkanes/conformations">Konformationer</a> (8 Videos | <a href="https://www.youtube.com/watch_videos?title=Konformationer&video_ids=YUEkOBvJSNg%2CI6LsWSXx8fg%2CDXc4pa9lIaA%2Cp9NzhA3E-70%2CAtK0QQYHKCk%2CkNQnnshdNuo%2CTI27-ZN2Glg%2CBwPjtAe1gvE">1h 24m 38s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/bond-line-structures-alkanes-cycloalkanes/functional-groups">Funktionelle grupper</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Funktionelle+grupper&video_ids=FYTfo4y91TI%2CZ9IWg0pcpqo%2CesJ5MbAHswc">25m 33s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/stereochemistry-topic">Stereokemi</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/stereochemistry-topic/chirality-r-s-system">Chirality </a> (6 Videos | <a href="https://www.youtube.com/watch_videos?title=Chirality+&video_ids=tk-SNvCPLCE%2C0XSSPow5oAc%2CQQMZ1ljepWg%2CyChPRfm4yvg%2C3Ya7I-oDGU0%2Cij1TfRMODhA">46m</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/stereochemistry-topic/optical-activity">Enantiomere</a> (10 Videos | <a href="https://www.youtube.com/watch_videos?title=Enantiomere&video_ids=HOMn523JBok%2CDfO27juYly8%2CkFD6hzLseVs%2CpeQsBg9P4ms%2CrzXRZFMcZyU%2C9IYTqlVk_ZI%2Csam8CdN-bfs%2C66_qW5UhYn0%2C1LdFePZHAyY%2Ct7oraaLJfYw">1h 33m 59s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/stereochemistry-topic/diastereomers-meso-compounds">Stereoisomeric relationships</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Stereoisomeric+relationships&video_ids=457xnJv80O0%2CaYp39AaZqvI%2CzNAL1R-hZr0">31m 33s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/substitution-elimination-reactions">Substitutions- og eliminerings-reaktioner</a> (7 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/substitution-elimination-reactions/free-radical-reaction-alkanes">Frit radikal reaktion</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Frit+radikal+reaktion&video_ids=5HgzsltWwK8">13m 45s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/substitution-elimination-reactions/nucleophilicity-basicity-sal">Nukleofilicitet og basestyrke</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Nukleofilicitet+og+basestyrke&video_ids=Z9Jh-Q59xso%2CMx7KM-k2MMo">26m 42s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/substitution-elimination-reactions/elimination-reactions-tutorial">Elimination reactions</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Elimination+reactions&video_ids=J0gXdEAaSiA%2CU9dGHwsewNk%2C2jO--kC3aqk">31m 44s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/substitution-elimination-reactions/sn1-sn2-e1-e2-sal">SN1/SN2/E1/E2</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=SN1%2FSN2%2FE1%2FE2&video_ids=12Rvts2NR7M%2CvinEPfrqfiU%2CMtwvLru62Qw">28m 50s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/substitution-elimination-reactions/sn1-sn2-tutorial">SN1 og SN2</a> (15 Videos | <a href="https://www.youtube.com/watch_videos?title=SN1+og+SN2&video_ids=Z4F88tTx9-8%2C-z2yk8yxv08%2CV9JixmPdeuk%2CaaZ-isZs4ko%2CwnjxQsAvkJ8%2CsDZDgctzbkI%2CVH0ciDED3wM%2CDv5GU9m71YY%2CYddDLLDhPvM%2C0geM5he7Oic%2C3LiyCxCTrqo%2CeaQyzkAZGjM%2ClxnAwd8OXaA%2CMy5SpT9E37c%2CwCspf85eQQo">2h 12m 58s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/substitution-elimination-reactions/e1-e2-tutorial">E1 og E2 reaktioner</a> (10 Videos | <a href="https://www.youtube.com/watch_videos?title=E1+og+E2+reaktioner&video_ids=l-g2xEV-z7o%2CMDh_5n0OO2M%2C4fdEhh6YNE4%2CAiGGaJfoQ1Y%2CAJGrSWxPrd8%2CgPr0Zn67Rf0%2CyQfLOhgIY_U%2CVdpIq3FZCn8%2CuCW6154hPkc%2CB23i9_jC5T8">1h 36m 13s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/substitution-elimination-reactions/sn1-sn2-e1-e2-jay">SN1/SN2/E1/E2</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=SN1%2FSN2%2FE1%2FE2&video_ids=fG9aJLffPeE%2CHcpPPEG2wFg%2CvFSZ5PU0dIY%2CHfA0rO1-vpE">41m 4s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/alkenes-alkynes">Alkener og alkyner</a> (7 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/alkenes-alkynes/naming-alkenes">Navngivning af alkener</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Navngivning+af+alkener&video_ids=KWv5PaoHwPA%2CoYoQpDtBLac%2CGFiizJ-jGVw">19m 27s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/alkenes-alkynes/alkene-reactions">Alkener reaktioner</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Alkener+reaktioner&video_ids=Z_GWBW_GVGA%2CX-VCk3WrGlM%2CO_yeKo6-qIg%2CtR-hzV5Tkxo">44m 52s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/alkenes-alkynes/naming-alkenes-jay">Alkener nomenklatur</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Alkener+nomenklatur&video_ids=tlUOyF3mz-k%2CgDWy3GEEcx8%2CJjtzMQDdyuM%2C7He7goTp6BY%2Cy4NVshz6wxk">39m 4s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/alkenes-alkynes/alkene-reactions-tutorial">Alkener reaktioner</a> (10 Videos | <a href="https://www.youtube.com/watch_videos?title=Alkener+reaktioner&video_ids=fSk1Crn3R2E%2CiEKA0jUstPs%2CdJhxphep_gY%2Cb_qDLacdkFg%2C00qYQahwuSQ%2CYiy84xYQ3es%2CFaOOx6IZxV8%2CKfTosrMs5W0%2C76KtDSfWnkw%2CbFj3HpdC4Uk">1h 59m 31s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/alkenes-alkynes/naming-preparation-alkynes">Navngivning og fremstilling af alkyner</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Navngivning+og+fremstilling+af+alkyner&video_ids=qZTeyhR1akA%2C_-I3HdmyYfE%2CHbDWBeRJboE">22m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/alkenes-alkynes/alkyne-reactions">Alkyner reaktioner</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Alkyner+reaktioner&video_ids=RdFfIEDxo18%2CEbRxaBShveI%2CAE1pkp-_cKE%2C3KrqQXsWP1M%2CbEJxFs0f35o">44m 5s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/alkenes-alkynes/synthesis-alkynes">Syntese med alkyner</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Syntese+med+alkyner&video_ids=Rc1CezZgggM">11m 49s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/alcohols-ethers-epoxides-sulfides">Alkoholer, etherer, epoxider, sulfider</a> (8 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/alcohols-ethers-epoxides-sulfides/alcohol-nomenclature-properties">Alkohol nomenklatur og egenskaber</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Alkohol+nomenklatur+og+egenskaber&video_ids=nQ7QSV4JRSs%2CLIFHYUGrYqw%2CAa1CMokCch4%2CkFpLDQfEg1E%2Ct6qlbcdn_6k">40m 46s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/alcohols-ethers-epoxides-sulfides/synthesis-alcohols-tutorial">Syntese af alkoholer</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Syntese+af+alkoholer&video_ids=ad5e-jy-eqs%2CrNJPNlgmhbk%2CitnwiwRpw4w%2CDhwgNaRwscQ">49m 46s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/alcohols-ethers-epoxides-sulfides/reactions-alcohols-tutorial">Reaktioner for alkoholer</a> (8 Videos | <a href="https://www.youtube.com/watch_videos?title=Reaktioner+for+alkoholer&video_ids=j-rBgs_p-bg%2CwvwLy9ifmX0%2CSJ3TKg_3PD8%2CKsdZsWOsB84%2CrR0LdZ-PfBk%2CKPh60w6McPI%2C_yvdb_0NGT8%2CLccmkSz-Y-w">1h 11m 25s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/alcohols-ethers-epoxides-sulfides/nomenclature-properties-ethers">Nomenklatur og egenskaber af ethere</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Nomenklatur+og+egenskaber+af+ethere&video_ids=roUGDG1rhPI%2CgW8za1t2nFg%2CUlJmX9SLGRw">32m 17s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/alcohols-ethers-epoxides-sulfides/synthesis-cleavage-ethers">Syntese og spaltning af ethere</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Syntese+og+spaltning+af+ethere&video_ids=X9ypryY7hrQ%2C1k6MUeM-pEo">19m 38s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/alcohols-ethers-epoxides-sulfides/nomenclature-preparation-epoxides">Nomenklatur og fremstilling af epoxider</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Nomenklatur+og+fremstilling+af+epoxider&video_ids=5d63YMUxcS4%2CzGO-MlsdmgU%2CE9fw0EU4wpA">31m 19s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/alcohols-ethers-epoxides-sulfides/ring-opening-reactions-epoxides">Ring-åbning reaktioner af epoxider</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Ring-%C3%A5bning+reaktioner+af+epoxider&video_ids=rWfs1hyguaM%2CNRsM8kXtT5s">22m 49s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/alcohols-ethers-epoxides-sulfides/thiols-sulfides">Thioler og sulfider</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Thioler+og+sulfider&video_ids=MC8Mc6tSjYI">6m 59s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/conjugation-diels-alder-mo-theory">Conjugated systems and pericyclic reactions</a> (1 Topic)
<ul>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/conjugation-diels-alder-mo-theory/diels-alder-reaction">Diels-Alder reaktion</a> (6 Videos | <a href="https://www.youtube.com/watch_videos?title=Diels-Alder+reaktion&video_ids=9Ng6Zv9oLzk%2CvXESvgGbSiw%2CCbgWfnqLJI0%2CjXanAqj_BVA%2CSrrcBWllLbI%2CaP-IPzDzasM">48m 42s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/aromatic-compounds">Aromatiske forbindelser</a> (7 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/aromatic-compounds/naming-aromatic">Navngivning af benzen derivater</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Navngivning+af+benzen+derivater&video_ids=A5r7wkwDID4%2C8iwauKeqm2w">20m 9s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/aromatic-compounds/reactions-benzene">Reactions of benzene</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Reactions+of+benzene&video_ids=fpq0eICjuSI%2CK2tIixiXGOM%2CvFfriC55fFw%2C0YD5xSvseIw">36m 21s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/aromatic-compounds/aromatic-stability">Aromatisk stabilitet</a> (7 Videos | <a href="https://www.youtube.com/watch_videos?title=Aromatisk+stabilitet&video_ids=oDigu9YxXUg%2CI6wzan4hNc4%2Cyg0XJWHPqOA%2CBNmOZO9hbb0%2CsMrm4g6Aj4Y%2CvAW9t5uBr08%2CwvVdgGTrh-o">1h 9m 31s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/aromatic-compounds/electrophilic-aromatic-substitution">Elektrofil Aromatisk Substitution</a> (6 Videos | <a href="https://www.youtube.com/watch_videos?title=Elektrofil+Aromatisk+Substitution&video_ids=eQzbpL0uWVA%2C3cVSSiuiwsQ%2CrC165FcI4Yg%2CaKeDUvpfOfI%2CFHptu3tcJnM%2CxUFwzPmqt0Y">57m 17s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/aromatic-compounds/directing-effects">Dirigerende effekter</a> (6 Videos | <a href="https://www.youtube.com/watch_videos?title=Dirigerende+effekter&video_ids=i9rfWOAEplk%2CKM_maukQebY%2CSFd8mcpP3TU%2Cc547u94QRFU%2CXUT7zEffaTY%2CiF-f2-KSw6E">56m 15s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/aromatic-compounds/other-reactions-and-synthesis">Andre reaktioner og synteser</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Andre+reaktioner+og+synteser&video_ids=p4M2q1t_Up8%2Cdzjkh9K5Y8o%2CGonTjrX5PjA%2CK4RE-6AolEw%2Cb9NZvAhvIwQ">45m 46s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/aromatic-compounds/nucleophilic-aromatic-substitution">Nukleofil aromatisk substitution</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Nukleofil+aromatisk+substitution&video_ids=6xy02bQS2Zg%2CmMHOM2qaRaE">21m 32s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/aldehydes-ketones">Aldehyder og ketoner</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/aldehydes-ketones/nomenclature-aldehyde-ketone">Nomenklatur for aldehyder og ketoner</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Nomenklatur+for+aldehyder+og+ketoner&video_ids=oeyBfrx5RJY%2CwD15pD5pCt4%2CJMsqu236bZo%2C4lbVBMLZ1jQ%2CBlBQBOb0OQ4">49m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/aldehydes-ketones/reactions-aldehydes-ketones-jay">Reactions of aldehydes and ketones</a> (10 Videos | <a href="https://www.youtube.com/watch_videos?title=Reactions+of+aldehydes+and+ketones&video_ids=632MAqIB14E%2CFGq9-R6Yw18%2CrL0lDESwwv8%2C8-ccnvn9DxI%2CfY_ejjMRYg0%2CGl7bQNm92fE%2CgSzxeL64Cn0%2CD5-1qEKtfQ4%2CuWJRx-5n1yw%2C_0TqG8-N8DI">1h 44m 59s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/carboxylic-acids-derivatives">Carboxylsyrer og derivater</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/carboxylic-acids-derivatives/naming-carboxylic-acids-sal">Navngivning af carboxylsyrer</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Navngivning+af+carboxylsyrer&video_ids=xheOq0XZ-so%2Cz8h7QgevqjM">14m 17s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/carboxylic-acids-derivatives/formation-carboxylic-acid-derivatives-sal">Formation of carboxylic acid derivatives</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Formation+of+carboxylic+acid+derivatives&video_ids=dbdVMThH1n8%2CXKk9K5xTgDA%2CSRPQ62dR6b4%2CNYI0bJK64MY%2CgMKtGulgGH8">57m 59s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/carboxylic-acids-derivatives/reactions-carboxylic-jay">nomenclature and reactions of carboxylic acids</a> (7 Videos | <a href="https://www.youtube.com/watch_videos?title=nomenclature+and+reactions+of+carboxylic+acids&video_ids=xgDuzj51tAc%2CzR4OaoiNkA0%2C5_4xmCLmtb8%2C9K3R6xtO6SU%2CynBuPEmcjp4%2CCafRuKs7EfE%2C8G0RkfeKfBg">1h 3m 36s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/carboxylic-acids-derivatives/acid-derivatives-jay">Nomenclature and reactions of carboxylic acid derivatives</a> (8 Videos | <a href="https://www.youtube.com/watch_videos?title=Nomenclature+and+reactions+of+carboxylic+acid+derivatives&video_ids=uaXgGL1dGfU%2CR9PjfG1e7-w%2CEgTd7OSTO1I%2CMWii7tL0T84%2C3QWJrPq_HB0%2CK7XAk7EvLSc%2CMGF0jSP3Txo%2CI-uzVCJCRpE">1h 20m 40s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/ochem-alpha-carbon-chemistry">alpha carbon chemistry</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/ochem-alpha-carbon-chemistry/formation-of-enolate-anions">Formation of enolate anions</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Formation+of+enolate+anions&video_ids=SXbc4J1qWjE%2CNdRl1C6Jr5o%2Cbhxo9Wwr4mA%2ClhRfE13mM70%2CsBuM8hTGlag">44m 21s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/ochem-alpha-carbon-chemistry/aldol-condensation-jay">Aldol condensations</a> (6 Videos | <a href="https://www.youtube.com/watch_videos?title=Aldol+condensations&video_ids=3XiHrsZNZko%2CsjMsyk-rP8I%2CNAW1pqHs2_c%2Cg0_bWq24Np0%2CdKFE0uJayM8%2CNSPrIjA6T-c">1h 4m 45s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/amines-topic">Aminer</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/amines-topic/naming-amines">Navngivning aminer</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Navngivning+aminer&video_ids=Kpov3GS6tjM%2CCJzuu_k9Nv0">12m 34s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/spectroscopy-jay">Spektroskopi</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/spectroscopy-jay/infrared-spectroscopy-theory">Infrared Spectroscopy</a> (9 Videos | <a href="https://www.youtube.com/watch_videos?title=Infrared+Spectroscopy&video_ids=mZ-U7Qpkz8Y%2CETdNsO7mKXM%2CMlMwMqM_Wsg%2C_nzaMQKpPLM%2CxFNeN9rONKY%2CALLSsIDhFdU%2C9GPuoukU8fM%2CVymVIXcyErI%2CmJt1QI-yDG4">1h 34m 52s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/spectroscopy-jay/uv-vis-spectroscopy">UV/Vis Spectroscopy</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=UV%2FVis+Spectroscopy&video_ids=1FQPXtN7MeI%2C5HMMfiyszjo%2CzAQz5J3Tpgs">25m 57s</a> )</li>
<li><a href="https://da.khanacademy.org/science/organic-chemistry/spectroscopy-jay/proton-nmr">proton NMR</a> (15 Videos | <a href="https://www.youtube.com/watch_videos?title=proton+NMR&video_ids=jjcHZuTGWXk%2CrFmAWQSiqRo%2Cp9B4s0N5yk8%2Cy_sR3OyZUGo%2CCI84wFXN_Vg%2CZxNd67TbMLA%2C6dP-mNDnU-A%2CQlM21sl-TDg%2C86iNZaZ0S84%2CwZJ_iAxvHGU%2CintPEdg4Yyc%2C5bWxTfRZx70%2CYrHx2R72hFk%2CgZu9Hhz23EY%2C15fz6Wo84IA">2h 19m 47s</a> )</li>
</ul></li>
</ul>
<h2 id="biologi-32-topics"><a href="https://da.khanacademy.org/science/biology">Biologi</a> (32 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/science/biology/intro-to-biology">Intro to biology</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/biology/intro-to-biology/what-is-biology">What is biology?</a> (2 Articles, 1 Video | <a href="https://www.youtube.com/watch_videos?title=What+is+biology%3F&video_ids=dQCsA2cCdvA">4m 34s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/intro-to-biology/science-of-biology">The science of biology</a> (2 Articles, 1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=The+science+of+biology&video_ids=N6IAzlugWw0">11m 49s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/biology/chemistry--of-life">Chemistry of Life</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/biology/chemistry--of-life/elements-and-atoms">Elements and atoms</a> (2 Articles, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Elements+and+atoms&video_ids=IFKnq9QM6_A%2C1xSQlwWGT8M">34m 14s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/chemistry--of-life/electron-shells-and-orbitals">Electron shells and orbitals</a> (1 Article, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Electron+shells+and+orbitals&video_ids=yBrp8uvNAhI%2CFmQoSenbtnU%2CNYtPw0WiUCo%2CUXOcWAfBdZg">47m 26s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/chemistry--of-life/chemical-bonds-and-reactions">Chemical bonds and reactions</a> (2 Articles, 1 Exercise, 1 Test, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Chemical+bonds+and+reactions&video_ids=CGA8sRwqIFg%2CRr7LhdSKMxY%2C126N4hox9YA%2CpBZ-RiT5nEE%2CTStjgUmL1RQ">52m 44s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/biology/water-acids-and-bases">Water, acids, and bases</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/biology/water-acids-and-bases/hydrogen-bonding-in-water">Hydrogen bonding in water</a> (2 Articles, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Hydrogen+bonding+in+water&video_ids=6G1evL7ELwE%2ClCvBp73ZJ-A">15m 59s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/water-acids-and-bases/cohesion-and-adhesion">Cohesion and adhesion</a> (1 Article, 1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Cohesion+and+adhesion&video_ids=eQXGpturk3A%2C_RTF0DAHBBM">12m 57s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/water-acids-and-bases/water-as-a-solid-liquid-and-gas">Water as a solid, liquid, and gas</a> (1 Article, 1 Exercise, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Water+as+a+solid%2C+liquid%2C+and+gas&video_ids=jgnNhL2jSXY%2C_eEONOJHnEs%2CbVHuI_QpYIM%2Ch-31O7CaF2o%2CY3ATc9he254">34m 44s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/water-acids-and-bases/acids-bases-and-ph">Acids, bases, and pH</a> (1 Article, 1 Exercise, 1 Quiz, 1 Test, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Acids%2C+bases%2C+and+pH&video_ids=NUyYlRxMtcs%2CY4HzGldIAss%2CXVOU9c3crbc%2CJ7-GewgqWUQ%2CgjKmQ501sAg">45m 38s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/biology/properties-of-carbon">Properties of carbon</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/biology/properties-of-carbon/carbon">Properties of carbon</a> (1 Article, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Properties+of+carbon&video_ids=JgYlogdtJDo%2CFbP9nUrtKto%2CpMoA65Dj-zk">23m 4s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/properties-of-carbon/hydrocarbon-structures-and-functional-groups">Hydrocarbon structures and functional groups</a> (2 Articles, 1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Hydrocarbon+structures+and+functional+groups&video_ids=oPqq3Ex6viM%2Cz8M4EciPpYI%2CiuaYuCreEPk">24m 34s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/biology/macromolecules">Macromolecules</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/biology/macromolecules/carbohydrates-and-sugars">Carbohydrates</a> (1 Article, 1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Carbohydrates&video_ids=-Aj5BTnz-v0%2CFEAXI5XeJ4M%2CSOQyiM6V3RQ%2C662koqcIXSk">37m 30s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/macromolecules/lipids">Lipids</a> (1 Article, 1 Exercise, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Lipids&video_ids=OpyTJbzA7Fk%2CO9lL2KStW9s%2CEzp8F7XJHWE">31m 32s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/macromolecules/nucleic-acids">Nucleic acids</a> (1 Article, 1 Exercise, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Nucleic+acids&video_ids=AmOO4j0E408%2C6gUY5NoX1Lk%2CL677-Fl0joY%2C0CQ5ls3Uc2Q%2CjUUJSOM1ihU">1h 2m 54s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/macromolecules/proteins-and-amino-acids">Proteiner</a> (2 Articles, 1 Exercise, 1 Quiz, 1 Test, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Proteiner&video_ids=Pk4d9lY48GI%2Cnv2kfBFkv4s%2CMODnIkQvyz0%2C7udSVZ7bDb8">35m 46s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/biology/energy-and-enzymes">Energy and enzymes</a> (6 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/biology/energy-and-enzymes/energy-in-metabolism">Energy in metabolism</a> (1 Article, 1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Energy+in+metabolism&video_ids=KwNe9x0eChs">10m 7s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/energy-and-enzymes/the-laws-of-thermodynamics">Laws of thermodynamics</a> (2 Articles, 1 Exercise, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Laws+of+thermodynamics&video_ids=qzvatDIDXwo%2Cvny1qUaToHw%2CSvvr5uF_FZ8%2CVc8mmZTrNtI%2CaxG9HuqViDY%2CcKAF1v5hJoE">53m 37s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/energy-and-enzymes/free-energy-tutorial">Free energy</a> (1 Article, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Free+energy&video_ids=CHHu-iTwHjg%2CJ2L-X2sUigs">21m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/energy-and-enzymes/atp-reaction-coupling">ATP and reaction coupling</a> (1 Article, 1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=ATP+and+reaction+coupling&video_ids=PK6HmIe2EAg%2C-KE7jTXwNYs%2CL8ifD4I1o38">17m 45s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/energy-and-enzymes/introduction-to-enzymes">Introduction to enzymes</a> (2 Articles, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduction+to+enzymes&video_ids=__zy-oOLPug%2CA90HKrgUOg0">23m 40s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/energy-and-enzymes/enzyme-regulation">Enzyme regulation</a> (2 Articles, 1 Exercise, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Enzyme+regulation&video_ids=jYR0RlMft8Y%2CO23i38B2EmA%2C4xOsAuj0QZg">21m 24s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/biology/structure-of-a-cell">Structure of a cell</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/biology/structure-of-a-cell/introduction-to-cells">Introduction to cells</a> (2 Articles, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduction+to+cells&video_ids=xKJ3txXIuQk%2Czk3vlhz1b6k">15m 23s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/structure-of-a-cell/prokaryotic-and-eukaryotic-cells">Prokaryotic and eukaryotic cells</a> (4 Articles, 2 Exercises, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Prokaryotic+and+eukaryotic+cells&video_ids=6xx5v3PKZZM%2CxTnNv7YplSo">15m 46s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/structure-of-a-cell/tour-of-organelles">Tour of a eukaryotic cell</a> (3 Articles, 1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Tour+of+a+eukaryotic+cell&video_ids=6UqtgH_Zy1Y%2CvC-cEWJxDRY%2Ci1dAnpSFbyI%2C4BAGI6LbHeo">39m 14s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/structure-of-a-cell/cytoskeleton-junctions-and-extracellular-structures">Cytoskeleton, junctions, and extracellular stru</a> (2 Articles, 1 Exercise, 1 Quiz, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Cytoskeleton%2C+junctions%2C+and+extracellular+stru&video_ids=cMNx17H3dRU%2CzdvKhaQxvag%2C24YMQ9GvLss">23m 19s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/biology/membranes-and-transport">Membranes and transport</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/biology/membranes-and-transport/the-plasma-membrane">The plasma membrane</a> (1 Article, 1 Video | <a href="https://www.youtube.com/watch_videos?title=The+plasma+membrane&video_ids=cP8iQu57dQo">8m 47s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/membranes-and-transport/diffusion-and-osmosis">Diffusion and osmosis</a> (1 Article, 1 Exercise, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Diffusion+and+osmosis&video_ids=a_Y9wBQ610o%2CCNP-dCQ-Cmg%2CrCNlG_j_gSM%2CafWnU10ZNfg%2CaubZU0iWtgI">42m 44s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/membranes-and-transport/passive-transport">Passive transport</a> (1 Article, 1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Passive+transport&video_ids=jQN07Hvq6WI%2C8HlVy__J8XA">13m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/membranes-and-transport/active-transport">Active transport</a> (1 Article, 1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Active+transport&video_ids=vh166DKxYiM%2CwbWL2wfvsM8%2C-aGYytZ7K7M">19m 48s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/membranes-and-transport/bulk-transport">Bulk transport</a> (1 Article, 1 Exercise, 1 Quiz, 1 Test, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Bulk+transport&video_ids=QspmZf_yWyU%2CVOzV4d0HKis">8m 55s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/biology/cellular-respiration-and-fermentation">Cellular Respiration</a> (6 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/biology/cellular-respiration-and-fermentation/intro-to-cellular-respiration">Introduction to cellular respiration</a> (1 Article, 1 Exercise, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduction+to+cellular+respiration&video_ids=PK6HmIe2EAg%2C-KE7jTXwNYs%2C2f7YwCtHcgk%2CorI2m6IarJg%2C_KyyVhlUDNU">55m 42s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/cellular-respiration-and-fermentation/overview-of-cellular-respiration-steps">Overview: steps of cellular respiration</a> (1 Article, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Overview%3A+steps+of+cellular+respiration&video_ids=9zoS5WGsmpc">13m 11s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/cellular-respiration-and-fermentation/glycolysis">Glykolyse</a> (1 Article, 1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Glykolyse&video_ids=FE2jfTXAJHg%2CArmlWtDnuys">25m 32s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/cellular-respiration-and-fermentation/pyruvate-oxidation-and-the-citric-acid-cycle">Pyruvate oxidation and the citric acid cycle</a> (2 Articles, 1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Pyruvate+oxidation+and+the+citric+acid+cycle&video_ids=juM2ROSLWfw">17m 47s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/cellular-respiration-and-fermentation/oxidative-phosphorylation">Oxidative phosphorylation</a> (1 Article, 1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Oxidative+phosphorylation&video_ids=J30zpvbmw7s">15m 37s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/cellular-respiration-and-fermentation/variations-on-cellular-respiration">Variations on cellular respiration</a> (3 Articles, 1 Exercise, 1 Quiz, 1 Test, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Variations+on+cellular+respiration&video_ids=lfeXuK8pbFw%2CD6mRPgvAEOc">17m 45s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/biology/photosynthesis-in-plants">Fotosyntese</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/biology/photosynthesis-in-plants/introduction-to-stages-of-photosynthesis">Intro to photosynthesis</a> (1 Article, 1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Intro+to+photosynthesis&video_ids=PK6HmIe2EAg%2C-KE7jTXwNYs%2C-rsYk4eCKnA%2CWt5EMpUt-_g">29m 11s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/photosynthesis-in-plants/the-light-dependent-reactions-of-photosynthesis">The light-dependent reactions</a> (2 Articles, 1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=The+light-dependent+reactions&video_ids=vEsAtC9d_MQ%2CKzpRivhr6HI%2CGR2GA7chA_c">35m 59s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/photosynthesis-in-plants/the-calvin-cycle-reactions">The Calvin cycle</a> (1 Article, 1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=The+Calvin+cycle&video_ids=slm6D2VEXYs">13m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/photosynthesis-in-plants/photorespiration--c3-c4-cam-plants">Photorespiration: C3, C4, and CAM plants</a> (2 Articles, 1 Exercise, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Photorespiration%3A+C3%2C+C4%2C+and+CAM+plants&video_ids=DnNqe8o0ehc%2C7ynX_F-SwNY%2Cxp6Zj24h8uA">36m 40s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/biology/cell-signaling">Cell signaling</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/biology/cell-signaling/mechanisms-of-cell-signaling">Cell signaling</a> (4 Articles, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Cell+signaling&video_ids=FQFBygnIONU%2Ci7z7f-wnews">15m 24s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/cell-signaling/signaling-between-single-celled-organisms">Signaling between single-celled organisms</a> (1 Article, 1 Test, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Signaling+between+single-celled+organisms&video_ids=DJfNr8WoXW4">8m 2s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/biology/cellular-molecular-biology">Cellular and molecular biology</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/biology/cellular-molecular-biology/intro-to-cell-division">Introduction to cell division</a> (1 Article, 1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduction+to+cell+division&video_ids=dNp7vErqlaA%2CPvoigrzODdE%2Cs9HPNwXd9fk">38m 25s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/cellular-molecular-biology/mitosis">Mitosis</a> (3 Articles, 1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Mitosis&video_ids=VXLSTd_dlKg%2CTKGcfbyFXsw">20m 40s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/cellular-molecular-biology/meiosis">Meiosis</a> (2 Articles, 1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Meiosis&video_ids=IQJ4DBkCnco%2C04gQ0bQu6xk%2CXGWL9jfPHJ8%2CmMCcBsSAlF4">38m 50s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/cellular-molecular-biology/stem-cells-and-cancer">Stem cells and cancer</a> (4 Articles, 2 Exercises, 1 Quiz, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Stem+cells+and+cancer&video_ids=-yCIMk1x0Pk%2CRZhL7LDPk8w%2CgNFDONSjB7Q">43m 18s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/biology/classical-genetics">Classical and molecular genetics</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/biology/classical-genetics/mendelian--genetics">Mendelian genetics</a> (4 Articles, 2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Mendelian+genetics&video_ids=eEUvRrhmcxM%2CD5ymMYcLtv0">42m 43s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/classical-genetics/variations-on-mendelian-genetics">Variations on Mendelian genetics</a> (4 Articles, 1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Variations+on+Mendelian+genetics&video_ids=D5ymMYcLtv0">25m 16s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/classical-genetics/chromosomal-basis-of-genetics">Chromosomal basis of genetics</a> (2 Articles, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Chromosomal+basis+of+genetics&video_ids=rV6O3rGulaY%2ChuDDaj0PjLU">21m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/classical-genetics/sex-linkage-non-nuclear-chromosomal-mutations">Sex linkage, chromosomal mutations, and non-nuclear inheritance</a> (4 Articles, 2 Exercises, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Sex+linkage%2C+chromosomal+mutations%2C+and+non-nuclear+inheritance&video_ids=-ROhfKyxgCo">14m 19s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/classical-genetics/molecular-basis-of-genetics-tutorial">Molecular basis of genetics</a> (1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Molecular+basis+of+genetics&video_ids=AmOO4j0E408%2C6gUY5NoX1Lk%2CP0nMnPPdW_k">36m 44s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/biology/dna-as-the-genetic-material">DNA as the genetic material</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/biology/dna-as-the-genetic-material/structure-of-dna">Structure of DNA</a> (1 Article, 1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Structure+of+DNA&video_ids=AmOO4j0E408%2CL677-Fl0joY%2C0CQ5ls3Uc2Q">36m</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/dna-as-the-genetic-material/dna-discovery-and-structure">DNA discovery and structure</a> (2 Articles, 1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=DNA+discovery+and+structure&video_ids=9X12OVvOznU%2CbNsSaxCsIIg%2ChCUce36Ganc">28m 5s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/dna-as-the-genetic-material/dna-replication">DNA replication</a> (4 Articles, 1 Exercise, 1 Test, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=DNA+replication&video_ids=6gUY5NoX1Lk%2CeM7arWJJ3zk%2CPSl6IXUCNuw%2CL677-Fl0joY">42m 39s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/biology/gene-expression-central-dogma">Genetisk udtryk</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/biology/gene-expression-central-dogma/central-dogma-transcription">Central dogma and transcription</a> (4 Articles, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Central+dogma+and+transcription&video_ids=6gUY5NoX1Lk%2CP0nMnPPdW_k">23m 42s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/gene-expression-central-dogma/transcription-of-dna-into-rna">Transcription (Molecular biology)</a> (3 Articles, 1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Transcription+%28Molecular+biology%29&video_ids=6gUY5NoX1Lk%2CJQIwwJqF5D0%2CjUUJSOM1ihU">37m 19s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/gene-expression-central-dogma/translation-polypeptides">Oversættelse</a> (4 Articles, 1 Exercise, 1 Test, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Overs%C3%A6ttelse&video_ids=6gUY5NoX1Lk%2CocAAkB32Hqs">29m 34s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/biology/gene-regulation">Gene regulation</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/biology/gene-regulation/gene-regulation-in-bacteria">Gene regulation in bacteria</a> (3 Articles, 1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Gene+regulation+in+bacteria&video_ids=N7_K0yl0Egk%2CEvLy_1_Y3tk%2CLuOaEe89_HE">27m 51s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/biology/biotech-dna-technology">Biotechnology</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/biology/biotech-dna-technology/dna-cloning-tutorial">DNA cloning</a> (3 Articles, 1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=DNA+cloning&video_ids=5ffl-0OYVQU">11m 8s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/biotech-dna-technology/dna-sequencing-pcr-electrophoresis">DNA analysis methods</a> (3 Articles, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=DNA+analysis+methods&video_ids=nHi-3jP6Mvc%2C_EYsykjsfiY">20m 54s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/biotech-dna-technology/stem-cells">Stem cells</a> (1 Test, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Stem+cells&video_ids=-yCIMk1x0Pk">19m 54s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/biology/developmental-biology">Developmental biology</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/biology/developmental-biology/development-and-differentiation">Development & differentiation</a> (1 Article, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Development+%26+differentiation&video_ids=YtvL-LQlPrU%2CPvoigrzODdE%2C-yCIMk1x0Pk">38m</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/developmental-biology/apoptosis-in-development">Apoptosis</a> (1 Article, 1 Test, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Apoptosis&video_ids=gNFDONSjB7Q">10m 48s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/biology/bacteria-archaea">Bacteria and archaea</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/biology/bacteria-archaea/prokaryote-structure">Prokaryote structure</a> (3 Articles, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Prokaryote+structure&video_ids=TDoGrbpJJ14%2CxTnNv7YplSo">25m 16s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/biology/biology-of-viruses">Viruses</a> (1 Topic)
<ul>
<li><a href="https://da.khanacademy.org/science/biology/biology-of-viruses/virus-biology">Viruses</a> (5 Articles, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Viruses&video_ids=0h5Jd7sgQWY">23m 17s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/biology/her">Heredity and evolution</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/biology/her/evolution-and-natural-selection">Evolution og naturlig selektion</a> (2 Articles, 2 Exercises, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Evolution+og+naturlig+selektion&video_ids=GcjgWov7mTM%2CoFGkYA_diDA%2CqxOEz9aPZNY%2Cnh1R-gyY7es%2CdR_BFmDMRaI%2CDuArVnT1i-E%2CQ-aGAX27SIo">1h 25m 38s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/her/heredity-and-genetics">Heredity and genetics</a> (4 Articles, 2 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Heredity+and+genetics&video_ids=Bc9bhLk_AhI%2Coc9fJCAIRJs%2CD5NVlAaT-OA%2CQ618DALi2eo%2CIRTn0iNkAHI">38m 52s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/her/tree-of-life">Livets træ</a> (3 Articles, 1 Test, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Livets+tr%C3%A6&video_ids=oHvLlS_Sc54%2CTmt4zrDK3dA%2Cgnku5AksWvU%2CsNgsCT0E7Es%2C11iYk0Yrx3g%2CAjvLQJ6PIiU%2C6_XMKmFQ_w8">1h 11m 59s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/biology/history-of-life-on-earth">Historien om livet på Jorden</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/biology/history-of-life-on-earth/history-life-on-earth">Formation of Earth and early life</a> (1 Article, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Formation+of+Earth+and+early+life&video_ids=VbNXh0GaLYo%2CnYFuxTXDj90%2CrMuj2MGeIAc">31m 6s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/history-of-life-on-earth/the-diversification-of-life">The diversification of life</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=The+diversification+of+life&video_ids=E1P79uFLCMc%2C3gUE_P9T-Wk%2CMS7x2hDEhrw%2CfrE1rjhH77Y">38m 25s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/history-of-life-on-earth/radiometric-dating">Radiometric dating</a> (1 Article, 1 Test, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Radiometric+dating&video_ids=5mNTvtjDnP8%2C8wYvKeSK1IY%2C4YUtnod-YuE%2CNMZ5kJEviD0%2CiLFcSfzrlMk">45m 53s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/biology/ecology">Ecology</a> (8 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/biology/ecology/intro-to-ecology">Intro to ecology</a> (2 Articles, 1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Intro+to+ecology&video_ids=OfV3VNgjpvw">9m 49s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/ecology/population-ecology">Population ecology</a> (3 Articles, 1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Population+ecology&video_ids=mAdUjImDx58">11m 47s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/ecology/population-growth-and-regulation">Population growth & regulation</a> (2 Articles, 1 Exercise, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Population+growth+%26+regulation&video_ids=KyAKEisg2PQ%2C6IS_M6CX7FE%2CNYq2078_xqc%2Cr1ywppAJ1xs">31m 27s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/ecology/community-ecosystem-ecology">Community & ecosystem ecology</a> (4 Articles, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Community+%26+ecosystem+ecology&video_ids=q2zdiLn3gSE%2CNYq2078_xqc">13m 21s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/ecology/community-structure-and-diversity">Community structure & diversity</a> (3 Articles, 1 Exercise, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Community+structure+%26+diversity&video_ids=-bE-Pydad7U%2CJ-ftiWffNTc%2Cd7xbyNSxxrI">23m 32s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/ecology/intro-to-ecosystems">Intro to ecosystems</a> (3 Articles, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Intro+to+ecosystems&video_ids=A495e31cDdE%2CTitrRpMUt0I">17m 59s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/ecology/biogeochemical-cycles">Biogeochemical cycles</a> (5 Articles, 1 Exercise, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Biogeochemical+cycles&video_ids=ccWUDlKC3dE%2CjFjI6y46QRk%2C_dYkByQ9Kmg%2CDsCMYyQ0NWU%2Ctm2LG5ScT1g%2CAxaWXWd2pw4">42m 38s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/ecology/biogeography">Biogeography</a> (3 Articles, 1 Exercise, 1 Quiz, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Biogeography&video_ids=BTOHSRVqN20%2C3OAfLjxQUg4%2CACxH7ZVUOLk">28m 37s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/biology/biodiversity-and-conservation">Biodiversity and conservation</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/biology/biodiversity-and-conservation/ecosystems-ecosystem-services">Ecosystems & ecosystem services</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Ecosystems+%26+ecosystem+services&video_ids=-bE-Pydad7U%2CBCH1Gre3Mg0">17m 59s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/biodiversity-and-conservation/global-distribution-of-biodiversity">Global distribution of biodiversity</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Global+distribution+of+biodiversity&video_ids=RaQBaVeEbW8%2CBTOHSRVqN20%2C3OAfLjxQUg4">24m 1s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/biodiversity-and-conservation/threats-to-biodiversity">Threats to biodiversity</a> (1 Exercise, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Threats+to+biodiversity&video_ids=2RC3Hsk90t8%2CJ-ftiWffNTc%2CXFmovUAWQUQ%2CGL7qJYKzcsk%2Cv8PPsI0LqOY">59m 29s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/biodiversity-and-conservation/protecting-biodiversity">Protecting biodiversity</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Protecting+biodiversity&video_ids=-u8xi7KFHY4%2CPxAHbuyBvBY%2CmXsFQONwIic">32m 52s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/biodiversity-and-conservation/levels-of-biodiversity">Levels of biodiversity</a> (1 Exercise, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Levels+of+biodiversity&video_ids=XOxsjdB4-ZQ%2Cixf33dQDlXc%2CAjvLQJ6PIiU">18m 45s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/biology/behavioral-biology">Behavioral biology</a> (1 Topic)
<ul>
<li><a href="https://da.khanacademy.org/science/biology/behavioral-biology/animal-behavior">Dyreadfærd</a> (4 Articles, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Dyreadf%C3%A6rd&video_ids=1kbZ1JAoi5o%2COrCoshLAOiQ">6m 36s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/biology/principles-of-physiology">Principles of physiology</a> (2 Topics)</li>
<li><a href="https://da.khanacademy.org/science/biology/human-biology">Organisk biologi</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/biology/human-biology/circulatory-pulmonary">Kredsløbs-og pulmonale systemer</a> (1 Article, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Kredsl%C3%B8bs-og+pulmonale+systemer&video_ids=SPGRkexI_cs%2CfLKOBQ6cZHA%2CQhiVnFvshZg%2CLWtXthfG9_M">1h 6m 34s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/human-biology/neuron-nervous-system">Neuronen og nervesystemet</a> (5 Articles, 1 Quiz, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Neuronen+og+nervesystemet&video_ids=ob5U8zPbAX4%2CC_H-ONQFjpQ%2Cye3rTjLCvAU%2CkY8FEq0teOs%2CikFUv-gdNLQ%2CTbq-KZaXiL4%2CX-m0JDCw6TE">1h 9m 57s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/human-biology/kidney-nephron">Nyren og nephronet</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Nyren+og+nephronet&video_ids=cc8sUv2SuaY%2CczY5nyvZ7cU">32m 51s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/human-biology/muscles">Muskler</a> (1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Muskler&video_ids=zopoN2i7ALQ%2CLiOfeSsjrB8%2CSauhB2fYQkM%2CuY2ZOsCnXIA">50m 14s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/human-biology/immunology">Immunologi</a> (1 Test, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Immunologi&video_ids=O1N2rENXq_Y%2Crp7T4IItbtM%2CZ36dUduOk1Y%2Cj_kSmmEpvQk%2CuwMYpTYsNZM%2CYdBXHm3edL8%2Cxaz5ftvZCyI%2CFXSuEIMrPQk">1h 45m 44s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/biology/plant-biology">Plant biology</a> (1 Topic)
<ul>
<li><a href="https://da.khanacademy.org/science/biology/plant-biology/plant-responses-to-light-cues">Plant responses to light</a> (1 Article, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Plant+responses+to+light&video_ids=2A_LKrLlhxE%2CAQf3gKTCffs">14m 51s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/biology/crash-course-bio-ecology">Crash Course: Biology and Ecology</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/biology/crash-course-bio-ecology/crash-course-biology-science">Lynkursus i Biologi</a> (39 Videos | <a href="https://www.youtube.com/watch_videos?title=Lynkursus+i+Biologi&video_ids=T2DaaGuKOTo%2CQymONNa5C6s%2CWtCCobhLqng%2C1aJBToJrlvA%2CTyZODv-UqvU%2Cd9GkH4vpK3w%2CCIyAs0bxeoI%2CWMgJtmjWHYg%2CuSywjCBfSO8%2CI-y5d4Jjzfk%2CX1bmedVziGw%2CTX7-Kdn6lJQ%2CbQfZXeksysw%2Cst_gQzP4QxY%2Ccstic6WHr2E%2COqhe31kjlQM%2CtzqZsPjHFVQ%2C_2OIPwDEWFQ%2CWThFuJ6wFcM%2C77_wq8yFEf8%2CqThlokfE-yk%2CDfhhHr1KQic%2Cc7Yy9v8dH8s%2CKgii4IcKCOg%2CaP1KZzgR_dg%2CL1qpKn2hNF0%2CqF6TBRaE2_A%2CUU366tJPovg%2C97FwcpMIUuY%2C5_6m0I1BUp4%2C4xtXBsYENzg%2CGZUn5RYkSkE%2CHmAyjo0Ghh0%2CsPIOgGHhlYo%2C64GBYOsI9jQ%2CVFtOcdXeP0Y%2CH3XT-YU2n0c%2C1kEaBXshX90%2CVSUEiTb0tag">7h 20m 29s</a> )</li>
<li><a href="https://da.khanacademy.org/science/biology/crash-course-bio-ecology/crash-course-ecology-2">Lynkursus i Økologi</a> (12 Videos | <a href="https://www.youtube.com/watch_videos?title=Lynkursus+i+%C3%98kologi&video_ids=Akpl6wmAfZQ%2CIOuZHx6w-gU%2CWIhR50ttMB4%2CymWr2tIwIGo%2CDISpHFWYtRM%2CvNbgztA5WVc%2CJh4UsA2see0%2CyrxAKGGEWZY%2C6rwoktPmqpY%2C54JkvkIT0Dc%2CxGBA1_VVvGI%2C3BBqL_F9fxQ">2h 1m 35s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/biology/meet-the-biology-professional">Meet the biology professional</a> (1 Topic)</li>
</ul>
<h2 id="kosmologi-og-astronomi-4-topics"><a href="https://da.khanacademy.org/science/cosmology-and-astronomy">Kosmologi og astronomi</a> (4 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/science/cosmology-and-astronomy/universe-scale-topic">Universets Størrelse</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/cosmology-and-astronomy/universe-scale-topic/scale-earth-galaxy-tutorial">Størrelsen af Jorden, Solen, Galakser og Universet</a> (8 Videos | <a href="https://www.youtube.com/watch_videos?title=St%C3%B8rrelsen+af+Jorden%2C+Solen%2C+Galakser+og+Universet&video_ids=5FEjrStgcF8%2CERKx3Oa2omo%2CGZx3U0dbASg%2CGP53b__h4ew%2CjEeJkkMXt6c%2CrcLnMe1ELPA%2CJiE_kNk3ucI%2CWl4re38deh0">1h 22m 33s</a> )</li>
<li><a href="https://da.khanacademy.org/science/cosmology-and-astronomy/universe-scale-topic/cosmos-time-scale-tutorial">Tidsskalaen for kosmos</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Tidsskalaen+for+kosmos&video_ids=DRtLXagrMHw%2CLO7-3MpWijU">13m 25s</a> )</li>
<li><a href="https://da.khanacademy.org/science/cosmology-and-astronomy/universe-scale-topic/light-fundamental-forces">Lys og de fundamentale kræfter</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Lys+og+de+fundamentale+kr%C3%A6fter&video_ids=rLNM8zI4Q_M%2CFEF6PxWOvsk">20m 6s</a> )</li>
<li><a href="https://da.khanacademy.org/science/cosmology-and-astronomy/universe-scale-topic/big-bang-expansion-topic">Big bang og udvidelsen af universet</a> (1 Article, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Big+bang+og+udvidelsen+af+universet&video_ids=eUF59jCFcyQ%2C6nVysrZQnOQ%2Cb6VQv76BQDs%2Cmx2M_ZKXM_c%2CsxbPwl_KRuA%2C06z7Q8TWPyU%2C1V9wVmO0Tfg%2C0w9R_foNLrg">1h 22m 1s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/cosmology-and-astronomy/stellar-life-topic">Stjerners Liv (og død)</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/cosmology-and-astronomy/stellar-life-topic/stellar-life-death-tutorial">Stjerners liv og død</a> (1 Interactive, 10 Videos | <a href="https://www.youtube.com/watch_videos?title=Stjerners+liv+og+d%C3%B8d&video_ids=i-NNWI8Ccas%2ChD4ySbQYYyA%2CkJSOqlcFpJw%2CEdYyuUUY-nc%2Cw3IKEa_GOYs%2CUhIwMAhZpCo%2CqOwCpnQsDLM%2CQMv4kxATfzs%2CJoL2pO3O0rg%2CDxkkAHnqlpY">1h 22m 48s</a> )</li>
<li><a href="https://da.khanacademy.org/science/cosmology-and-astronomy/stellar-life-topic/quasars">Kvasarer og galakse-kollisioner</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Kvasarer+og+galakse-kollisioner&video_ids=4LmIyMyAuN0%2CPX_XSnVWlNc%2CQXYbGZ3T3_k">14m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/science/cosmology-and-astronomy/stellar-life-topic/stellar-parallax-tutorial">Stjernernes parallakse</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Stjernernes+parallakse&video_ids=ETzUpoqZIHY%2ComvNINaRdxg%2ClVadjWOjvV8%2C6FP-hLuAlr4%2C6zV3JEjLoyE">38m 22s</a> )</li>
<li><a href="https://da.khanacademy.org/science/cosmology-and-astronomy/stellar-life-topic/cepheid-variables">Cepheiderne variable stjerner</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Cepheiderne+variable+stjerner&video_ids=BWs-ONRDDG4%2CX_3QAB3o4Vw%2CRpOHZc6cDIw">24m 46s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/cosmology-and-astronomy/earth-history-topic">Jordens geologiske og klimatiske historie</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/cosmology-and-astronomy/earth-history-topic/plate-techtonics">Pladetektonik</a> (10 Videos | <a href="https://www.youtube.com/watch_videos?title=Pladetektonik&video_ids=f2BWsPVN7c4%2C4AxZ-6MOznY%2C6EdsBabSZ4g%2CFK1s1-OJ5BE%2CY0eWnOZpSpQ%2Cf8GK2oEN-uI%2CD1eibbfAEVk%2CaxB6uhEx628%2ChHteUIS0OFY%2CKL0i1RSnpfI">1h 26m 32s</a> )</li>
<li><a href="https://da.khanacademy.org/science/cosmology-and-astronomy/earth-history-topic/seismic-waves-tutorial">Seismiske bølger og hvordan vi kender Jordens opbygning</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Seismiske+b%C3%B8lger+og+hvordan+vi+kender+Jordens+opbygning&video_ids=NhioAAdYDJM%2CBTWLwoaNeBA%2CUNZ171fDja4%2CyAQSucmHrAk">28m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/science/cosmology-and-astronomy/earth-history-topic/earth-title-topic">Jordens rotation og hældning</a> (1 Interactive, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Jordens+rotation+og+h%C3%A6ldning&video_ids=SJUd5du0T08%2C05qDIjKevJo%2CumvNQj-zmq4%2CZD8THEz18gc%2C2o-Sef6wllg%2CnL6LMX8-bPY%2Cm6lMGoZTJnc">1h 6m 57s</a> )</li>
<li><a href="https://da.khanacademy.org/science/cosmology-and-astronomy/earth-history-topic/moon-phases-and-eclipses">Månens faser og solformørkelser</a> (1 Article, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=M%C3%A5nens+faser+og+solform%C3%B8rkelser&video_ids=ZQcf9xLABa0%2CqJqGg3Xe4iE">11m 6s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/cosmology-and-astronomy/life-earth-universe">Livet på Jorden og i Universet</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/cosmology-and-astronomy/life-earth-universe/history-life-earth-tutorial">Historien om livet på Jorden</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Historien+om+livet+p%C3%A5+Jorden&video_ids=VbNXh0GaLYo%2CnYFuxTXDj90%2CE1P79uFLCMc%2CMS7x2hDEhrw%2C3gUE_P9T-Wk">46m 33s</a> )</li>
<li><a href="https://da.khanacademy.org/science/cosmology-and-astronomy/life-earth-universe/humanity-on-earth-tutorial">Menneskeheden på Jorden</a> (10 Videos | <a href="https://www.youtube.com/watch_videos?title=Menneskeheden+p%C3%A5+Jorden&video_ids=frE1rjhH77Y%2CEKKe7DBZVhI%2CN06Jy-gQog8%2CiU58AIjh3YA%2CmwUyaeWxJhA%2CNqR_dtZu4Mo%2Cr1ywppAJ1xs%2CxM8szz4VB28%2C5I9dH5im24U%2CE4rbS0oxg30">1h 45m 17s</a> )</li>
<li><a href="https://da.khanacademy.org/science/cosmology-and-astronomy/life-earth-universe/measuring-age-tutorial">Måling af alder på Jorden</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=M%C3%A5ling+af+alder+p%C3%A5+Jorden&video_ids=5mNTvtjDnP8%2C8wYvKeSK1IY%2C4YUtnod-YuE%2CNMZ5kJEviD0%2CiLFcSfzrlMk">45m 53s</a> )</li>
<li><a href="https://da.khanacademy.org/science/cosmology-and-astronomy/life-earth-universe/life-in-universe-topic">Liv i Universet</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Liv+i+Universet&video_ids=YYEgq1bweN4%2CjN03g05TSWM%2CLRmwUsxNSL0%2CT5DGZIsfK-0%2CxL9ejqb53ms">40m 38s</a> )</li>
</ul></li>
</ul>
<h2 id="sundhed-og-medicin-25-topics"><a href="https://da.khanacademy.org/science/health-and-medicine">Sundhed og medicin</a> (25 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/human-anatomy-and-physiology">human anatomy and physiology</a> (14 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/human-anatomy-and-physiology/heart-introduction">Circulatory system introduction</a> (1 Article, 3 Exercises, 1 Quiz, 9 Videos | <a href="https://www.youtube.com/watch_videos?title=Circulatory+system+introduction&video_ids=Vi1JK6IYVt8%2C7XaftdE_h60%2CK57qjYYjgIY%2C-4kGMI-qQ3I%2Cbm65xCS5ivo%2CC_LiAEjuIIc%2ClXkfZYlnwl4%2CiqRTd1NY-pU%2CQhiVnFvshZg">1h 29m 54s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/human-anatomy-and-physiology/lung-introduction">Respiratory system introduction</a> (3 Exercises, 1 Quiz, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Respiratory+system+introduction&video_ids=qGiPZf7njqY%2ClzWUG4H5QBo%2CZ-yv3Yq4Aw4%2CmykrnTh1tz8%2CdTsUyXXudvA%2CIya-2bS14ho%2CSPGRkexI_cs">1h 18m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/human-anatomy-and-physiology/introduction-to-the-kidneys">Urinary system introduction</a> (3 Exercises, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Urinary+system+introduction&video_ids=mcQQGGShmLs%2CctGkLYuUCvU%2CwWsdcfGta4k%2Cx0pFo1RxTzM%2CVqce2dtg45U%2CrheO1tVyB0U%2Ccc8sUv2SuaY%2CczY5nyvZ7cU">1h 19m 22s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/human-anatomy-and-physiology/introduction-to-hematologic">Introduction to hematologic system</a> (12 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduction+to+hematologic+system&video_ids=5MOn8X-tyFw%2CfLKOBQ6cZHA%2CNnqp_3HMlDU%2CddifthdMNVc%2CUBlem4dGLGU%2CLWtXthfG9_M%2CQP8ImP6NCk8%2CSqE5S1qS7ZU%2Ca19T5CX2b-g%2CRQpBj8ebbNY%2CFNVvQ788wzk%2CdHi9ctwDUnc">2h 30m 45s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/human-anatomy-and-physiology/introduction-to-immunology">Immunologic system introduction</a> (2 Exercises, 12 Videos | <a href="https://www.youtube.com/watch_videos?title=Immunologic+system+introduction&video_ids=O1N2rENXq_Y%2Crp7T4IItbtM%2CZ36dUduOk1Y%2Cj_kSmmEpvQk%2CuwMYpTYsNZM%2CoqI4skjr6lQ%2Cxaz5ftvZCyI%2CEsQyCHs4IBY%2CafM6_VFaIss%2CLXFQG4Ugreo%2CFXSuEIMrPQk%2C97nFwkRiNCc">2h 28m</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/human-anatomy-and-physiology/gastrointestinal-system-introduction">Gastrointestinal system introduction</a> (15 Videos | <a href="https://www.youtube.com/watch_videos?title=Gastrointestinal+system+introduction&video_ids=Oh_Pt_UrtEE%2CKyEk35-Uwh0%2C9wYbsSrDwbA%2CwU9_daCwr_w%2COzLoUCCASwM%2CUgnF1w-H8vw%2CnLCNoT79_-o%2C7zq3s3F5Do8%2CrDjWrNRKfvg%2CnJfB32MtqBA%2CjmfcACEGW-0%2CBtqlMr1rUT8%2CxNf--q0YMq8%2CLzr9GGjh6YQ%2C_kfB2qKjdgM">1h 42m 22s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/human-anatomy-and-physiology/nervous-system-introduction">Nervous system introduction</a> (1 Exercise, 21 Videos | <a href="https://www.youtube.com/watch_videos?title=Nervous+system+introduction&video_ids=L82bDTBMGUU%2Cob5U8zPbAX4%2C1h4kW8RX-6k%2CBY8DJeX_tGc%2CC_H-ONQFjpQ%2Cye3rTjLCvAU%2CkY8FEq0teOs%2CikFUv-gdNLQ%2Ciqf3ft0mh1M%2CTbq-KZaXiL4%2CFXYX_ksRwIk%2Cyg44T2HcA2o%2CjmD0LBdAvlE%2CqrK-FBdjGk4%2CvXb0ZvkFkS8%2CoOIqk5hXBt4%2CYa-3XHBWDqs%2CjA1NyCE4M2g%2CaASSUcUSBro%2CvrmKqH8d1RM%2CmGxomKWfJXs">3h 10m 18s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/human-anatomy-and-physiology/introduction-to-muscles">Muscular system introduction</a> (2 Exercises, 1 Quiz, 12 Videos | <a href="https://www.youtube.com/watch_videos?title=Muscular+system+introduction&video_ids=zopoN2i7ALQ%2CLiOfeSsjrB8%2CSauhB2fYQkM%2CL-_MvjcH0xk%2CbwOE1MEginA%2CLwA00uqniiU%2ClRJd56BCidg%2Cl5yMz2lFgx0%2Cvv6WBeqw2Nc%2CNqasGo5q5yQ%2Cye28W_OygOw%2CHfXqyPS5bRo">1h 50m 49s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/human-anatomy-and-physiology/skeletal-system">skeletal system introduction</a> (6 Videos | <a href="https://www.youtube.com/watch_videos?title=skeletal+system+introduction&video_ids=-lrKDRAbP38%2CIKHVpABUSDs%2Cq1LlWexoKks%2Ccsp08ICfOC4%2CN3g3poXeqaY%2Cfrvv37WJjm4">32m 57s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/human-anatomy-and-physiology/introduction-to-hormones">Endocrine system introduction</a> (2 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Endocrine+system+introduction&video_ids=ER49EweKwW8%2C9dS7bc_2bUE%2CRycF0ub2Al0%2CKSclrkk_Ako%2CTNGSzt2v4xY">41m 26s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/human-anatomy-and-physiology/integumentary-system-introduction">Integumentary system introduction</a> (11 Videos | <a href="https://www.youtube.com/watch_videos?title=Integumentary+system+introduction&video_ids=4zKjzl0futI%2CTjYbFdSY0LA%2CVn-tOBUvnD8%2CRD0waXH62AI%2CA44_Sqifi0U%2CjgnNhL2jSXY%2C0-pHx5rKKqI%2CIW8OnV8J2Qw%2Ck9cj_rZO448%2CD-oAsFIHqbY%2CHfXqyPS5bRo">1h 27m 54s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/human-anatomy-and-physiology/lymphatics">Lymphatic system introduction</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Lymphatic+system+introduction&video_ids=_GinTV94hUk%2CCLneY6SoPi0%2CkjLwVqxwaIM%2CEHUlWm0kFTA%2C2Bq2xopLew8">42m 31s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/human-anatomy-and-physiology/reproductive-system-introduction">Reproductive system introduction</a> (14 Videos | <a href="https://www.youtube.com/watch_videos?title=Reproductive+system+introduction&video_ids=jRYEqOOrjH8%2C_ce-IVjQYws%2CXLoLvz0r550%2CQUJ-xnv53UM%2Ck4e70nG3T8U%2CMsrym4oGVSk%2CVYSFNwTUkG0%2CbQioHx12JuY%2CgmKAuceSf-s%2CuA7Xny276sk%2CeK7Gp6AWnuY%2CA0sp7I9rlz8%2CGxQAAqRzwNw%2CbflHwVKgRNE">2h 8m 47s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/human-anatomy-and-physiology/pregnancy">Pregnancy and pregnancy complications</a> (1 Test, 16 Videos | <a href="https://www.youtube.com/watch_videos?title=Pregnancy+and+pregnancy+complications&video_ids=OnlHXSBv0M4%2CIKRT-boQTr0%2CBf04LcSBpDw%2CwfnefFAmYjg%2C70tpqg58Oug%2CDMCowipIXgE%2C79NnsYrAXz4%2Cx3EMTQQjoA0%2CYEQNnO64wLc%2Ce4baNHUxP8I%2C1exN1kFX2wI%2CZSLMm5KNGEc%2COW0Yq2nWyuY%2CN3jnRuzseoM%2Clt3nPxVTC5M%2CNQFiGK0M69s">2h 27m 38s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/circulatory-system">Advanced circulatory system physiology</a> (13 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/circulatory-system/circulatory-system-introduction">Circulatory system introduction</a> (1 Article, 3 Exercises, 1 Quiz, 9 Videos | <a href="https://www.youtube.com/watch_videos?title=Circulatory+system+introduction&video_ids=Vi1JK6IYVt8%2C7XaftdE_h60%2CK57qjYYjgIY%2C-4kGMI-qQ3I%2Cbm65xCS5ivo%2CC_LiAEjuIIc%2ClXkfZYlnwl4%2CiqRTd1NY-pU%2CQhiVnFvshZg">1h 29m 54s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/circulatory-system/blood-pressure-ddp">Blodtryk</a> (8 Videos | <a href="https://www.youtube.com/watch_videos?title=Blodtryk&video_ids=J97G6BeYW0I%2CA8xO92u0VFs%2C8X7yEzgurP8%2CE-q9JpkGc-8%2C5lXw5_4R2B4%2CePwN6rHhNyU%2CF2uzWHppVrk%2Cfy_muPF0390">1h 8m 24s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/circulatory-system/blood-pressure-control">Blodtrykskontrol</a> (11 Videos | <a href="https://www.youtube.com/watch_videos?title=Blodtrykskontrol&video_ids=ajLgwCygHsc%2C_vBJkK4eocA%2CBVUeCLt68Ik%2CAtlhAhONHyM%2CcUVS0AlRyw8%2COges5YqDLHY%2C64_ZfIemRGM%2C7HTy-6NLWGM%2C8dQdfbE8kFU%2COt1We4_EfRE%2CZ0XPMFL45oo">2h 9m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/circulatory-system/fetal-circulation">Fetal Circulation</a> (10 Videos | <a href="https://www.youtube.com/watch_videos?title=Fetal+Circulation&video_ids=bQioHx12JuY%2CXDF2QyQtd_Q%2C7XaftdE_h60%2CSJ1gu_WRx5o%2CcgccQVcFLi4%2CSqE5S1qS7ZU%2CSL3I_RYjyZo%2C-IRkisEtzsk%2CjFn0dyU5wUw%2COga0K4reWoY">1h 55m 5s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/circulatory-system/blood-vessels">Blood Vessels</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Blood+Vessels&video_ids=VMwa6yC3r-s%2ChSkIG4MdKqU%2CyeX0uDpPBj4">23m 48s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/circulatory-system/arterial-stiffness">Arterial Stiffness</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Arterial+Stiffness&video_ids=cGhKJYfXW-c%2CgYpokkRFvO8%2CQcK7n-EqnQU%2CRsYgjO5BiHU%2CLcyEXlCIkmA">40m 5s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/circulatory-system/heart-muscle-contraction">Heart Muscle Contraction</a> (7 Videos | <a href="https://www.youtube.com/watch_videos?title=Heart+Muscle+Contraction&video_ids=bwOE1MEginA%2C__afuK1CMpQ%2CzopoN2i7ALQ%2CLiOfeSsjrB8%2Cvv6WBeqw2Nc%2CxAL0tbYU8QU%2CcuwMrVoG2V8">1h 17m</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/circulatory-system/heart-depolarization">Depolarisering i hjertet</a> (11 Videos | <a href="https://www.youtube.com/watch_videos?title=Depolarisering+i+hjertet&video_ids=PtKAeihnbv0%2CeROhIFBGKuU%2C920PtNX-WCE%2COQpFFiLdE0E%2CrIVCuC-Etc0%2Cj2iY1cT2gEE%2C7K2icszdxQc%2Cs5smas8uum4%2C_yR9DBHMFXE%2C7TafYJLjhY4%2C8zrJxuVW3u4">2h 5m 52s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/circulatory-system/nerve-regulation-of-the-heart">Nerve Regulation of the Heart</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Nerve+Regulation+of+the+Heart&video_ids=cmQtbpYihAI%2C3HvIKsQb6es%2C0eu-3FIRRz8%2CKiouveG278Y%2CdqmaxkxInZ4">48m 23s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/circulatory-system/preload-and-afterload">Preload og afterload</a> (9 Videos | <a href="https://www.youtube.com/watch_videos?title=Preload+og+afterload&video_ids=cuwMrVoG2V8%2CDLD23lPv8eo%2CS-4pFl3mjr8%2CSCo1m7OEqac%2C5SO58NndlPI%2CuVFqEi5j1v0%2CIjret8P3kWM%2CyOf3kDD3WIA%2CFttqXKdw_Xk">1h 44m 40s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/circulatory-system/pressure-volume-loops">Tryk rumfang løkker</a> (12 Videos | <a href="https://www.youtube.com/watch_videos?title=Tryk+rumfang+l%C3%B8kker&video_ids=XTF0-54yJMk%2CQM4f1vos6Vk%2CE5PndKebh70%2CSrL6TQbWKJE%2CcJLbnWBU09E%2CR7_irilQ_-A%2CAnwPH5yU8rY%2Ch72iwhmB6zc%2Cbyj5VLuLS6c%2CBdlkhDHbN98%2CDLD23lPv8eo%2CcuwMrVoG2V8">2h 16m 57s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/circulatory-system/changing-the-pv-loop-nm">Ændring af PV løkken</a> (1 Interactive, 10 Videos | <a href="https://www.youtube.com/watch_videos?title=%C3%86ndring+af+PV+l%C3%B8kken&video_ids=DLD23lPv8eo%2CyOf3kDD3WIA%2CFttqXKdw_Xk%2CBdlkhDHbN98%2CgmHH0wIXsog%2CNG7nbAcAFNc%2CBGIkU1yzBNM%2CAt8jOJ_rpzA%2CaFV9dk5PsPA%2CJRrm8TfBj1c">1h 54m 35s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/circulatory-system-diseases">Circulatory system diseases</a> (16 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/circulatory-system-diseases/coronary-artery-disease">Coronary artery disease</a> (1 Exercise, 9 Videos | <a href="https://www.youtube.com/watch_videos?title=Coronary+artery+disease&video_ids=EATkbpqlxvc%2CRrXJsf9x_sY%2Cg3kDdg8r6NY%2CT_b9U5gn_Zk%2CkO8-RPIkuLE%2CPfg9FY1Fguc%2CdLtFP6t99yo%2C9lIxelNVmNU%2Cm1DOnLhVuX4">1h 32m 21s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/circulatory-system-diseases/blood-vessel-diseases">Blood Vessel Diseases</a> (6 Videos | <a href="https://www.youtube.com/watch_videos?title=Blood+Vessel+Diseases&video_ids=lXkfZYlnwl4%2C_T60pBGcoQU%2C1qifvZnpKjU%2CN-mAEwzCwMM%2C1JudNLK1-Ck%2CEOnlvbWjFOE">55m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/circulatory-system-diseases/stroke">Streg</a> (1 Article, 18 Videos | <a href="https://www.youtube.com/watch_videos?title=Streg&video_ids=hfG8J_X1D5Q%2CkVulo3qDcUo%2CQIAI6KOwKII%2CQskZ-o0egF8%2CqCvV11R2lgg%2CTJeUOPc9pgs%2ClmiXf-jilGE%2C57pvSMQ0E5M%2CQjJT87nY1WI%2CGdfP-loRfm0%2CbL7yQRbYJCo%2CkVGb778WcMU%2CyTMZsxSBv_0%2CxC55TgPmfZ0%2CAgPpM4jqkxU%2CLvoONWiXJ5I%2CBYE5lxTzNVM%2CFVedgkn0o70">2h 16m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/circulatory-system-diseases/hypertension">Hypertension (forhøjet blodtryk)</a> (1 Article, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Hypertension+%28forh%C3%B8jet+blodtryk%29&video_ids=FBoYigdnLKQ%2C8aeivxR1GDc%2CPYkaoQc-fLU%2C0fWuPR1AsJ4%2CY2B6j7poiKI">36m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/circulatory-system-diseases/heart-failure">Heart failure</a> (1 Article, 10 Videos | <a href="https://www.youtube.com/watch_videos?title=Heart+failure&video_ids=2aiRpr5UCZs%2CFL3Q5Q6IdAY%2CrGAIHFB9FL0%2Cx8aBKMYqGPY%2CCYr4n5KJ-yw%2CpLba3OzsfDU%2CAScf1Z40lng%2CPJgRZA5mE0s%2CJDo9LNMOLtE%2C1q06qHX1K-I">1h 1m 57s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/circulatory-system-diseases/aortic-dissection-and-aneurysm">Aortic dissection and aneurysm</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Aortic+dissection+and+aneurysm&video_ids=PRl8TLUleZg%2CxHUsdE880so%2CP1paaFPcdak%2CJfZ38uHaTEk%2CVdQ6lAhKGTc">1h 2m 15s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/circulatory-system-diseases/myocarditis-and-pericarditis">Myocarditis and pericarditis</a> (6 Videos | <a href="https://www.youtube.com/watch_videos?title=Myocarditis+and+pericarditis&video_ids=xL98lBuAn1A%2CEwif2XGL2a8%2CIj_ERo1Ashc%2COwDXViQn6tw%2CR1y2m2OB1x0%2CNpuvcuzXn9w">1h 2m 57s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/circulatory-system-diseases/cardiomyopathy">Cardiomyopathy</a> (6 Videos | <a href="https://www.youtube.com/watch_videos?title=Cardiomyopathy&video_ids=SXYeQDrH36Y%2CiL6aM2xFixU%2Cou3a7Htbrvw%2CVtqrKxJmBn4%2CCRfgLoV25tA%2CithdrJuSj3A">1h 4m 34s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/circulatory-system-diseases/dysrhythmias-and-tachycardias">Cardiac dysrhythmias and tachycardias</a> (15 Videos | <a href="https://www.youtube.com/watch_videos?title=Cardiac+dysrhythmias+and+tachycardias&video_ids=TQwe0Y4Ynjs%2ClRHq7sMRWpU%2CeCrQDI1OAeU%2C0FufW_MZMa4%2C0URl8p39wQo%2C5brsc8IbWSk%2CtRuvXP-H164%2CC1smdOKd4Ds%2CniTxSf60wDs%2CBSf_YIyZzi8%2C_HXl3mu1IoM%2Cel6nuUsff84%2Cb3xMC6zdrvM%2C5xSEZszGDtI%2CvbslqfcBpnU">1h 59m 25s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/circulatory-system-diseases/heart-valve-diseases">Heart valve diseases</a> (9 Videos | <a href="https://www.youtube.com/watch_videos?title=Heart+valve+diseases&video_ids=Wyxz0fgp6-A%2CR4qy9beFpHw%2CsGHV5_ieDP4%2C6YY3OOPmUDA%2CZUHpAaVpiY8%2C3t1n5szXriQ%2CBjnw_jwDt1Q%2C0k0iKKF2-Do%2C8HSeHRGihkY">1h 37m 21s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/circulatory-system-diseases/acyanotic-heart-diseases">Acyanotic heart diseases</a> (6 Videos | <a href="https://www.youtube.com/watch_videos?title=Acyanotic+heart+diseases&video_ids=rbWaiXa9A1k%2CtOUys6vlTvE%2CqJCoXVdPowo%2CUNWxKDvBFik%2ClZSi0xifXwc%2CU2fGKvbir24">50m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/circulatory-system-diseases/cyanotic-heart-diseases">Cyanotic heart diseases</a> (11 Videos | <a href="https://www.youtube.com/watch_videos?title=Cyanotic+heart+diseases&video_ids=E2qP4TsHGGQ%2Cgm7lIcBkXFc%2CR0OM94TaZOo%2CBe3tuYMgA9I%2CHrMgmnZ_4gs%2C607Buvyc0VI%2CBE0nxWUAg-A%2Cons-gYLeNjU%2CrQSclv1Ah5s%2C4GUm8ybncWY%2CoeyCaB_sj-0">1h 10m 31s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/circulatory-system-diseases/shock">Shock</a> (14 Videos | <a href="https://www.youtube.com/watch_videos?title=Shock&video_ids=AvtS_IrlbYk%2Cj_s5p0mLZ7s%2CiRjCDGpjJ3I%2C_eBq2hRETmA%2C-0zm323sehQ%2CemOgJCoUy6Q%2C-bt-H5VQl5E%2CExJC8AoAczE%2CwbfDqHk-ryM%2C-Y3CbsxhlQE%2CiEVciE2j6ZA%2CsX97LcDpgzo%2CPhu1yteO-HU%2CCYoxfm0kcsQ">2h 11m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/circulatory-system-diseases/vasculitis">Vasculitis</a> (10 Videos | <a href="https://www.youtube.com/watch_videos?title=Vasculitis&video_ids=qMaVLzWnS80%2Ccf_i8LicBEY%2CUtIFoMuyh_4%2CVdaTuNbyDHg%2C4bilImPrYE0%2CMK-dN5WVVrk%2C6RpVjF4N8nY%2Ci9z6x1LbdW8%2CdE7aS-HPwKo%2CpZcNmGtp5SA">1h 14m 57s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/circulatory-system-diseases/hypertension-2">Hypertension (forhøjet blodtryk)</a> (10 Videos | <a href="https://www.youtube.com/watch_videos?title=Hypertension+%28forh%C3%B8jet+blodtryk%29&video_ids=l5TsKWd-fO8%2CSYcsZ6J3xZ4%2CqyUHnh73Sng%2CSHjxi0bRiLA%2Ca3XcYsXQYaM%2CfMG6a6c6Jd4%2CzTb4TklMVcY%2C_7Jmj6MriKg%2C913Pj5AxmHQ%2CePWrbBJgssw">51m 30s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/respiratory-system">Advanced respiratory system physiology</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/respiratory-system/respiratory-system-introduction">Respiratory system introduction</a> (3 Exercises, 1 Quiz, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Respiratory+system+introduction&video_ids=qGiPZf7njqY%2ClzWUG4H5QBo%2CZ-yv3Yq4Aw4%2CmykrnTh1tz8%2CdTsUyXXudvA%2CIya-2bS14ho%2CSPGRkexI_cs">1h 18m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/respiratory-system/gas-exchange-jv">Luftskifte i lungerne</a> (7 Videos | <a href="https://www.youtube.com/watch_videos?title=Luftskifte+i+lungerne&video_ids=zZX9jJqSlQs%2CxH5Y3Kmx82w%2CWiuat7KdMmA%2COCD4Dr3kmmA%2Cg6QuuoTs2Oo%2CCg4KlmI_acs%2CnRpwdwm06Ic">1h 4m 34s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/respiratory-system/breathing-control-ir">Breathing Control</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Breathing+Control&video_ids=cJXY3Cywrnc%2ClVacrVMmJX8%2C_BFDgTci0ck%2CV2vR5_B6C5I">36m 53s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/respiratory-system-diseases">Respiratory system diseases</a> (14 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/respiratory-system-diseases/intro-to-pulmonary-diseases">Pulmonary Diseases</a> (1 Article, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Pulmonary+Diseases&video_ids=-oHlcuS7AeU%2CvO63j9m5grE%2CCNqYNgSYnKM">25m 57s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/respiratory-system-diseases/asthma2">Asthma</a> (6 Videos | <a href="https://www.youtube.com/watch_videos?title=Asthma&video_ids=uX1RzoE_9BI%2CZKvatbn4a_I%2CQsqnJHggDaY%2CFckjcoZDxbE%2CaUUi1DrghQc%2ClEXuBpu8jys">42m 23s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/respiratory-system-diseases/emphysema">Emphysema</a> (6 Videos | <a href="https://www.youtube.com/watch_videos?title=Emphysema&video_ids=laBUtu_QEEE%2COiSTT4z4zJI%2CprL5WuhGPLI%2CoOkNS-vvnhQ%2C36dg_h4gwNk%2CEIm1BSVCpno">49m 9s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/respiratory-system-diseases/chronic-bronchitis">Chronic Bronchitis (COPD)</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Chronic+Bronchitis+%28COPD%29&video_ids=B5e7RMaz4IQ%2CA1XyF5clLbI%2CiG7dJTInT7E">26m 54s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/respiratory-system-diseases/cystic-fibrosis">Cystic fibrosis</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Cystic+fibrosis&video_ids=ucbxYIVztz8%2Ccu6rfyEMFiQ%2CJ0tYHmuig-U%2CIcakt3gQDtE%2C0mdS4GH7Lkw">33m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/respiratory-system-diseases/occupational-lung-diseases">Occupational lung diseases</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Occupational+lung+diseases&video_ids=AgQMgxkYk44%2Cw1_EEi8-EaI">13m 23s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/respiratory-system-diseases/pulmonary-hypertension">Pulmonary hypertension</a> (6 Videos | <a href="https://www.youtube.com/watch_videos?title=Pulmonary+hypertension&video_ids=KtkR_NTte4M%2CZVl1M3D2B80%2CvZ9vwiGHXgY%2CNZlJJ4a40Ww%2CU7fKAYqfpC8%2CRSMtgI8yyfg">33m 22s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/respiratory-system-diseases/pneumonia">Pneumonia</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Pneumonia&video_ids=dzJNabJAPaE%2CCNqYNgSYnKM%2CX1h5kr55SZg%2Cq2SYtugUdpI">36m 7s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/respiratory-system-diseases/pleural-effusion-2">Pleural Effusion</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Pleural+Effusion&video_ids=IDLCwhijNG4%2CXaqsqtWiJMw%2CqCdNab2WLiw%2C9Y-7wohhcSU">34m 43s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/respiratory-system-diseases/lung-cancer">Lungekræft</a> (7 Videos | <a href="https://www.youtube.com/watch_videos?title=Lungekr%C3%A6ft&video_ids=MhavOq8O0Ho%2CJS3wsNY17LY%2CQKUOYpsbROk%2CTkZ5IywDBnQ%2C1jLifFl9HLA%2CrAxbnfKXcoE%2CtrRl8QXtdMI">46m 43s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/respiratory-system-diseases/nose-sinus-upper-respiratory">Nose, sinus, and upper respiratory conditions</a> (6 Videos | <a href="https://www.youtube.com/watch_videos?title=Nose%2C+sinus%2C+and+upper+respiratory+conditions&video_ids=GoRhRJXp0j8%2CRFC3RP2jvxE%2CSh9uYq05zPk%2CQmEwoBLCqZY%2CRywHs4kKxjA%2CDGRnSnPSOqg">1h 19s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/respiratory-system-diseases/throat-conditions">Throat conditions</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Throat+conditions&video_ids=_DNM039pUXE%2Cv6-Ijv3wOAM%2CEHEecXYsJ9w%2CfzF2AgL35qE">34m 18s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/respiratory-system-diseases/laryngeal-conditions">Laryngeal conditions</a> (7 Videos | <a href="https://www.youtube.com/watch_videos?title=Laryngeal+conditions&video_ids=Tz-9z064euU%2C_Md5nli5OII%2CTDQAd2N2Cls%2Cpuqe3_HkDZA%2CM-9t4RrhKJE%2CkOTdVMM9Lwg%2Ct1-VVUmP0rY">49m 36s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/respiratory-system-diseases/bronchiolitis">Bronchiolitis</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Bronchiolitis&video_ids=65y1SKgRtOc%2C9EZuhlSNUv0%2CmObmS7E75t8%2Cqjhlt6G-Azo">39m 33s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/advanced-hematologic-system">Hematologic system</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/advanced-hematologic-system/hematologic-system-introduction">Hematologic system introduction</a> (12 Videos | <a href="https://www.youtube.com/watch_videos?title=Hematologic+system+introduction&video_ids=5MOn8X-tyFw%2CfLKOBQ6cZHA%2CNnqp_3HMlDU%2C97nFwkRiNCc%2CUBlem4dGLGU%2CLWtXthfG9_M%2CQP8ImP6NCk8%2CSqE5S1qS7ZU%2Ca19T5CX2b-g%2CRQpBj8ebbNY%2CFNVvQ788wzk%2CdHi9ctwDUnc">2h 31m 1s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/advanced-hematologic-system/bleeding-and-impaired-hemostasis">Bleeding and impaired hemostasis</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Bleeding+and+impaired+hemostasis&video_ids=rLIEeUP_e-Y%2CSffnpNxGWb8%2Cy0sk8LG4mWQ%2CVxEIsPOdOLw">31m 38s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/hematologic-system-diseases-2">Hæmatologiske system sygdomme</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/hematologic-system-diseases-2/anemia">Anemia</a> (1 Article, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Anemia&video_ids=Ty6TfxCYPQI%2CLtlodYLm8fc%2C3AMENlm4pOw">24m 30s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/hematologic-system-diseases-2/leukemia">Leukæmi</a> (9 Videos | <a href="https://www.youtube.com/watch_videos?title=Leuk%C3%A6mi&video_ids=XVWOlKdpF_I%2CIB3iJUuxt1c%2Ce1XCEJUqOQE%2ChTzI6x4fmGI%2CfrUCL0snbPk%2ClCRePFf4zNs%2C5u2pDR634Fw%2C7j6HcztlLdw%2ChH9AETxy6QI">1h 16m 14s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/hematologic-system-diseases-2/iron-deficiency-anemia-and-anemia-of-chronic-disease">Iron deficiency anemia and anemia of chronic disease</a> (6 Videos | <a href="https://www.youtube.com/watch_videos?title=Iron+deficiency+anemia+and+anemia+of+chronic+disease&video_ids=U1Ls9Vh-3m8%2C4_410pxikS0%2C2duGAcN0nqw%2CEkFUb3L040E%2CtVNRn4srPUI%2CX3QUqRd18jc">50m 13s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/hematologic-system-diseases-2/plasma-cell-dyscrasias">Plasma cell dyscrasias</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Plasma+cell+dyscrasias&video_ids=t3MxJEbJN3k%2CK25N7ZfSaO0%2CjdytgW5wKa4%2CHod_JfGJPj4">35m 52s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/hematologic-system-diseases-2/myeloproliferative-disorders">Myeloproliferative disorders</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Myeloproliferative+disorders&video_ids=eLsegxXzaiE%2CvOPuAPCioE4%2C1POB_czE16k%2CST6mSB-RvE0%2C-YEtWOxweRg">48m 1s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/advanced-endocrine-system">Det endokrine system</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/advanced-endocrine-system/endocrine-system-introduction">Endocrine system introduction </a> (6 Videos | <a href="https://www.youtube.com/watch_videos?title=Endocrine+system+introduction+&video_ids=f_Z1zsR9lFM%2CER49EweKwW8%2C9dS7bc_2bUE%2CRycF0ub2Al0%2CKSclrkk_Ako%2CTNGSzt2v4xY">51m 3s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/advanced-endocrine-system/biological-basis-of-behavior-endocrine-system">Biological basis of behavior: Endocrine system</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Biological+basis+of+behavior%3A+Endocrine+system&video_ids=ywfxY9UDRo4%2Cx9wyOYnot7E%2CcQKPvT-aEqk%2C2dZpQJSSSAs">29m 50s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/endocrine-system-diseases">Endocrine system diseases</a> (1 Topic)
<ul>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/endocrine-system-diseases/diabetes">Diabetes</a> (1 Article, 14 Videos | <a href="https://www.youtube.com/watch_videos?title=Diabetes&video_ids=ulxyWZf7BWc%2CdpBA1lH39L8%2Cc9LwwQK5588%2C3B73j1tKkpI%2CRlLrvnnTDDU%2CiUlYRyvQAIE%2CImZO2ytl9P4%2CIMLVbEzM0DI%2ChFZPl_t2GLU%2CtpjVmLIUWCo%2CiKKF5yuxvg8%2CF4Lt0AjMxEY%2CPr_-cUA_PY8%2CVIrkurR446s">2h 4m 5s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/nervous-system-and-sensory-infor">Nervous system and sensory information</a> (8 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/nervous-system-and-sensory-infor/nervous-system-introduction-ddp">Nervous system introduction</a> (21 Videos | <a href="https://www.youtube.com/watch_videos?title=Nervous+system+introduction&video_ids=L82bDTBMGUU%2Cob5U8zPbAX4%2C1h4kW8RX-6k%2CBY8DJeX_tGc%2CC_H-ONQFjpQ%2Cye3rTjLCvAU%2CkY8FEq0teOs%2CikFUv-gdNLQ%2Ciqf3ft0mh1M%2CTbq-KZaXiL4%2CFXYX_ksRwIk%2Cyg44T2HcA2o%2CjmD0LBdAvlE%2CqrK-FBdjGk4%2CvXb0ZvkFkS8%2CoOIqk5hXBt4%2CYa-3XHBWDqs%2CjA1NyCE4M2g%2CaASSUcUSBro%2CvrmKqH8d1RM%2CmGxomKWfJXs">3h 10m 18s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/nervous-system-and-sensory-infor/neural-cells-and-neurotransmitters">Neural calls and neurotransmitters</a> (8 Videos | <a href="https://www.youtube.com/watch_videos?title=Neural+calls+and+neurotransmitters&video_ids=Ac-Npt3vgCE%2CFO10z7FX13c%2CJ8wW1t1JqUc%2CrfepM3L7Pqc%2Cmw-rwhpAQe4%2CPpvexFbd8e8%2CjMXf2lgddOg%2CXmL7RHouyUo">40m 11s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/nervous-system-and-sensory-infor/neuron-membrane-potentials-topic">Neuroners membran-potentialer</a> (8 Videos | <a href="https://www.youtube.com/watch_videos?title=Neuroners+membran-potentialer&video_ids=4htSVI5E9AQ%2Cl3ngsl7FhTc%2CAQr0rNyUnFM%2CNaAwVrOEyss%2Ch2H6POZowiU%2CMZz4OUOyFvg%2C_Lj_F9GADa4%2CjM-gvSqsP5A">1h 12m 38s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/nervous-system-and-sensory-infor/sensory-perception-topic">Sensory perception</a> (8 Videos | <a href="https://www.youtube.com/watch_videos?title=Sensory+perception&video_ids=PQyQadCqLAI%2C8shz0KfqkMo%2CO_nY1TM2RZM%2CFssCS9RhFt0%2CBHkw9_GWPJA%2CUHEiWws8t-g%2CaJy5_p_LAhQ%2C20N53khArXA">55m 38s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/nervous-system-and-sensory-infor/sight-vision">Synet (vision)</a> (7 Videos | <a href="https://www.youtube.com/watch_videos?title=Synet+%28vision%29&video_ids=cTZl2qnzifc%2C3m-464MqBJY%2CCqN-XIPhMpo%2C_ElAuQyw4uA%2CUXIfzc1UH-g%2CaobWzlXIooQ%2C0ugcw7wOZBg">50m 34s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/nervous-system-and-sensory-infor/sound-audition-topic">Sound (Audition)</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Sound+%28Audition%29&video_ids=6GB_kcdVMQo%2CB2vtvtqZwwQ%2CpeSLM4XObBE%2CjhjoGx6eGXs">27m 4s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/nervous-system-and-sensory-infor/somatosensation-topic">Somatosensation</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Somatosensation&video_ids=FssCS9RhFt0%2CJC_TVyAMYE0%2C3jf2l9ma6SM%2CyKfpBGicqNQ%2CD-oAsFIHqbY">31m 44s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/nervous-system-and-sensory-infor/taste-gustation-and-smell-olfaction-topic">Taste (gustation) and smell (olfaction)</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Taste+%28gustation%29+and+smell+%28olfaction%29&video_ids=5-McqAO8_Qw%2CEO4_vu9IuNk%2C-vp1X7_u3KU">34m 14s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/nervous-system-diseases">Nervous system diseases</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/nervous-system-diseases/parkinsons-disease">Parkinson's disease</a> (1 Article, 11 Videos | <a href="https://www.youtube.com/watch_videos?title=Parkinson%27s+disease&video_ids=3n8UjH9h_8I%2C4qdD4Ny34cc%2CZqWB25yUWnc%2CMmev06nabvk%2CwLOEXEi7Uos%2CVZer0w7foLg%2C8mvUDiBQbjg%2CFsE3QvWqeqs%2CNy8a3eNG68M%2C5hM8xUB07Y0%2CHFecdPI_-dg">1h 42m 41s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/nervous-system-diseases/multiple-sclerosis">Multiple sclerosis</a> (7 Videos | <a href="https://www.youtube.com/watch_videos?title=Multiple+sclerosis&video_ids=P_HHvi7Kwzk%2CA8ZK4VWmbGc%2CqCs7HPSDL8A%2CaERRyWMwyvk%2Cyby2zx6q_yQ%2Cy1PCYctq3yo%2C8exiUQAiw3w">51m 11s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/gastro-intestinal-system">Advanced gastrointestinal physiology</a> (1 Topic)
<ul>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/gastro-intestinal-system/gastrointestinal-intro">Gastrointestinal system introduction</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Gastrointestinal+system+introduction&video_ids=Oh_Pt_UrtEE">5m 21s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/gastrointestinal-system-diseases">Gastrointestinal system diseases</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/gastrointestinal-system-diseases/gastroenteritis">Gastroenteritis</a> (1 Article, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Gastroenteritis&video_ids=pIDmePznLBo%2C9bfDEsz7eSM%2C2Xq2fZCs2oU%2CkXf8MkpALrc%2CHsyrOicubso%2CNy0b9xO2sgY%2C3UAJS9jzyV4%2CrTKdqvOZcQ4">41m 14s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/gastrointestinal-system-diseases/inflammatory-bowel-disease">Inflammatory bowel disease</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Inflammatory+bowel+disease&video_ids=FaKB7Y2gL9Y%2CUeqs7pl5OAY%2CQH1g-pVS0ZY%2Ca67MCzUjUXA">49m 55s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/gastrointestinal-system-diseases/celiac-disease">Celiac disease</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Celiac+disease&video_ids=25mxf_xUqDQ%2CgZeliSjhkpg">11m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/gastrointestinal-system-diseases/colon-diseases">Tyktarmssygdomme</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Tyktarmssygdomme&video_ids=fif5ghe8JM0%2CC0frzmxc5KU%2CCGrbnripinU%2CKyJs9H0vzTM">40m 16s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/advanced-muscular-system">Advanced muscular system physiology</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/advanced-muscular-system/muscular-system-introduction">Muscular system introduction</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Muscular+system+introduction&video_ids=zopoN2i7ALQ">9m 38s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/advanced-muscular-system/skeletal-system-introduction">Skeletal system introduction</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Skeletal+system+introduction&video_ids=-lrKDRAbP38%2CIKHVpABUSDs">11m 1s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/muscular-skeletal-diseases">Muscular-skeletal diseases</a> (1 Topic)
<ul>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/muscular-skeletal-diseases/arthritis">Arthritis and rheumatoid arthritis</a> (1 Article, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Arthritis+and+rheumatoid+arthritis&video_ids=3X5UEYD94-M%2CH-OoyU8Gb_Q%2CVIfQh71XwMM%2C2xFXOEa-xCk%2C7Fxt6E7m7bM%2CCsrUfTljLJ8%2C1O3F-b8FfDY%2C2r95ZVqAysQ">1h 5m 23s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/executive-systems-of-the-brain">Executive systems of the brain</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/executive-systems-of-the-brain/cognition-lesson">Cognition</a> (6 Videos | <a href="https://www.youtube.com/watch_videos?title=Cognition&video_ids=Jt3-PIC2nCs%2CJ3GGx9wy07w%2Ch_--qw-fv3k%2Cig-SVifJUKw%2CF9n3hLnwwc0%2Cfqe64NjELv8">33m 4s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/executive-systems-of-the-brain/attention-language-lesson">Attention and language</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Attention+and+language&video_ids=s4JBqLoY3tY%2CqpsaHE_uZic%2CRgvmKfvCwps%2CRRGwdfQV8kU%2ClBqShvm4QRA">27m 2s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/executive-systems-of-the-brain/sleep-and-consciousness-lesson">Sleep and consciousness</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Sleep+and+consciousness&video_ids=WFnyLmL9t2I%2CfNlp0UMqUtM%2CTGwXMpWvcYU%2CVBcEz8bVbL0%2CGv_1viYhEoU">26m 11s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/executive-systems-of-the-brain/memory-lesson">hukommelse</a> (9 Videos | <a href="https://www.youtube.com/watch_videos?title=hukommelse&video_ids=pMMRE4Q2FGk%2CmlrOJgyPySw%2CaUmApJMfUTc%2CUhyk2bRTguI%2Cxv-UAPbcbNU%2CuVQXZudZd5s%2C47JRs6hF_ic%2C45qlm6cfHgg%2CqWfwRbSrQMU">44m 12s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/executive-systems-of-the-brain/emotion-lesson">Følelser</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=F%C3%B8lelser&video_ids=GDlDirzOSI8%2CTQ51Gsb98ec%2CyIWKrQTznXc%2CqOYCeAlukMk%2CFkDVucEoJpU">47m 59s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/mental-health">Mental health</a> (6 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/mental-health/drug-abuse-and-drug-addictions">Drug abuse and drug addictions</a> (1 Article, 15 Videos | <a href="https://www.youtube.com/watch_videos?title=Drug+abuse+and+drug+addictions&video_ids=icD3l5bhhKY%2CdOlkogaWF3M%2C1Smz0zwAELQ%2CGUwV0gibLx8%2CdPmkIEkxXwc%2CX4W44wJbJgk%2CYzCYuKX6zp8%2C3vKLU5_Hgco%2CR23KUZvjg4A%2CLhFXw1xmaSM%2C0nKP1FdSzEg%2C2cz2tH5vE1Q%2CTK7NnXGrWfA%2CQw37BqzvEvw%2CLunoLU3XFKc">1h 41m 18s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/mental-health/depression-and-related-disorders">Depression and related disorders</a> (1 Article, 10 Videos | <a href="https://www.youtube.com/watch_videos?title=Depression+and+related+disorders&video_ids=diVGZxXh-dg%2CIHgoDWM9hAc%2CrhxsZnrA46s%2CPCOevYD9cb4%2CeSXZwk8axmI%2CQEjWLj5wAFM%2CJAg8IrTs5K0%2CxgsbxmiPOrg%2CDKXAHh9PZJQ%2CzJ5w4YhOyN8">1h 17m 34s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/mental-health/anxiety">Anxiety</a> (3 Articles, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Anxiety&video_ids=eSM1p2vN7vg%2C_AuTtAkRN3w%2CVmV6RlsUwO8%2C8gX_LBv4ZD0%2CQ0meIMQJ73I">29m 1s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/mental-health/psychotic-disorders">Psychotic disorders</a> (1 Article, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Psychotic+disorders&video_ids=g0LPpW6Iqzo%2CdU_rYyPGYiE%2Cte4AkzFprbI%2CstSvcwY0RWI%2ChBBCp9RvmoQ%2CjBu5M0gXGos%2CYbSEybahiVA">41m 13s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/mental-health/dementia-delirium-alzheimers">Dementia, delirium, and Alzheimer's</a> (1 Article, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Dementia%2C+delirium%2C+and+Alzheimer%27s&video_ids=xUSpHmvW14c%2Ckx5LBj6P-0E%2C-DDSEQlZKsE%2C9CzYnHVFsuk%2CK7dP25_Sebo%2CLieVEfI4luw%2CdurV0mnzPo4%2CdhlkyIiD_RA">44m 3s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/mental-health/neurodevelopmental-disorders">Copy of Neurodevelopmental disorders</a> (3 Articles, 12 Videos | <a href="https://www.youtube.com/watch_videos?title=Copy+of+Neurodevelopmental+disorders&video_ids=4qbb4f1I67k%2Clc5XDJIgz1s%2Cii1MBfj7-Sk%2C26Rq8an37Q8%2C3s-n4eFypPc%2CDoNiKvnYW_A%2CuD7nKhiLB40%2CWuSuIgiOPqM%2CcNaonU-UFcY%2CXmDfHU0hS18%2C2oKVTTHA5u0%2CCNSd1HufEcM">1h 51m 44s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/infectious-diseases">Infectious diseases</a> (7 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/infectious-diseases/tuberculosis">Tuberculosis</a> (1 Article, 15 Videos | <a href="https://www.youtube.com/watch_videos?title=Tuberculosis&video_ids=wV1pllyOaj8%2C56tSt0TpnAk%2CS0Kak0qQFgM%2C3Em2Zzn796Q%2Ctp_qdvgXtVc%2COa6dezr0JkE%2CC4nfSAr2eWI%2CqbXKrR9BQmg%2Cm9b_h7TiRR8%2CfaqhDcrWfHQ%2ChAXnQgU4bsg%2C_20mkyAB7tY%2C2K1ekrZ6ej4%2Cvce3BZFo27Y%2CS8s-g7KZR50">2h 38m 59s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/infectious-diseases/pertussis">Pertussis</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Pertussis&video_ids=5tXV-8-6tw0%2CqkVX03qMzb4%2CXLcyqs5vQHQ%2CUgXZFel0H8Q%2CswQgTqphZzE">31m 2s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/infectious-diseases/influenza">Influenza</a> (17 Videos | <a href="https://www.youtube.com/watch_videos?title=Influenza&video_ids=wiWRUuRDXvc%2C6vy5CX6vK0I%2CMNKXq7c3eQU%2CXCdvo5fv-W0%2CnVbgByJNLOo%2Cf93KCgI4DGM%2CNaZTlnDlnOA%2C-J--4Jc5FB0%2CMa9YxZiBiRU%2CtjGGxA7AF9E%2C4mXv-Pa4CMM%2C2h09oj26_H0%2CXn29pt5159k%2CwDghWK_Rr_E%2Cu6gpw_Deth8%2CHGb9m1dbNdM%2C5ui43_O0RVQ">2h 51m 22s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/infectious-diseases/polio">Polio</a> (1 Article, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Polio&video_ids=K9eZTm4TL2c%2CaBBTiPsYUVA%2CqGNqyXIQaqQ%2CY6ENEA7FzvU%2COvype5DUI04">40m 55s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/infectious-diseases/sexually-transmitted-diseases">Sexually transmitted diseases</a> (1 Article, 16 Videos | <a href="https://www.youtube.com/watch_videos?title=Sexually+transmitted+diseases&video_ids=AYeVIV-TxRk%2C6gV_k7ACbY8%2CNDXHVKOg8BQ%2CqKe9sZQPV-Y%2Cdfd0l10gPPY%2CIE9hAzVAGeY%2CCvO0a7suxmY%2Ch7-OynSK2x0%2CT_c343e0msA%2CI1rULaaHZ6M%2Cyk0P7IpSiIg%2CRGMEhaeXlUw%2C-8cCBEFlOyw%2CMFMutlhgfzI%2CQN231qRvkr0%2CRGLGy6r423s">2h 7m 15s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/infectious-diseases/hiv-and-aids">HIV and AIDS</a> (1 Article, 11 Videos | <a href="https://www.youtube.com/watch_videos?title=HIV+and+AIDS&video_ids=17pfZUlAqow%2CWJUcZPqgEXU%2CZroXIBg8keA%2CZi4Fqc8Fkws%2C8gnpnUFNloo%2C3CjCAeGhtHA%2CGR9d9wrOl5E%2Ce85nerRGfWw%2COZ9IP0xeQho%2Cp5RIcbLBTQQ%2CWDdF9ArqklA">1h 42m 27s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/infectious-diseases/malaria">Malaria</a> (1 Article, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Malaria&video_ids=NtvJirrHhZM%2CgezAvbjMiBU%2C6vDwG_rz_PU%2CINmIcOPKo_M">33m 28s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/lab-values">Lab-værdier og Koncentrationer</a> (10 Videos | <a href="https://www.youtube.com/watch_videos?title=Lab-v%C3%A6rdier+og+Koncentrationer&video_ids=_mGszRbve9s%2C5MOn8X-tyFw%2COLWvKdV4PHg%2CIf4Ar9lnB_4%2CAsqEkF7hcII%2C4VltXjR64SU%2C_saunfB-wCQ%2CH-qREcJqUhY%2Co_Bb43LApog%2CVsW6NXZIUCQ">1h 40m 59s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/current-issues-in-health-and-medicine">current issues in health and medicine</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/current-issues-in-health-and-medicine/ebola-outbreak">Ebola-outbreak</a> (1 Article, 1 Exercise, 1 Interactive, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Ebola-outbreak&video_ids=xYoQQCO15GE%2CjKUGZvW99os%2CsMA116kzyK4">28m 52s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/health-care-system">Sundhedssystemet</a> (6 Videos | <a href="https://www.youtube.com/watch_videos?title=Sundhedssystemet&video_ids=S9xdJgPWO-w%2C8t-Un7yH99g%2C6YU9HVS2GT0%2CLMHxxvbzFqc%2C4J-dRA3MGc8%2CVpLKdKkpg68">1h 14m 22s</a> )</li>
<li><a href="https://da.khanacademy.org/science/health-and-medicine/healthcare-misc">Diverse</a> (17 Videos | <a href="https://www.youtube.com/watch_videos?title=Diverse&video_ids=vYnreB1duro%2C3858MaULDdI%2Ch0207xMD6b8%2CxbyfeEW56Nc%2CtKDET9t8VTI%2C54c_oPpTTP8%2C5RXRr8PKunk%2CO3A47Il5h1A%2CcbkTTluHaTw%2CPV5u5xskBKM%2CDJY89_jC_ZY%2CXhYQYVQq6K0%2CgF0aA-si89Y%2CCnXuSCaCNBo%2Cw2QVg9mezcY%2C7zk0ubr_lzo%2CGZ6I3T1RAnQ">2h 25m 45s</a> )</li>
</ul>
<h1 id="økonomi-og-finans-8-topics"><a href="https://da.khanacademy.org/economics-finance-domain">Økonomi og Finans</a> (8 Topics)</h1>
<h2 id="makroøkonomi-6-topics"><a href="https://da.khanacademy.org/economics-finance-domain/old-macroeconomics">Makroøkonomi</a> (6 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/economics-finance-domain/old-macroeconomics/gdp-topic-old">BNP - Brutto nationalprodukt</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/economics-finance-domain/old-macroeconomics/gdp-topic-old/econ-intro-in-macro-tutorial">Introduktion til økonomi</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+%C3%B8konomi&video_ids=8JYP_wU1JTU%2Ciy-fhpbTH9E">15m 43s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/old-macroeconomics/gdp-topic-old/circular-econ-gdp-tutorial">GDP and the circular flow of income and expenditures</a> (1 Article, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=GDP+and+the+circular+flow+of+income+and+expenditures&video_ids=Hfz1bwK5C4o%2Czh8XASZxo1Q%2CC1pHvEAKmLA">23m 47s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/old-macroeconomics/gdp-topic-old/gdp-components-tutorial">Components of GDP</a> (2 Articles, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Components+of+GDP&video_ids=N9VIsauE0RA%2CZ9b8nnvpim0%2CRgr1vRjxzFg%2CBMNj7-Okclk">23m 16s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/old-macroeconomics/gdp-topic-old/real-nominal-gdp-tutorial">Real and nominal GDP</a> (2 Articles, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Real+and+nominal+GDP&video_ids=lBDT2w5Wl84%2CL-0LuSw2bTM%2Cv5YT8GlSxoU">20m 11s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/old-macroeconomics/inflation-topic-old">Inflationen - måling af leveomkostningerne</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/economics-finance-domain/old-macroeconomics/inflation-topic-old/cost-of-living-tutorial">Measuring cost of living --inflation and the consumer price index</a> (4 Articles, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Measuring+cost+of+living+--inflation+and+the+consumer+price+index&video_ids=AaR1mPrdbTc%2C-JTw7gNwT6Y%2CDK1lCc9b7bg">18m 30s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/old-macroeconomics/inflation-topic-old/real-nominal-return-tutorial">Real and nominal return</a> (1 Article, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Real+and+nominal+return&video_ids=cNm196bVE5A%2CGiB9Mkgkrek%2C6ycEasF48zI">9m 45s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/old-macroeconomics/inflation-topic-old/macroecon-deflation-tutorial">deflation</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=deflation&video_ids=FPh6EDv0Eew%2CstfSnPaaK04%2Ct2AeULH_Ijw">10m 45s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/old-macroeconomics/inflation-topic-old/deflation-inflation-scenarios-tutorial">Inflationary and deflationary scenarios</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Inflationary+and+deflationary+scenarios&video_ids=Z_DcXewHHA8%2CbTz_tx460EY%2CsnX4Wf7PGts%2CAC_kjcuHpZw">13m 44s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/old-macroeconomics/inflation-topic-old/phillips-curve-tutorial">Inflation and unemployment</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Inflation+and+unemployment&video_ids=9DGbDx5xQNo%2Cv7ZWTZ9NgU4">18m 25s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/old-macroeconomics/aggregate-supply-demand-topic-old">Aggregate demand and aggregate supply</a> (6 Topics)
<ul>
<li><a href="https://da.khanacademy.org/economics-finance-domain/old-macroeconomics/aggregate-supply-demand-topic-old/aggregate-supply-demand-tut">Aggregate demand and aggregate supply</a> (5 Articles, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Aggregate+demand+and+aggregate+supply&video_ids=oLhohwfwf_U%2CscN-1B6plos%2C8W0iZk8Yxhs%2C3nbalsyibKU">36m 1s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/old-macroeconomics/aggregate-supply-demand-topic-old/historic-ad-as-scenarios">Historical circumstances explained by AD/AS</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Historical+circumstances+explained+by+AD%2FAS&video_ids=HdqbCvqTb20%2CXsD7mqFDJs0%2C3A-nAw2tY_4">21m 18s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/old-macroeconomics/aggregate-supply-demand-topic-old/business-cycle-tutorial">The business cycle</a> (1 Article, 1 Video | <a href="https://www.youtube.com/watch_videos?title=The+business+cycle&video_ids=TXrOpjG4dUs">11m 16s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/old-macroeconomics/aggregate-supply-demand-topic-old/monetary-fiscal-policy">Monetary and fiscal policy</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Monetary+and+fiscal+policy&video_ids=ntxMOKXHlfo%2CBRXBCxKjiK8">11m 34s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/old-macroeconomics/aggregate-supply-demand-topic-old/keynesian-thinking">Keynesian thinking</a> (3 Articles, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Keynesian+thinking&video_ids=hPkh8kOldU4%2CEVSkf7l7EuI">20m 19s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/old-macroeconomics/monetary-system-topic-old">The monetary system</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/economics-finance-domain/old-macroeconomics/monetary-system-topic-old/fractional-reserve-banking-tut">Fractional reserve banking</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Fractional+reserve+banking&video_ids=3mUi9IZb4T4%2C1HYSMxu-Dns%2CRGMcswR8DnY">23m 34s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/old-macroeconomics/monetary-system-topic-old/money-supply-tutorial">Money supply</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Money+supply&video_ids=_LPh72gx6GE">10m 4s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/old-macroeconomics/monetary-system-topic-old/factional-reserve-accounting">Fractional reserve accounting</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Fractional+reserve+accounting&video_ids=VJgVdzicv_I%2CPASajlCGBTw">16m 6s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/old-macroeconomics/monetary-system-topic-old/interest-price-of-money-tutorial">Interest as the price of money</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Interest+as+the+price+of+money&video_ids=Lru0vKmkzR8%2CvItRHYu-A88">17m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/old-macroeconomics/monetary-system-topic-old/functions-of-money-2">Functions of money</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Functions+of+money&video_ids=ok2vtKnSZzY%2CO2jO5AwTkT0%2CcIvcxHVUUi8%2Cfs12fX407GU">31m 45s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/old-macroeconomics/income-and-expenditure-topic-old">Income and expenditure - Keynesian cross and IS-LM model</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/economics-finance-domain/old-macroeconomics/income-and-expenditure-topic-old/mpc-tutorial">Marginal propensity to consume (MPC)</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Marginal+propensity+to+consume+%28MPC%29&video_ids=O_Oozju3RRI%2CczfJKPN-HEo">18m 55s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/old-macroeconomics/income-and-expenditure-topic-old/consumption-function">Consumption function</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Consumption+function&video_ids=o5iot_ZsoV0%2CN44RZtJ4jj4%2CwHPGFPIcILM">26m 3s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/old-macroeconomics/income-and-expenditure-topic-old/keynesian-cross-tutorial">Keynesian Cross</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Keynesian+Cross&video_ids=sTw0e-hwYAQ%2CxF_Z4QK0tsA%2CaSY8XPGChAU">31m 32s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/old-macroeconomics/income-and-expenditure-topic-old/is-lm-model-tutorial">IS-LM Model</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=IS-LM+Model&video_ids=72p6uw5y-Rw%2CAW3bPaErUWU%2CblbR5f2dq_g%2Cyro2jLBfyDQ%2CpzQnc_0eZA8">37m 1s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/old-macroeconomics/forex-trade-topic-old">Foreign exchange and trade</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/economics-finance-domain/old-macroeconomics/forex-trade-topic-old/current-capital-account">Current and capital accounts</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Current+and+capital+accounts&video_ids=dirBYVjDk7A%2CAimYG1jYD0A%2CtYmMEqro8D4">21m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/old-macroeconomics/forex-trade-topic-old/currency-reserves">Currency reserves</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Currency+reserves&video_ids=HiphWQfB6J0%2CTZ7d5kjAlQw%2CP2IWGlR1SHs%2ClA3sjWwu5-s%2C9p3HNMe-oAI">30m 47s</a> )</li>
</ul></li>
</ul>
<h2 id="mikroøkonomi-9-topics"><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics">Mikroøkonomi</a> (9 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/basic-economic-concepts-gen-micro">Basic economic concepts</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/basic-economic-concepts-gen-micro/economics-introduction">Introduktion til økonomi</a> (1 Article, 1 Exercise, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+%C3%B8konomi&video_ids=8JYP_wU1JTU%2Ciy-fhpbTH9E%2CuVA1-m8SVvA%2C-IvwoqPh1_I%2C7n_Hf_UsW7I%2CYtX6SGw7E3c">40m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/basic-economic-concepts-gen-micro/economic-systems">Economic Systems</a> (1 Article, 1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Economic+Systems&video_ids=AJy7pWK0W8g%2CPEG9OQCo2Ls">11m 56s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/basic-economic-concepts-gen-micro/production-possibilities">Production possibilities frontier</a> (2 Articles, 2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Production+possibilities+frontier&video_ids=_7VHfuWV-Qg%2CpkEiHZAtoro%2C00fgAG6VrRQ%2C-aVZtzD44vI">28m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/basic-economic-concepts-gen-micro/comparative-advantage-and-the-gains-from-trade">Comparative advantage and the terms of trade</a> (2 Exercises, 1 Quiz, 1 Test, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Comparative+advantage+and+the+terms+of+trade&video_ids=xx9xNJlPOJo%2CxN3UV5FsBkU%2CK8p0F92gVUM%2CC-xLUS5JGIM%2CUqf5c6Xcjr4%2CTeAzW_tY6m4%2CjHp4fnrEA6w">1h 4m 33s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/supply-demand-equilibrium">Udbud, efterspørgsel og markedsligevægt</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/supply-demand-equilibrium/demand-curve-tutorial">The demand curve</a> (3 Articles, 1 Exercise, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=The+demand+curve&video_ids=ShzPtU7IOXs%2CdGjPguqHBXE%2C_12_k6ciacU%2C-oClpRv7msg%2C7siSvYs84fg%2Cdo1HDIdfQkU%2CwYuAwm-5-Bk%2CTAhRoJB34nw">41m 51s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/supply-demand-equilibrium/supply-curve-tutorial">The supply curve</a> (3 Articles, 1 Exercise, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=The+supply+curve&video_ids=3xCzhdVtdMI%2CNrlF8mMHfLE%2C0isM0GF-rMI">21m 37s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/supply-demand-equilibrium/market-equilibrium-tutorial">Market equilibrium</a> (3 Articles, 2 Exercises, 1 Quiz, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Market+equilibrium&video_ids=PEMkfgrifDw%2CNgPqyM3I_8o%2Ckl4n-EWwPyA">25m 38s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/elasticity-tutorial">Elasticity</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/elasticity-tutorial/price-elasticity-tutorial">Price elasticity</a> (3 Articles, 2 Exercises, 10 Videos | <a href="https://www.youtube.com/watch_videos?title=Price+elasticity&video_ids=FBWJYH8DZ1g%2CslP8XZ6Nq40%2CYOT8ryWzwbY%2CKEhy6SwW__I%2CH4CkAid4_J4%2C6udRtn5jSWk%2Cm7qXvQvWlY4%2CUdltkvm9HLc%2CKgrLUQYgIJE%2CfUxSB3yYIbs">1h 21m 14s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/elasticity-tutorial/price-elasticity-of-supply">Price elasticity of supply</a> (1 Exercise, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Price+elasticity+of+supply&video_ids=wi1x3sYHU6I%2CAAWsuFXojgo%2CkBUC6iPijtw">20m 31s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/elasticity-tutorial/income-elasticity-of-demand">Income elasticity of demand</a> (2 Articles, 2 Exercises, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Income+elasticity+of+demand&video_ids=RDcf5L6o0mI%2CNgv0Be9NxAw">18m 25s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/consumer-producer-surplus">Forbruger- og producent-overskud</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/consumer-producer-surplus/consumer-producer-surplus-tut">Forbruger- og producent-overskud</a> (1 Article, 1 Exercise, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Forbruger-+og+producent-overskud&video_ids=KrkbbRxdDZ8%2C_6kwhF6hoqQ%2CRBUBIRtn0xQ%2C-V-Y5klejSg%2CE_EmGO1XuHM">36m 30s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/consumer-producer-surplus/deadweight-loss-tutorial">Deadweight loss</a> (3 Articles, 3 Exercises, 1 Quiz, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Deadweight+loss&video_ids=8U8egQjcPaI%2Cj0c2vmFGbtk%2C-T8lzuTwdbI%2CNuLlNAdrom4%2C1-8O5AHIb6s%2CxwOTlMaerEQ%2Clsn16U5DWD4%2Cz1yJPpGC3-o">1h 4m 17s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/consumer-producer-surplus/international-trade">International trade</a> (1 Exercise, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=International+trade&video_ids=7adFZOA7Qfg%2C3pSysspeCxY%2CQq5-909rWgw">20m 51s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/choices-opp-cost-tutorial">Choices, opportunity cost and happiness</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/choices-opp-cost-tutorial/marginal-utility-tutorial">Marginal utility and budget lines</a> (1 Article, 1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Marginal+utility+and+budget+lines&video_ids=Kf9KhwryQNE%2CJlS5K1AxjT4%2CKbW6OiuRa1Y%2C4-_-wQc3EGE">36m 49s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/choices-opp-cost-tutorial/utility-maximization-using-marg">New Topic</a> (1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=New+Topic&video_ids=KbW6OiuRa1Y%2CCxAXc9vL2rI">15m 59s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/choices-opp-cost-tutorial/utility-maximization-with-indifference-curves">Utility maximization with indifference curves</a> (1 Article, 1 Quiz, 1 Test, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Utility+maximization+with+indifference+curves&video_ids=Uq5Wzs96tiw%2C7G4BUm7M6MY%2CnhSSu0Nzs30%2CkJ43GdU5Uzc">38m 16s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/firm-economic-profit">The firm and economic profit</a> (6 Topics)
<ul>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/firm-economic-profit/introduction-to-production-and-costs">Introduction to production and costs</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduction+to+production+and+costs&video_ids=4kFLOoA5l4s%2C8fm9FjDV0iA">15m 29s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/firm-economic-profit/average-costs-margin-rev">Average costs (ATC, MC) and marginal revenue (MR)</a> (1 Article, 2 Exercises, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Average+costs+%28ATC%2C+MC%29+and+marginal+revenue+%28MR%29&video_ids=bBQVaRnHqLs%2CmW6Cwpfb5CI%2Cvh7SjS-t1wA%2CxGkE0oHyNhk%2Cni0TL4pXG5w%2Cdbedc5rrwhQ%2CA1_PT1aHVLY%2Ck1iHDu9GrJE">1h 2m 27s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/firm-economic-profit/long-run-production-costs">Long-run production costs</a> (1 Article, 1 Exercise, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Long-run+production+costs&video_ids=aKpnaKROoYA%2C4bJs6bKjPPA%2ClqAKI6remoQ">18m 17s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/firm-economic-profit/economic-profit-tutorial">Economic profit and opportunity cost</a> (1 Article, 1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Economic+profit+and+opportunity+cost&video_ids=06j_zPdPWOY%2CckBKDrKVIMU%2CCWiHA5XtqgU">24m 42s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/firm-economic-profit/micro-profit-maximization">Profit maximization</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Profit+maximization&video_ids=SON0BtLMUHw%2CWUJwZYTfroI">9m 40s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/firm-economic-profit/firm-entry-exit-and-the-shut-down-rule">Firm entry, exit, and the shut-down rule</a> (1 Exercise, 1 Quiz, 1 Test, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Firm+entry%2C+exit%2C+and+the+shut-down+rule&video_ids=aPiZloqtlnc%2CXx5-O8kDMvU%2CsN-bhe6UfRs%2CBmxuzqDEBpM">27m 26s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/perfect-competition-topic">Perfect and imperfect competition</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/perfect-competition-topic/perfect-competition">Perfect competition</a> (3 Articles, 4 Exercises, 1 Quiz, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Perfect+competition&video_ids=B_49lQxwMaM%2CJWuWzloEH40%2CXx5-O8kDMvU%2CHzw6_vUPvgg%2CsN-bhe6UfRs%2CBmxuzqDEBpM">43m 3s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/perfect-competition-topic/monopolies-tutorial">Monopolies</a> (3 Exercises, 10 Videos | <a href="https://www.youtube.com/watch_videos?title=Monopolies&video_ids=FZBc1wM8a8M%2CJj4hQK-GuXo%2CA-uVHlqEiyE%2CPgDrR2wj_Jc%2CPEFEnss--mU%2CcczABrLd_uA%2Cs1UQQELPyrc%2CdaxL1ZLrUzg%2CA_lV-XArVeE%2CatI4QH2acuw">1h 8m 19s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/perfect-competition-topic/price-discrimination">Price discrimination</a> (1 Exercise, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Price+discrimination&video_ids=z0wg9ZPyL38%2Cgcq9KFpEuLc">13m 40s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/perfect-competition-topic/monopolistic-competition-oligop">Between perfect competition and monopoly</a> (1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Between+perfect+competition+and+monopoly&video_ids=PzDthFTzEa0%2CRUVsEovktGU%2CQRN2QKHe-tM">24m 37s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/perfect-competition-topic/game-theory">Oligopoly and game theory</a> (1 Exercise, 1 Quiz, 1 Test, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Oligopoly+and+game+theory&video_ids=N0L00FZnhtg%2CUkXI-zPcDIM%2Cewu_7Dmj_18%2CS6TvRDwgQag%2CXTMbRDRaviM">44m 57s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/micro-factor-markets">Factor markets</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/micro-factor-markets/micro-introduction-to-factor-markets">Introduction to factor markets</a> (1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduction+to+factor+markets&video_ids=cwClnv9Y1Y0%2Cp8PSIpMkEvA%2CCm69zTuUzMI%2Ci5RIEwI6Hcs">34m 15s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/micro-factor-markets/labor-marginal-product-rev">Labor and marginal product revenue</a> (1 Exercise, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Labor+and+marginal+product+revenue&video_ids=gHs3zuRek7o%2C16c66XCdSBo%2CCuTNp-6FI0k">15m 50s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/micro-factor-markets/optimal-firm-behavior-in-perfectly-competitive-factor-markets">Optimal choice of factors in perfectly competitive factor markets </a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Optimal+choice+of+factors+in+perfectly+competitive+factor+markets+&video_ids=NSCqNsAiHOM%2CjiycJ9M2L1o">20m 53s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/micro-factor-markets/choosing-inputs-when-factor-markets-are-monopsonistically-competitive">Choosing inputs when factor markets are monopolistically competitive</a> (1 Exercise, 1 Quiz, 1 Test, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Choosing+inputs+when+factor+markets+are+monopolistically+competitive&video_ids=vAaW15vwKUU%2CFIiVE-mzmqY">18m 23s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/market-failure-and-the-role-of-government">Market failure and the role of government</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/market-failure-and-the-role-of-government/externalities-micro">Externalities</a> (1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Externalities&video_ids=MT4akJsAmb0%2CnBw6KvU51BE%2CTSTLLFJbaA4%2CUYShebe44Xs">33m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/microeconomics/market-failure-and-the-role-of-government/externalities-topic">Public goods and externalities</a> (3 Articles, 1 Exercise, 1 Quiz, 1 Test, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Public+goods+and+externalities&video_ids=0b2Tl0x-niw%2CpJU028t-7mg">16m 51s</a> )</li>
</ul></li>
</ul>
<h2 id="finans--og-kapitalmarkederne-10-topics"><a href="https://da.khanacademy.org/economics-finance-domain/core-finance">Finans- og kapitalmarkederne</a> (10 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/interest-tutorial">Renter</a> (6 Topics)
<ul>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/interest-tutorial/compound-interest-tutorial">Introduktion til Renters Rente</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+Renters+Rente&video_ids=Rm6UdfRs3gw%2Cmec-QpjQMXY">15m 49s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/interest-tutorial/interest-basics-tutorial">Interest basics</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Interest+basics&video_ids=GtaoP0skPWc%2Ct4zfiBw0hwM">17m 57s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/interest-tutorial/credit-card-interest">Interest on credit cards and loans</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Interest+on+credit+cards+and+loans&video_ids=RuPMsK0mQC8%2CIPxQQNyCxas%2CBHTMuHvmarU">29m 19s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/interest-tutorial/cont-comp-int-and-e">Continuous compound interest and e</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Continuous+compound+interest+and+e&video_ids=BKGx8GMVu88%2CoQhp3ndj28Y%2Co5QRdHH8aeQ">26m 16s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/interest-tutorial/present-value">Present value</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Present+value&video_ids=733mgqrzNKs%2Cks33lMoxst0%2C4LSktB7Pk_c%2C3SgVUlEcOBU%2C6WCfVjUTTEY">46m 31s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/interest-tutorial/personal-bankruptcy-tut">Personlig konkurs</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Personlig+konkurs&video_ids=H3tg4bH5JuY">13m 4s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/housing">Boliger</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/housing/home-equity-tutorial">Home equity and personal balance sheets</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Home+equity+and+personal+balance+sheets&video_ids=mxsYHiDVNlk%2CU2Nw5T44zvY%2C7rrSuhFC7I0">28m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/housing/renting-v-buying">Renting vs. buying a home</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Renting+vs.+buying+a+home&video_ids=JNL6f1xkie4%2CYL10H_EcB-E%2CQA2TBiIsdT0%2CmtL_plJXv3c">45m 44s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/housing/mortgages-tutorial">Mortgages</a> (7 Videos | <a href="https://www.youtube.com/watch_videos?title=Mortgages&video_ids=y-1Gh4ewklY%2Cvy_pvstdBhg%2C5YfO4CshL7Y%2CS-mTwg73jCY%2CwluZFFkJ2io%2CQt-CWv6HEII%2Ci05-okb1EJg">1h 19m 36s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/housing/home-buying-process">Home buying process</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Home+buying+process&video_ids=ZGIPntpFCOc%2Cji4ilvfmTEw%2CJVcbDb3e-6w%2CFDJ4D78pcbg%2ChaS083Zbib4">41m 12s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/inflation-tutorial">Inflation</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/inflation-tutorial/inflation-basics-tutorial">Consumer price index</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Consumer+price+index&video_ids=-Z5kkfrEc8I%2CyahEP620480%2CDK1lCc9b7bg%2CpRIELoITIHI">31m 30s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/inflation-tutorial/inflation-scenarios-tutorial">Inflation scenarios</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Inflation+scenarios&video_ids=Z_DcXewHHA8%2CbTz_tx460EY%2CAC_kjcuHpZw">9m 53s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/inflation-tutorial/real-nominal-return-tut">Real and nominal return</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Real+and+nominal+return&video_ids=cNm196bVE5A%2CGiB9Mkgkrek%2C6ycEasF48zI">9m 45s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/inflation-tutorial/cap-util-inflation">Capacity utilization and inflation</a> (6 Videos | <a href="https://www.youtube.com/watch_videos?title=Capacity+utilization+and+inflation&video_ids=XDIBJyNnLOU%2C-LTXzYXaAuk%2C8x1-TeDxblU%2CLXrPdFn7Gn4%2CcugQ4z4cJF8%2CsZRkERfzzn4">1h 13m 29s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/inflation-tutorial/deflation-tutorial">Deflation</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Deflation&video_ids=FPh6EDv0Eew%2CstfSnPaaK04%2Ct2AeULH_Ijw%2CsnX4Wf7PGts">14m 36s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/taxes-topic">Skatter</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/taxes-topic/taxes">Skatter</a> (10 Videos | <a href="https://www.youtube.com/watch_videos?title=Skatter&video_ids=OGVJfcSckUs%2CGypHy3gnG5E%2CT0CwhLHrE2k%2CyrlLKwmb5dY%2CeElHlE4j-vw%2CAhgR3X--bbY%2CDtCfOMl3qo0%2CiIBQm3me8cs%2CSX_DzTb95mM%2CMR9CrsF3D00">57m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/taxes-topic/corporate-taxation">Corporate structure and taxation</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Corporate+structure+and+taxation&video_ids=VnTlKcIigyY%2CIiKKAw38ss0%2CTLSYwkWCIzA">27m 3s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/accounting-and-financial-stateme">Regnskabs- og finansielle udtryk</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/accounting-and-financial-stateme/cash-accrual-accounting">Cash versus accrual accounting</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Cash+versus+accrual+accounting&video_ids=FfdpupKByiU%2CNNhyZFHAzaA%2CLU_6amWC6H8">12m 51s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/accounting-and-financial-stateme/financial-statements-tutorial">Three core financial statements</a> (2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Three+core+financial+statements&video_ids=hZvjH3Az87A%2CMioqyv_IW3E%2C57gz50uTPqM%2Cs-5_H3z-Cv0">14m 26s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/accounting-and-financial-stateme/depreciation-amortization-tut">Depreciation and amortization</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Depreciation+and+amortization&video_ids=0E3PuHiDU9U%2CiewvEGWARBY%2CuX2w0b8Qlss%2CeKw3Aq0vvbo">15m 10s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/stock-and-bonds">Stock basics</a> (10 Topics)
<ul>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/stock-and-bonds/stocks-intro-tutorial">Introduktion til Aktier</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+Aktier&video_ids=98qfFzqDKR8%2Crs1md3e4aYU">23m 8s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/stock-and-bonds/shorting-stock">Shorting stock</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Shorting+stock&video_ids=-IDmLERenrU%2CucAUriWEFo8%2CzAkMhEqWFF0">32m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/stock-and-bonds/company-statements-capital-struc">At forstå firma erklæringer og kapitalstruktur</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=At+forst%C3%A5+firma+erkl%C3%A6ringer+og+kapitalstruktur&video_ids=7MjHWw3p710%2CYEZMReBbkP0%2C5lmHzAHbtzg%2CnhW3Ri4b_V8">15m 18s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/stock-and-bonds/valuation-and-investing">Valuation and Investing</a> (12 Videos | <a href="https://www.youtube.com/watch_videos?title=Valuation+and+Investing&video_ids=fa-VZ-SDxgY%2CZ7C4cz2HkeY%2CRouNXdkC0do%2CcppxO67e6eo%2CV-rko8jgJ9o%2COh4H3BJX1ZI%2CR_5slDeVCQk%2Ca5sFUXkxyGc%2CXfR3JSkSkJM%2CVrFbXxkl9JU%2Cpa92UdJCaos%2Cv4Fq9LEspzw">2h 34m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/stock-and-bonds/venture-capital-and-capital-markets">Life of a company--from birth to death</a> (9 Videos | <a href="https://www.youtube.com/watch_videos?title=Life+of+a+company--from+birth+to+death&video_ids=8OCjwBkMJ_E%2C-hJj5NpWUXQ%2Cm28RAgUySGQ%2CywOr4OYqXOs%2CopEy6iN9kqc%2CyQtUyBrRBx4%2Crs1md3e4aYU%2C-oW4M3vpuRM%2CmxVWyzzMOXM">1h 49m 56s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/stock-and-bonds/dilution-tutorial">Dilution</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Dilution&video_ids=tjQzJ7GY0GY">3m 51s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/stock-and-bonds/mergers-acquisitions">Mergers and acquisitions</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Mergers+and+acquisitions&video_ids=DMd9mTyzj6k%2C7zBqVOuEKYE%2CCzDA0WCdWHQ">12m 13s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/stock-and-bonds/leveraged-buy-outs">Leveraged buy-outs</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Leveraged+buy-outs&video_ids=LVMLs2z1JYg">5m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/stock-and-bonds/bonds-tutorial">Obligationer</a> (7 Videos | <a href="https://www.youtube.com/watch_videos?title=Obligationer&video_ids=rD25slnTqAE%2CQh-M3_L4xYk%2Cb_cAxh44aNQ%2CI7FDx4DPapw%2CmS7t91U9Qqg%2CYdGZaqJZbGc%2CSwB9Fq5VRZY">48m 3s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/stock-and-bonds/corp-bankruptcy-tutorial">Corporate bankruptcy</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Corporate+bankruptcy&video_ids=-oW4M3vpuRM%2CmxVWyzzMOXM">25m 25s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/investment-vehicles-tutorial">Investment vehicles</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/investment-vehicles-tutorial/mutual-funds">Mutual funds</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Mutual+funds&video_ids=DzYwB3uSU-c%2CnW1rxuQft1o%2CVpVu25KhozQ%2CSFdsY9Rdh6w%2C5UVpLPtgdF4">31m 27s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/investment-vehicles-tutorial/ira-401ks">Retirement accounts: IRAs and 401ks</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Retirement+accounts%3A+IRAs+and+401ks&video_ids=UV8kgqk_DAY%2Cth06SCNNZ60%2C2zfdtmlMNDs">38m 54s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/investment-vehicles-tutorial/life-insurance">Life insurance</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Life+insurance&video_ids=NSSoMafbBqQ">4m 22s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/investment-vehicles-tutorial/hedge-funds">Hedge funds</a> (7 Videos | <a href="https://www.youtube.com/watch_videos?title=Hedge+funds&video_ids=Qb7tbWuDc2U%2CEX1eFeaTiYM%2CvD2WJTIEVv0%2CbLQBbA8yh7c%2CnTco9qQ2elM%2C5UUa0V-MAqI%2C3qP8OOr7pfI">34m 14s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/investment-vehicles-tutorial/investment-consumption">Investment and consumption</a> (8 Videos | <a href="https://www.youtube.com/watch_videos?title=Investment+and+consumption&video_ids=mv5zucjq60k%2Civy1QmWUtQI%2C9T6ZPYYu_Dk%2CrEiLOB4FulY%2CxRjfRVXXFxU%2CQ7HbtnOyKMg%2CeRImmzuExyg%2CbAU1MLRwh7c">1h 12m 28s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/money-and-banking">Penge-, bank- og centralbanker</a> (8 Topics)
<ul>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/money-and-banking/banking-and-money">Banker og Penge</a> (25 Videos | <a href="https://www.youtube.com/watch_videos?title=Banker+og+Penge&video_ids=E-HOz8T6tAo%2Ch3lMANILkw0%2CnH2-37rTA8U%2CF7r7l1VG-Tw%2CcNFLqhU4MN0%2CIOzZVmgK3IM%2COn3c86V5A_E%2CVP3nKDUw1jA%2CDFPBdbx0vFc%2C8fxilNdEQTo%2CM-4GWomLbpc%2CJBWdbzzYbtU%2CBTNarhvGX88%2CIniG1KkPS2c%2CrgqFXkLAc-4%2CyOgGhPIHnlA%2CNFDMXwwzyIM%2CT9byZBGtGuw%2CFxkTSjctXdk%2CQWninXOAMXE%2CMILF-9GeMDQ%2CZyyaE3DIxhc%2CotstXFxMkl4%2C8SAMey9Gl5I%2CwBCowBiXV7A">4h 55m 36s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/money-and-banking/federal-reserve">Federal reserve (central banks)</a> (6 Videos | <a href="https://www.youtube.com/watch_videos?title=Federal+reserve+%28central+banks%29&video_ids=wDuCOxDxMzY%2Ckc_HjPT4NKo%2CZrKw-SLzNrw%2CTpLlJ8-AnQM%2CLmd_CDwBXFs%2Ca-R8qpea6lc">27m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/money-and-banking/bank-bailout">2008 Bank bailout</a> (16 Videos | <a href="https://www.youtube.com/watch_videos?title=2008+Bank+bailout&video_ids=ZUEjRYe7MRk%2CYJBqGM29_64%2CTUOQZjotyAQ%2Cw_GZqhAR0I4%2CI8BLj7cRM7c%2CjDNalKBb3aA%2CMdIfefLcdoU%2CgX9aKDeAOz4%2CeBYbnYNl0rw%2Croap32sTgPk%2CRkIM0Mbc8YQ%2CeZZkhSl8lMA%2CR528WbVdC0I%2CBdmI14oSe4g%2C-KrSxA9NCf0%2C_ZAlj2gu0eM">3h 1m 54s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/money-and-banking/geithner-plan">Geithnerplanen</a> (6 Videos | <a href="https://www.youtube.com/watch_videos?title=Geithnerplanen&video_ids=ervHbKa7R5g%2Cn-arbfLTCtI%2C0FxRYePmogU%2C_ka1HZS-Egc%2Cajl1UdtYUCA%2CkpqSeXpiM6k">1h 16m 36s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/money-and-banking/currency-tutorial">Valuta</a> (1 Article, 9 Videos | <a href="https://www.youtube.com/watch_videos?title=Valuta&video_ids=itoNb1lb5hY%2C5HVCFrXQ9pw%2CYsk1ySejuCQ%2CS-9iY1OgbDE%2CMN4SWiEEqKo%2Cm5xu4r0szaA%2CXBI7DqttyOQ%2C4aNoZjAhSr8%2C8In5PK1yUAA">1h 31m 42s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/money-and-banking/china-us-debt-situation">Chinese currency and U.S. debt</a> (10 Videos | <a href="https://www.youtube.com/watch_videos?title=Chinese+currency+and+U.S.+debt&video_ids=wNYFJsC8TZE%2CuTlh861MtYk%2CDfkq9SOWxY8%2CDtlFQ_nNaQM%2C4Azskeheo_g%2Ca3NFAnHxpKw%2CiNemmT1hnzA%2CR_-V6usZJsc%2CvrGNXAGmfCM%2CK0GF4FT51qY">34m 48s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/money-and-banking/greek-debt-crisis">Greek Debt Crisis</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Greek+Debt+Crisis&video_ids=9p10aMu1Glo%2CCkNArgNPI2Y%2CjkmwAJMERrY%2Cxc-TSAQkqJ0">34m 6s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/money-and-banking/bitcoin">Bitcoin</a> (9 Videos | <a href="https://www.youtube.com/watch_videos?title=Bitcoin&video_ids=EA0LkCkvUeU%2CY-w7SnQWwVA%2C0WiTaBI82Mc%2CAq3a-_O2NcI%2C9-9_v1wSPBQ%2C9V1bipPkCTU%2CQzDO44oZWtE%2CJuWYLAtz3Y4%2C8zgvzmKZ5vo">1h 41m 11s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/derivative-securities">Options, swaps, futures, MBSs, CDOs and other derivatives</a> (7 Topics)
<ul>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/derivative-securities/put-call-options">Put and call options</a> (18 Videos | <a href="https://www.youtube.com/watch_videos?title=Put+and+call+options&video_ids=nnl3x1wo25g%2CjAOtWm_WZiE%2C6CUcgUeQS-w%2CN8h45mDI80s%2C_q25hz5xLdk%2CMZQxeQYQCUg%2CVST_U297pH0%2Ci65NIcnHS9Y%2Cm4mrd7sHCPM%2C2HIRaOQDRho%2CWFuLVSz6n8M%2CTdW3LdN5SJw%2CAuCH7fHZsZ4%2CSCM4A0rBeOQ%2CMHWmBggmIU0%2CSc6zc8KR_NU%2C3o82OwR78wU%2COrRDNKNHtlg">1h 1m 5s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/derivative-securities/forward-futures-contracts">Forward and futures contracts</a> (19 Videos | <a href="https://www.youtube.com/watch_videos?title=Forward+and+futures+contracts&video_ids=H9UEZdAnnt8%2C3g6P0lRXotI%2CiyrOGvbSS2U%2C1t42z5U2uoc%2C1mnKCkmeaYs%2CAnATlMVA12E%2CC3KlN5kTWAs%2ChYzN0w8FatU%2C1CxRVVGGNJU%2CUDe6zeabyQM%2CwSqkieBUuo8%2CLDuJ1AD7n54%2C5YaSL-y46Hk%2CFcRxdq7KGOQ%2C_uDb0ZdGb8w%2C0jk6uLZ1Tdc%2C5kFnAmmGXM4%2CQiluvhVryI0%2Cowcmu4XxrHM">1h 9m 18s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/derivative-securities/mort-backed-secs-tut">Mortgage-backed securities</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Mortgage-backed+securities&video_ids=dwleadLC2Dw%2CoosYQHq2hwE%2CeYBlfxGIk28%2Cq0oSKmC3Mfc">28m 54s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/derivative-securities/cdo-tutorial">Collateralized debt obligations</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Collateralized+debt+obligations&video_ids=TEfyIsDRGCk%2CXjoJ9UF2hqg">14m 3s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/derivative-securities/credit-default-swaps-tut">Credit default swaps</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Credit+default+swaps&video_ids=ccaCl1GKdJ0%2Ca1lVOO9Y080%2CneAFEvNsiqw%2CewSw9tF9Z0E%2CMNUVuZu6heA">35m 40s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/derivative-securities/interest-rate-swaps-tut">Interest rate swaps</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Interest+rate+swaps&video_ids=PLjyj1FJqig%2CxE43JrjCpjE">8m 38s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/derivative-securities/black-scholes">Black-Scholes Formula</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Black-Scholes+Formula&video_ids=pr-u4LCFYEY%2CVIHldsSmASU">15m 24s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/current-economics">Current economics</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/current-economics/unemployment-tutorial">Unemployment</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Unemployment&video_ids=vUOiOi-XaoQ%2CC9onjpQGpSg%2C9DGbDx5xQNo%2CsSqxVMbml_k">35m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/current-economics/housing-price-conundrum">Housing price conundrum</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Housing+price+conundrum&video_ids=8IR5LefXVPY%2CwYAhlTHIBT4%2CaAfMps_VyOY%2Cs6UYa2nwaDw">34m 56s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/current-economics/credit-crisis">Credit Crisis</a> (12 Videos | <a href="https://www.youtube.com/watch_videos?title=Credit+Crisis&video_ids=8IR5LefXVPY%2CwYAhlTHIBT4%2CaAfMps_VyOY%2Cs6UYa2nwaDw%2CoosYQHq2hwE%2CeYBlfxGIk28%2Cq0oSKmC3Mfc%2CXjoJ9UF2hqg%2Ca1lVOO9Y080%2CneAFEvNsiqw%2CQ7HbtnOyKMg%2CeRImmzuExyg">1h 55m 42s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/current-economics/paulson-bailout">Paulson Bailout</a> (16 Videos | <a href="https://www.youtube.com/watch_videos?title=Paulson+Bailout&video_ids=_ZAlj2gu0eM%2CZUEjRYe7MRk%2CYJBqGM29_64%2CTUOQZjotyAQ%2Cw_GZqhAR0I4%2CI8BLj7cRM7c%2CjDNalKBb3aA%2CMdIfefLcdoU%2CgX9aKDeAOz4%2CeBYbnYNl0rw%2Croap32sTgPk%2CRkIM0Mbc8YQ%2CeZZkhSl8lMA%2CR528WbVdC0I%2CBdmI14oSe4g%2C-KrSxA9NCf0">3h 1m 54s</a> )</li>
<li><a href="https://da.khanacademy.org/economics-finance-domain/core-finance/current-economics/european-union">European Union</a> (6 Videos | <a href="https://www.youtube.com/watch_videos?title=European+Union&video_ids=gbIgkcIfg0E%2CggggPEuFzOM%2C9p10aMu1Glo%2CCkNArgNPI2Y%2CjkmwAJMERrY%2Cxc-TSAQkqJ0">46m 28s</a> )</li>
</ul></li>
</ul>
<h1 id="kunst-og-humaniora-34-topics"><a href="https://da.khanacademy.org/humanities">Kunst og Humaniora</a> (34 Topics)</h1>
<h2 id="ap︎-art-history-12-topics"><a href="https://da.khanacademy.org/humanities/ap-art-history">AP®︎ Art history</a> (12 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/humanities/ap-art-history/introduction-ap-arthistory">Key issues for the study of AP Art History</a> (4 Articles, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Key+issues+for+the+study+of+AP+Art+History&video_ids=0OloYD_kSbU%2CsM2MOyonDsY%2C_QM-DfhrNv8%2CqfITRYcnP84%2CtVdw60eCnJI%2CubEadhXWwV4">37m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/ap-art-history/cultures-religions-ap-arthistory">Introduction to cultures and religions for the study of AP Art History</a> (11 Articles, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduction+to+cultures+and+religions+for+the+study+of+AP+Art+History&video_ids=IX85uiG86RA%2Cjl6S0wdeWk4%2Cr5l5Cwge7yk">53m 50s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/ap-art-history/global-prehistory-ap">Global prehistory: 30,000-500 B.C.E. </a> (1 Topic)
<ul>
<li><a href="https://da.khanacademy.org/humanities/ap-art-history/global-prehistory-ap/paleolithic-mesolithic-neolithic">Paleolithic, Mesolithic and Neolithic</a> (15 Articles, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Paleolithic%2C+Mesolithic+and+Neolithic&video_ids=eeNfDr4ojZg%2Cld8kHvz1yN4%2Cd1oO1kbtt4s%2Ch0J_RnRILJ0%2CQ3DpCMAyWyw">21m 25s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/ap-art-history/ancient-mediterranean-ap">Ancient Mediterranean: 3500 B.C.E.-300 C.E.</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/ap-art-history/ancient-mediterranean-ap/ancient-near-east-a">Ancient Near East</a> (7 Articles, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Ancient+Near+East&video_ids=DKMWS9qJ_1U%2CNok4cBt0V6w%2CJO9YxZYd0qY%2C2GrvBLKaRSI%2CmjxCTApdX3Q">26m 17s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/ap-art-history/ancient-mediterranean-ap/ancient-egypt-ap">Ancient Egypt </a> (11 Articles, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Ancient+Egypt+&video_ids=IKkcop-dlUY%2CpZOUV_rTyj0%2CKV0hmkuS5ec%2CryycDVWXDvc%2CWceVwMdN0eE">25m 53s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/ap-art-history/ancient-mediterranean-ap/greece-etruria-rome">Ancient Greece</a> (2 Articles, 17 Videos | <a href="https://www.youtube.com/watch_videos?title=Ancient+Greece&video_ids=nrRJkzXl4a4%2CTYXCcTchLnI%2Cv1_pCZBVWuY%2CRjpT4Apgda8%2CWhPW50r07L8%2CS3TlDyT2lyg%2CEAR9RAMg9NY%2CtWDflkBZC6U%2CQRH105_ztAw%2CuF_W0jQ7bi0%2CzU9qSQi1E68%2CB4HXrb8cPQI%2CYUzsxLi43gE%2CTPM1LuW3Y5w%2CL3SIooVHV8E%2C51UA1T89MzU%2CFvsSPJoJB3k">1h 56m 44s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/ap-art-history/ancient-mediterranean-ap/ap-ancient-etruria">Ancient Etruria</a> (4 Articles, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Ancient+Etruria&video_ids=XmirNCA_Lj4%2CGLgrt_4WnMY%2CYheIckLuV7c">10m 50s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/ap-art-history/ancient-mediterranean-ap/ap-ancient-rome">Ancient Rome</a> (5 Articles, 10 Videos | <a href="https://www.youtube.com/watch_videos?title=Ancient+Rome&video_ids=f8hqR2O8HiM%2CZ1RpVPbHgzU%2CT0fq3XFfxrY%2C3i8iou6tXqY%2C9wguQaBYKec%2Cy-IAOPxkNWo%2Cz83guai4S68%2CMFt3tHNevJg%2CKaY8zqYfQI0%2Cm4raOIxsbaU">59m 11s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/ap-art-history/early-europe-and-colonial-americas">Early Europe and colonial Americas: 200-1750 C.E.</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/ap-art-history/early-europe-and-colonial-americas/medieval-europe-islamic-world">Medieval Europe and the Islamic world (3-1 to 3-2)</a> (19 Articles, 16 Videos | <a href="https://www.youtube.com/watch_videos?title=Medieval+Europe+and+the+Islamic+world+%283-1+to+3-2%29&video_ids=z_5AAk1jABI%2CHjBfBB9r2QM%2CogrRKL30iJ8%2CIt3i-dKusIM%2CXfpusWEd2jE%2CEmQ1TdoT-zE%2Cr6383ZDXB0Q%2C2JxIjfqKTLs%2CTYds0dsratI%2CF8OPQ_28mdo%2CJk3VsinLgvc%2Cvsjl4aE2VkA%2C47QgqdeSi0U%2CI356lV1v8Bc%2CRbBQN0Wt_wY%2C6z_Kjsn8VLI">2h 6m 51s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/ap-art-history/early-europe-and-colonial-americas/renaissance-art-europe-ap">Renaissance Art in Europe</a> (8 Articles, 14 Videos | <a href="https://www.youtube.com/watch_videos?title=Renaissance+Art+in+Europe&video_ids=q1X0Lj7YEMs%2CLKv0hRyiGCY%2C9ODhKqFaugQ%2C6kUUJJV_MNA%2CMHuUBkyF8KI%2CLy2-n1KqNko%2CK6PBfbkMzFU%2CiV6_wTrkd70%2CPEE3B8Fsuc0%2CICQCUTiC0mI%2Cc2MuTvQM61Y%2CSmd-q44ysoM%2CABhqENOxSrU%2CqD6ct0VS15c">1h 28m 24s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/ap-art-history/early-europe-and-colonial-americas/reformation-counter-reformation">Protestant reformation and Catholic counter-reformation (3-5)</a> (4 Articles, 10 Videos | <a href="https://www.youtube.com/watch_videos?title=Protestant+reformation+and+Catholic+counter-reformation+%283-5%29&video_ids=aj2el_owSg4%2CPj3HdzOR2pY%2CSZF5K8epWko%2CjWQ4V43TJ6o%2CWm-akMcsHEc%2CRKcJvjP9zgY%2CIiTtGENiVOA%2CWO1I1dN0DaA%2CEK-h6cZCXrs%2CmFJ9tHJA2Sw">1h 6m 18s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/ap-art-history/early-europe-and-colonial-americas/colonial-americas">colonial-americas</a> (5 Articles, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=colonial-americas&video_ids=jT0hslicvFc%2CimkOrmHtSJ0">11m 11s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/ap-art-history/later-europe-and-americas">Later Europe and Americas: 1750-1980 C.E.</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/ap-art-history/later-europe-and-americas/enlightenment-revolution">Enlightenment and Revolution (4-1)</a> (11 Articles, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Enlightenment+and+Revolution+%284-1%29&video_ids=rVI5Sjm0xKI%2CqfAga9DAuU4%2ClSV-J1JHDFY%2C6skizQlC-uU%2CRQ0855yB2ZM%2CNoCW80MEGXY%2C7oBUIo5R5qg">35m 56s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/ap-art-history/later-europe-and-americas/modernity-ap">Modernism</a> (31 Articles, 14 Videos | <a href="https://www.youtube.com/watch_videos?title=Modernism&video_ids=bihBbqzL96Y%2CfpnIGUds1FQ%2Cabc1Y4X-id8%2CKJuYXFHvRaY%2CXyLNPumMMTs%2CBRUOACBkFRg%2Cr3ttwvNvors%2CSa3FyvaKYVw%2CZLC8xRNcJvE%2Ct4lgvB5cV5E%2CFmjSUyyc-3M%2Cy0xbZTe1JSM%2CZyyuflY5k2k%2CvrbNsHs7ptE">1h 24m 31s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/ap-art-history/indigenous-americas">Indigenous Americas</a> (16 Articles, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Indigenous+Americas&video_ids=ifY8gBIonAc%2C86zSgZWVkVk%2CZn03u3-U1fk%2CZ1rqLNz8Zo0%2CD9uJxXnDTU8%2CQ_Lp76ZkDE0">32m 4s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/ap-art-history/africa-ap">Africa: 1100-1980 C.E.</a> (6 Articles, 9 Videos | <a href="https://www.youtube.com/watch_videos?title=Africa%3A+1100-1980+C.E.&video_ids=I1KRjQmFEIc%2C3Ph2D--ZeHQ%2C6bsWW4Ke_Hs%2CAVNuN89x090%2CFN1qz8tp89g%2CkRikHc8U8zI%2Ct-4O17cw9cw%2COS4Q5TN8oJU%2CYc9NJnx58Wg">47m 1s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/ap-art-history/west-and-central-asia">West and central Asia: 500 B.C.E.-1980 C.E.</a> (13 Articles, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=West+and+central+Asia%3A+500+B.C.E.-1980+C.E.&video_ids=WZgYhVgWR8g%2CnENvd7Zj1Qs%2C2IT6FcvBp_w">9m 9s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/ap-art-history/south-east-se-asia">South, East, and Southeast Asia: 300 B.C.E. - 1980 C.E.</a> (6 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/ap-art-history/south-east-se-asia/india-art">Indien</a> (8 Articles, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Indien&video_ids=IX85uiG86RA%2Co7-i6KLoEkc%2Cjl6S0wdeWk4%2CNJsLHcL3Bvs">59m 25s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/ap-art-history/south-east-se-asia/china-art">Kina</a> (9 Articles, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Kina&video_ids=Zuugb3qq0Zg%2CkFp7D0UxNxU%2ClfIHzumEghQ%2CtPfYrmcfvYE">14m 3s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/ap-art-history/south-east-se-asia/japan-art">Japan</a> (5 Articles, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Japan&video_ids=r4rWWtSWf_k%2CWfZe2NLKEns">9m 50s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/ap-art-history/south-east-se-asia/cambodia-art">Cambodia</a> (1 Article, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Cambodia&video_ids=fPc20_vtlaM">5m 3s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/ap-art-history/the-pacific">The Pacific (content area 9)</a> (11 Articles, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=The+Pacific+%28content+area+9%29&video_ids=b06FwTP9TOU%2C3ntQz5vxFec">12m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/ap-art-history/global-contemporary">Global contemporary: 1980-present </a> (22 Articles, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Global+contemporary%3A+1980-present+&video_ids=wuxjTxxQUTs%2CDseIYQdjzgE%2C4zatyfXy_D0%2CKv3feYibIUk%2CPueYywpkJW8">36m 35s</a> )</li>
</ul>
<h2 id="historie-6-topics"><a href="https://da.khanacademy.org/humanities/world-history">Historie</a> (6 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/humanities/world-history/world-history-beginnings">Beginnings - 600 BCE</a> (9 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/world-history/world-history-beginnings/origin-humans-early-societies">The origin of humans and early human societies</a> (4 Articles, 4 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=The+origin+of+humans+and+early+human+societies&video_ids=ObGarwy5Jss%2CCFOskkTm_x0%2ClXR3HKFLSrc">38m 44s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/world-history-beginnings/birth-agriculture-neolithic-revolution">The birth of agriculture and the neolithic revolution</a> (3 Articles, 3 Exercises, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=The+birth+of+agriculture+and+the+neolithic+revolution&video_ids=JvBHwVpBCwM%2CRkC25y288ck">20m 9s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/world-history-beginnings/ancient-mesopotamia">Early civilizations</a> (1 Article, 2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Early+civilizations&video_ids=9GQdh2eGP-Y%2CIh26fli0vAU">17m 21s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/world-history-beginnings/ancient-egypt-hittites">Ancient Egypt</a> (2 Articles, 3 Exercises, 1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Ancient+Egypt&video_ids=SGSLyp8mmMc%2C-j7N-XPi5Z0">27m 32s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/world-history-beginnings/ancient">Antikken og Middelalderen</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Antikken+og+Middelalderen&video_ids=Nok4cBt0V6w%2COFXY9-pec1I">12m 45s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/world-history-beginnings/ancient-india">Ancient India</a> (1 Article, 2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Ancient+India&video_ids=mi9sMazNPxM%2CxBIbflTfxm8%2CkemwplAKWsY%2CWhTpJxlJi2I">38m 36s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/world-history-beginnings/shang-dynasty-china">Shang China</a> (1 Article, 2 Exercises, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Shang+China&video_ids=g9SGpnheXek">7m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/world-history-beginnings/ancient-americas">Ancient Americas</a> (2 Articles, 2 Exercises, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Ancient+Americas&video_ids=o2XjXFvruIM">7m 42s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/world-history-beginnings/pre-history-humanity-on-earth-tutorial">Human innovation and the environment</a> (1 Test, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Human+innovation+and+the+environment&video_ids=iU58AIjh3YA%2CNqR_dtZu4Mo%2CxM8szz4VB28%2CmwUyaeWxJhA">45m 57s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/world-history/ancient-medieval">Ancient and Medieval History</a> (18 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/world-history/ancient-medieval/ancient-persia">Ancient Persia</a> (1 Article, 3 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Ancient+Persia&video_ids=uLN8VIcvClo%2CEqEEndY0sT8%2CF2tqV9u9vzY">32m 12s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/ancient-medieval/classical-greece">Classical Greece</a> (3 Articles, 5 Exercises, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Classical+Greece&video_ids=I114S4KiOn8%2CpwwNxWXf1eU%2Cybcmd6yLH3c%2C9AHqFKc3mKY%2CpJQr77Vzwyk%2CB736-QoSLh8%2CCNN2d7uG6IY">1h 9m 27s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/ancient-medieval/classical-states-and-empires">Classical states and empires</a> (1 Article, 2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Classical+states+and+empires&video_ids=g39owvSlC-g%2C5Zo0j7yj23E">12m 25s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/ancient-medieval/alexander-the-great">Empire of Alexander the Great</a> (1 Article, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Empire+of+Alexander+the+Great&video_ids=yCUs43CYMoI%2CSa5eqaYwQ2Q%2CDWyfS9kzalQ%2CAgYVtucDPt8">36m 49s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/ancient-medieval/roman-empire">Rise of Rome</a> (1 Article, 1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Rise+of+Rome&video_ids=Rl-1snoSWpo%2C9IXn3xHhkgg%2Cvmay1kIOjdM%2CXHVty6_XTJY">35m 29s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/ancient-medieval/roman-a">From Roman Republic to Roman Empire</a> (1 Article, 3 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=From+Roman+Republic+to+Roman+Empire&video_ids=PG3vxLHo1Ws%2C7DUY9OxFc0E%2Czc_p7Mw1A7U%2CY33LnxG2L80">41m 5s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/ancient-medieval/roman-empire-survey">The Roman Empire</a> (1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=The+Roman+Empire&video_ids=sF3Lh4XT4hg%2CUZ3oEn5Q7U4%2CkiMNT18c4Ko%2Cf8hqR2O8HiM">41m 36s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/ancient-medieval/zhou-qin-han-china">Ancient and Imperial China</a> (2 Articles, 5 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Ancient+and+Imperial+China&video_ids=6L9jWmLkaS0%2CiPQ6GB822x4">17m 47s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/ancient-medieval/judaism">Jødedommen</a> (1 Article, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=J%C3%B8dedommen&video_ids=cP-fdixB1Zc%2CiBWCZxyElIM">16m 11s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/ancient-medieval/christianity">Kristendom</a> (1 Article, 3 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Kristendom&video_ids=gUbsSL2OiBg%2CQSC86jWqGKc%2CZ-Xzp-WMv4E%2CT8O4AcTyjHc">47m 13s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/ancient-medieval/civilizations-in-the-americas">The Americas</a> (1 Article, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=The+Americas&video_ids=HPRPaTqNnZk%2C3yb1jBTwMeI">15m 53s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/ancient-medieval/early-indian-empires">Empires form in India</a> (3 Articles, 3 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Empires+form+in+India&video_ids=P0zrLZrlyko%2C8KrFLUkauxE">17m 16s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/ancient-medieval/hinduism">Hinduisme</a> (7 Videos | <a href="https://www.youtube.com/watch_videos?title=Hinduisme&video_ids=xBIbflTfxm8%2CkemwplAKWsY%2CWhTpJxlJi2I%2CINv2gdpfXPQ%2CUWTdCorvOWU%2Cv8sj8pHSFuE%2CSZUipvwNx3w">59m 37s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/ancient-medieval/buddhism-intro">Buddhism</a> (1 Exercise, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Buddhism&video_ids=WhTpJxlJi2I%2CX-_cJU-pFwQ%2C16S_XjHqcZM%2COmFgyJRj66I%2CaCA6ioTLw-Q">40m 4s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/ancient-medieval/syncretism">Syncretism</a> (1 Article, 1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Syncretism&video_ids=hds9i_bYm48">9m 8s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/ancient-medieval/women-and-families">Women and families</a> (1 Article, 1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Women+and+families&video_ids=rmPqoWYlH-Q">10m 38s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/ancient-medieval/silk-road">Silk road</a> (1 Article, 2 Exercises, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Silk+road&video_ids=lLeIclx2lAU">6m 54s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/ancient-medieval/survey-of-second-wave-civilizations">Survey of second-wave civilizations</a> (1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Survey+of+second-wave+civilizations&video_ids=GdlYMKScDj4%2CFV5on4e9LeQ%2CbzL6w6sTwTM">21m 16s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/world-history/medieval-times">600 - 1450</a> (19 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/world-history/medieval-times/byzantine-empire">Byzantine Empire</a> (2 Articles, 2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Byzantine+Empire&video_ids=Y4-F3zk7pFc%2CFx4l41R5nxY">17m 11s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/medieval-times/european-middle-ages-and-serfdom">European Middle Ages and serfdom </a> (1 Article, 4 Exercises, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=European+Middle+Ages+and+serfdom+&video_ids=H5ZJujqa0YQ%2Cp3pYuY4buIk%2C4o6wnbgi6bg%2Cc30S6M8-Jvw%2CbCiNvTNwAQk">45m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/medieval-times/origins-of-islam">Origins of Islam</a> (1 Article, 2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Origins+of+Islam&video_ids=Gg6ju-lHCwU%2C4NT_btkLlho%2CavbWgpRLoP0%2CgB7ya6386iA">36m 22s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/medieval-times/spread-of-islam">Spread of Islam</a> (2 Articles, 2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Spread+of+Islam&video_ids=ojSkGvxFi4M%2CsDSTgKIQAzE">20m 22s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/medieval-times/islam-intro">Islam</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Islam&video_ids=iMbAu2Oh7PA%2CFygpbbwsSGg">17m 27s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/medieval-times/cross-cultural-diffusion-of-knowledge">Cross-cultural diffusion of knowledge</a> (1 Article, 2 Exercises, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Cross-cultural+diffusion+of+knowledge&video_ids=K5XKjk0-hCo">10m 44s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/medieval-times/medieval">Europa i middelalderen</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Europa+i+middelalderen&video_ids=Z-Xzp-WMv4E%2CT8O4AcTyjHc%2CjqMC4RBE4A0%2Ciql2eFZsV5Y">32m 12s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/medieval-times/the-crusades-technology-and-culture">The Crusades</a> (2 Exercises, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=The+Crusades&video_ids=NGyCpI1zE6k%2CbCiNvTNwAQk%2C7LY2CMteGw8%2CT9ACF4I4q0k">32m 21s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/medieval-times/the-mongols">The Mongols</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=The+Mongols&video_ids=PiIJFRqrQYk%2Cn-7xGKl2HX4%2C5SJFZQ4zwLw%2ChNpcQEGw3S4">27m 7s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/medieval-times/song-china">Song China</a> (2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Song+China&video_ids=K5UbnilpzXA%2CPn9n-k1JIUo%2CCBjLSRfqoAg">22m 9s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/medieval-times/medieval-japan">Medieval Japan</a> (1 Quiz, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Medieval+Japan&video_ids=-5rBQO0VpWo%2CzLHwRTNbcjI">10m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/medieval-times/maya-aztec-and-inca">Maya, Aztec, and Inca</a> (2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Maya%2C+Aztec%2C+and+Inca&video_ids=_-96fKZGQVs%2C20B94yLBGrg">9m 50s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/medieval-times/environment-and-trade">Environment and trade</a> (1 Article, 2 Exercises, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Environment+and+trade&video_ids=FyW7CUl9KDc">9m 36s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/medieval-times/migration">Migration</a> (1 Article, 2 Exercises, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Migration&video_ids=dF7VheDQsv8">8m 15s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/medieval-times/development-of-financial-institutions">Development of financial institutions</a> (1 Article, 2 Exercises, 1 Quiz, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Development+of+financial+institutions&video_ids=T9ACF4I4q0k">9m 24s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/world-history/renaissance-and-reformation">1500-1600: Renæssancen & Reformationen</a> (6 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/world-history/renaissance-and-reformation/spanish-and-portuguese-empires">Spanish and Portuguese Empires</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Spanish+and+Portuguese+Empires&video_ids=vYV43Ti1iYw">9m 48s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/renaissance-and-reformation/scientific-revolution-enlightenment"> Scientific Revolution and Enlightenment</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=+Scientific+Revolution+and+Enlightenment&video_ids=7vL4-Ophj5s">8m 31s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/renaissance-and-reformation/mughal-dynasty">Mughal rule in India</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Mughal+rule+in+India&video_ids=mGnm89Rfi98%2ChNpcQEGw3S4">16m 33s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/renaissance-and-reformation/sikhism">Sikhism</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Sikhism&video_ids=925fZ4WKISo%2ClIHJcTf31NM">21m 59s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/renaissance-and-reformation/protestant-reformation">The Protestant Reformation</a> (3 Articles, 2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=The+Protestant+Reformation&video_ids=qTGJMnTWrrw%2CdSOnLt3YVl0%2CF6ZsIyKHTNI%2CC6PUlTYnxLY">37m 30s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/renaissance-and-reformation/russian-empire">The Russian Empire</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=The+Russian+Empire&video_ids=P58tMgZ4v0A">9m 53s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/world-history/1600s-1800s">1600s-1800s: Enlightenment and the Revolution</a> (7 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/world-history/1600s-1800s/seven-years-war">American Revolution</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=American+Revolution&video_ids=UAhbwYBAoe0%2CegCzfiaUYPA%2Cer1L9BB6UoE%2CRk8dCnKIfP4">45m 19s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/1600s-1800s/french-revolution-tutorial">Den Franske Revolution</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Den+Franske+Revolution&video_ids=BDWqwcTtZa0%2C0t4MF9ZoppM%2CBZmtnCqTWik%2CKYoB2mjNdr0">1h 12m 13s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/1600s-1800s/napoleon-bonaparte">Napoleon Bonaparte</a> (7 Videos | <a href="https://www.youtube.com/watch_videos?title=Napoleon+Bonaparte&video_ids=OzyH-1p9nAg%2CyogD_-Op4Wc%2CO3HxPDH-s7w%2CALJGz4r_VF0%2CF_ySQvjtAxQ%2CCH6FQhlZn6k%2CufymsKi9S3U">1h 52m 24s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/1600s-1800s/many-french-revolutions">France's many revolutions and republics</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=France%27s+many+revolutions+and+republics&video_ids=I4iwhvDhvKE">11m 3s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/1600s-1800s/haitian-revolution">Haitianske Revolution</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Haitianske+Revolution&video_ids=Qz5zFzvbib4%2CgU-5bjpAPmA">44m 9s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/1600s-1800s/latin-american-independence">Independence in the Americas</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Independence+in+the+Americas&video_ids=y6lIgVSvizk">5m 49s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/1600s-1800s/imperialism">Imperialisme</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Imperialisme&video_ids=fUDwPz9VmL0%2CVlZpo580bA8%2Cp5SkpVqjWmg">25m 29s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/world-history/euro-hist">Verdenshistorie</a> (13 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/world-history/euro-hist/world-war-i-tutorial">The beginning of World War I</a> (1 Exercise, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=The+beginning+of+World+War+I&video_ids=IyoUWRAharQ%2CUNgx_YSygyU%2CKMMAL3v0lA0%2C6RKMRBxDm20%2CheKuwogLwnk%2ChuOnuYAyv6w">33m 9s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/euro-hist/other-fronts-ww1">Serbian and Italian fronts in World War I</a> (1 Exercise, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Serbian+and+Italian+fronts+in+World+War+I&video_ids=WX4T9NjYG94%2CdpnFYrz2fCE%2Cay1QGPg2R98%2CmQyM-4YqHMM%2CNTUjMpfYWwE">28m 2s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/euro-hist/world-war-i-fighting">Western and Eastern fronts of World War I</a> (1 Exercise, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Western+and+Eastern+fronts+of+World+War+I&video_ids=7AOOlxbZN3E%2CqPoLL0E2W8A%2CATuMxyoVh_8%2CjR_XZyhLSA8%2CxFBK9534NI8%2C4bmPvB15aYU">48m 30s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/euro-hist/american-entry-world-war-i">American entry into the Great War (World War I)</a> (2 Articles, 1 Exercise, 1 Quiz, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=American+entry+into+the+Great+War+%28World+War+I%29&video_ids=B_P48TakY3Y%2CGedy8LwQTaw%2CdHXzusNSF60">23m 19s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/euro-hist/middle-east-20th-century">Arabia and Israel in the 20th Century</a> (1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Arabia+and+Israel+in+the+20th+Century&video_ids=g8sxNa-E-H0%2CL3Ka3oRD8G8%2CeIfQ4GfSz3U%2CzbQFQ_nzbhI">43m 33s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/euro-hist/ww1-aftermath">Aftermath of World War I</a> (2 Exercises, 1 Quiz, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Aftermath+of+World+War+I&video_ids=kOf8fU9iduA%2CXMElagkUBmY%2Co1IFePaNENQ%2CTmFET3F64pE%2CzbQFQ_nzbhI">48m 31s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/euro-hist/hitler-nazis">Rise of Hitler and the Nazis</a> (1 Exercise, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Rise+of+Hitler+and+the+Nazis&video_ids=QCkn5bu8GgM%2C5qWI2pEv0wg%2CEtZnPoYbRyA%2CZrbbKMnPDUk%2CVTdV9JaHiIA">40m 13s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/euro-hist/mussolini-fascism">Rise of Mussolini and Fascism</a> (1 Exercise, 1 Quiz, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Rise+of+Mussolini+and+Fascism&video_ids=AoRpWU6hHJ8%2CwxtltXz4zs0%2CpT6tFia8eaY%2C6uNYe9UB3K4">34m 11s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/euro-hist/china-early-1900s">Overview of Chinese history 1911-1949</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Overview+of+Chinese+history+1911-1949&video_ids=a9QtIfPIQl4">11m 7s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/euro-hist/wo">Overview of World War II</a> (9 Videos | <a href="https://www.youtube.com/watch_videos?title=Overview+of+World+War+II&video_ids=-kKCjwNvNkQ%2CToss6Hzf5n0%2CX3bqQI7-sCg%2CCBHfoQsF2Y4%2CFqGLqdk9Sr0%2Cx9g82IA-IEU%2C-6XBnjFrWBg%2C0UgQ0B_0hAg%2CU6RFAUmYU5o">1h 4m 24s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/euro-hist/cold-war">The Cold War</a> (7 Videos | <a href="https://www.youtube.com/watch_videos?title=The+Cold+War&video_ids=MmRgMAZyYN0%2CMEGyRgYJKEY%2CXmkbAduMD_E%2CVO40SpSBjbc%2C9e9GWdT2pEQ%2CUm92GZLCQ_Q%2CaNkrawaaiZQ">1h 45m 56s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/world-history/euro-hist/human-rights"> Human rights</a> (1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=+Human+rights&video_ids=xjh0L2Km_cs%2C5CZ0oZ_lXSY%2C8xIA10NQakI">28m 37s</a> )</li>
</ul></li>
</ul>
<h2 id="musik-4-topics"><a href="https://da.khanacademy.org/humanities/music">Musik</a> (4 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/humanities/music/music-basics2">Music Basics</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/music/music-basics2/notes-rhythm">Music Basics: Notes and rhythm</a> (1 Article, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Music+Basics%3A+Notes+and+rhythm&video_ids=wQHcz7U01M4%2CZPRMFBN8p4Q%2CG6U3jW5G4bU%2CmVFbGjnysP0%2Cw89mmoD0O4c%2CesbqpgAD-EM">25m 18s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/music/music-basics2/reading-music2">Reading music</a> (1 Article, 10 Videos | <a href="https://www.youtube.com/watch_videos?title=Reading+music&video_ids=rpYRUQvArEY%2COPEfSEyFET4%2C3SQOfqHJ1QM%2CpC1qyX4w96E%2C90S0Ru8qww8%2CPuD_ppGtv3I%2Cr9JS_vZOGVg%2C7rwd7i6Ls9M%2CN1lLDGCeh3k%2CMzHqA8pCWKk">28m 44s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/music/band-instrument-lessons-music">Band instrument lessons</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/music/band-instrument-lessons-music/music-woodwinds">Woodwinds</a> (9 Videos | <a href="https://www.youtube.com/watch_videos?title=Woodwinds&video_ids=oQ0LEOKo9Yw%2ChoLg06rnF9M%2CAPzvFz-D_kI%2C9kTpqqDLMVo%2CNYW0Vzxs9mI%2Cecq9MzKpbHE%2C8p1WTyJpgO8%2CqTU3FcxK-iU%2CtBdp1F5hM4I">1h 9m 34s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/music/band-instrument-lessons-music/brass-band-music">Bas</a> (6 Videos | <a href="https://www.youtube.com/watch_videos?title=Bas&video_ids=oEueDdPXXmc%2CvpDLRmkZByc%2CWZ5yw5HXVAE%2CRo5rxW9z63A%2CDWZ2H7d7rho%2Cfl3UhJZIsXQ">42m 51s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/music/band-instrument-lessons-music/percussion-band-music">Tromme</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Tromme&video_ids=VagKqlkaPg8%2Cbwhv7eL02lg">13m 16s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/music/band-instrument-lessons-music/auditioning-music">Auditioning</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Auditioning&video_ids=KG2rJSMQetE">5m 40s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/music/music-masterpieces-old-new">Masterpieces old and new</a> (17 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/music/music-masterpieces-old-new/ludwig-van-beethoven-music">Ludwig van Beethoven: Symphony No. 5</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Ludwig+van+Beethoven%3A+Symphony+No.+5&video_ids=-rGXAfc643A%2CiFCIgn3Q9XE%2CVNB-OVWlRbk%2Cm9h7Vt8ZjqE%2CDGBYyf08nWM">1h 2m 13s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/music/music-masterpieces-old-new/tchaikovsky-4th">Pyotr Ilyich Tchaikovsky: Symphony No.4</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Pyotr+Ilyich+Tchaikovsky%3A++Symphony+No.4&video_ids=9_-YqgZs6vI%2CknQtiFUyCi8%2CBsLnura5zwE%2C7X1_3i9DimY">32m 13s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/music/music-masterpieces-old-new/schumann-thirdsymph-analysis">Robert Schumann: Symphony No. 3 "Rhenish"</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Robert+Schumann%3A+Symphony+No.+3+%22Rhenish%22&video_ids=yI7kDoB6YsI%2C4xCD0k7rUbo%2CPFX9BFI3--g%2ChiWFB_iS0OE%2CH7dVIruG-oU">27m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/music/music-masterpieces-old-new/brahms-overture">Johannes Brahms: Academic Festival Overture</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Johannes+Brahms%3A+Academic+Festival+Overture&video_ids=VIV-yJfIrlI">12m 12s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/music/music-masterpieces-old-new/antonin-dvorak-music">Antonín Dvořák. Symphony No. 9 "From the New World"</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Anton%C3%ADn+Dvo%C5%99%C3%A1k.+Symphony+No.+9+%22From+the+New+World%22&video_ids=4vuybxJvRuA%2CEgzqu5DWwbA%2CumoSO56Nwa8%2C9x1vnGfIE8k%2CAqvaQfbAC64">38m 57s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/music/music-masterpieces-old-new/mahler-sym-2">Gustav Mahler: Symphony No. 2 – 1st Movement</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Gustav+Mahler%3A+Symphony+No.+2+%E2%80%93+1st+Movement&video_ids=VZVN-MKI5MM%2CciSWiGwESOY">26m 42s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/music/music-masterpieces-old-new/igor-stravinsky-music">Igor Stravinsky: Suite from The Firebird</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Igor+Stravinsky%3A+Suite+from+The+Firebird&video_ids=Im_XjHgQfW0">14m 51s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/music/music-masterpieces-old-new/maurice-ravel-music">Maurice Ravel: Suite No. 2 from Daphnis et Chloe</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Maurice+Ravel%3A+Suite+No.+2+from+Daphnis+et+Chloe&video_ids=qfqbomqKZqY">12m 11s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/music/music-masterpieces-old-new/shostakovich5thagain">Dmitri Shostakovich: Symphony No. 5</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Dmitri+Shostakovich%3A+Symphony+No.+5&video_ids=RccrJX9AN54%2COPQBQdLF1dM%2C1U8codGj9xM%2Cl9-YCHZ4XoU">48m 41s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/music/music-masterpieces-old-new/philip-glass-intro">Introduction to Philip Glass' "Harmonium Mountain"</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Introduction+to+Philip+Glass%27+%22Harmonium+Mountain%22&video_ids=X-F3wDDdc0I">2m 17s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/music/music-masterpieces-old-new/bernard-rands-music">Bernard Rands: Adieu</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Bernard+Rands%3A+Adieu&video_ids=WYI4u3beRdM">10m 6s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/music/music-masterpieces-old-new/augusta-read-thomas-music">Augusta Read Thomas: Of Paradise and Light</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Augusta+Read+Thomas%3A+Of+Paradise+and+Light&video_ids=7BEbEZstN_k">7m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/music/music-masterpieces-old-new/sheng">Bright Sheng: Black Swan</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Bright+Sheng%3A+Black+Swan&video_ids=Lbm4ouevlVo">10m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/music/music-masterpieces-old-new/danielpour-concerto-analysis-music">Richard Danielpour: Piano Concerto No. 4, Movement III</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Richard+Danielpour%3A+Piano+Concerto+No.+4%2C+Movement+III&video_ids=t-0Sv1lbFTA">7m 1s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/music/music-masterpieces-old-new/stockblastyetagain">David Stock: Blast!</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=David+Stock%3A+Blast%21&video_ids=WnopTqmQ1gU">6m 14s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/music/music-masterpieces-old-new/avantionmusic">Ellen Taaffe Zwilich: Avanti!</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Ellen+Taaffe+Zwilich%3A+Avanti%21&video_ids=ZGtMbTBRWAg">4m 23s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/music/music-masterpieces-old-new/schwantenerthepoetshouragain">Joseph Schwantner: The Poet's Hour</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Joseph+Schwantner%3A+The+Poet%27s+Hour&video_ids=tf4o5byJ83E">18m 14s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/music/music-instruments-orchestra">Instruments of the orchestra</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/music/music-instruments-orchestra/strings-music">Violin</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Violin&video_ids=m2DBfaL7Zo4%2CgvjFMvLVnG0%2CivbT-wvzK58%2CfJiCHUimtpc%2C35sOcVflhE0">47m 7s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/music/music-instruments-orchestra/woodwinds-music">Woodwinds</a> (8 Videos | <a href="https://www.youtube.com/watch_videos?title=Woodwinds&video_ids=h7dD-8eD5oA%2CMJIagUN4Lhw%2C_Ub-jKHFEQg%2C0lX34MHTs8E%2CoG7C7U3FhhQ%2CHALbfdYE3hM%2CxWvhFIh8AaI%2C5flvVD_tnRw">1h 11m 51s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/music/music-instruments-orchestra/brass-music">Bas</a> (5 Videos | <a href="https://www.youtube.com/watch_videos?title=Bas&video_ids=PoHKNFGbwjM%2CN1GWZbwh2jQ%2C9onC3FwiQeg%2Cp6Ovm_jaeKg%2CIOIx0T4vx8c">1h 10m 7s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/music/music-instruments-orchestra/percussion-music">Tromme</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=Tromme&video_ids=-kn_8vUT0eI%2Cr2syXj4Eb6w%2CH235paj_4PE">26m 49s</a> )</li>
</ul></li>
</ul>
<h2 id="prehistoric-art-in-europe-3-topics"><a href="https://da.khanacademy.org/humanities/prehistoric-art">Prehistoric art in Europe</a> (3 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/humanities/prehistoric-art/paleolithic-art">Paleolithic art</a> (5 Articles, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Paleolithic+art&video_ids=mJWUPBQpX1c%2CENAZqOoOVaI">9m 16s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/prehistoric-art/neolithic-art">Neolithic art</a> (8 Articles, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Neolithic+art&video_ids=bMZWsM687MY%2CeeNfDr4ojZg%2Ch0J_RnRILJ0%2Cld8kHvz1yN4%2Cd1oO1kbtt4s%2CC_OxZpaOShg">23m 57s</a> )</li>
</ul>
<h2 id="art-of-the-ancient-mediterranean-9-topics"><a href="https://da.khanacademy.org/humanities/ancient-art-civilizations">Art of the ancient Mediterranean</a> (9 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/humanities/ancient-art-civilizations/ancient-near-east1">Brought to you by Smarthistory. The Ancient Near East</a> (7 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/ancient-art-civilizations/ancient-near-east1/the-ancient-near-east-an-introduction">The Ancient Near East, an introduction</a> (3 Articles, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=The+Ancient+Near+East%2C+an+introduction&video_ids=HbZ2asfyHcA%2CeFGLaFR7le4">6m 24s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/ancient-art-civilizations/ancient-near-east1/sumerian">Sumerian</a> (9 Articles, 1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Sumerian&video_ids=DKMWS9qJ_1U%2CNok4cBt0V6w%2CHBjYUTYas9E">18m 50s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/ancient-art-civilizations/ancient-near-east1/akkadian">Akkadian</a> (1 Article, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Akkadian&video_ids=OY79AuGZDNI%2CGpZYCOFAI_4">5m 59s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/ancient-art-civilizations/ancient-near-east1/babylonian">Babylonian</a> (5 Articles, 2 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Babylonian&video_ids=ya1Io0F468c%2CG37qpVUzB1g%2CJO9YxZYd0qY%2CU2iZ83oIZH0%2CiUotrPxq2pU">25m 45s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/ancient-art-civilizations/ancient-near-east1/assyrian">Assyrian</a> (3 Articles, 1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Assyrian&video_ids=2GrvBLKaRSI%2CJ5iEY4hapMQ%2Cdxk_FtZnb7w%2Cvpe7fevbReA">23m 55s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/ancient-art-civilizations/ancient-near-east1/persian">Persian</a> (2 Articles, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Persian&video_ids=iokGgmrOj4Q%2CmjxCTApdX3Q">18m 47s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/ancient-art-civilizations/egypt-art">Brought to you by Smarthistory. Egyptian art and culture</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/ancient-art-civilizations/egypt-art/predynastic-old-kingdom">Predynastic and Old Kingdom</a> (6 Articles, 2 Exercises, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Predynastic+and+Old+Kingdom&video_ids=IKkcop-dlUY">3m 32s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/ancient-art-civilizations/egypt-art/new-kingdom">Middle Kingdom and New Kingdom</a> (6 Articles, 3 Exercises, 9 Videos | <a href="https://www.youtube.com/watch_videos?title=Middle+Kingdom+and+New+Kingdom&video_ids=uLjvEsHi_qU%2CpZOUV_rTyj0%2CKV0hmkuS5ec%2CryycDVWXDvc%2Cj55j1NZoAKk%2CcZuYdIRAIAs%2CaW0blf6lWQc%2CWceVwMdN0eE%2Cq0zlBUbcWWQ">37m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/ancient-art-civilizations/egypt-art/ptolemaic">Ptolemaic</a> (3 Articles, 1 Test, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Ptolemaic&video_ids=-MQ5dL9cQX0%2CJqgpq8vn_oU">3m 53s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/ancient-art-civilizations/aegean-art1">Brought to you by Smarthistory. Aegean art</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/ancient-art-civilizations/aegean-art1/cycladic">Cycladic</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=Cycladic&video_ids=7C7do85sfXA%2C1gb7g9w6fxo">9m 56s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/ancient-art-civilizations/aegean-art1/mycenaean">Mycenaean</a> (3 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Mycenaean&video_ids=S7HJB0PtiW0%2C1PKOiYY9SPA%2Ctu5mKn3_h7Y%2CCc9cLmgXp_A">18m 52s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/ancient-art-civilizations/greek-art">Brought to you by Smarthistory. Greek art</a> (8 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/ancient-art-civilizations/greek-art/beginners-guide-greece">A beginner's guide to ancient Greece</a> (5 Articles, 1 Exercise, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=A+beginner%27s+guide+to+ancient+Greece&video_ids=nrRJkzXl4a4%2CRuc8u1UyL7s%2CYTRctTr7MyA%2CNeujZgfq7hA%2C5coSaLCWzhA">15m 44s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/ancient-art-civilizations/greek-art/greek-pottery">Pottery</a> (3 Articles, 3 Exercises, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Pottery&video_ids=FpLPx_Akl7Y%2CUwpdiq9mYME%2CT9TAY70EEQk%2CWU1AGu_C6bQ%2Ck2fdtepbkz8%2CFzorm4Q_vuk%2CtTF5ZY6aitg%2CS3TlDyT2lyg">43m 51s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/ancient-art-civilizations/greek-art/daedalic-archaic">Daedalic and Archaic</a> (3 Exercises, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Daedalic+and+Archaic&video_ids=XoEVvoc2PlM%2CAx8vcxRtmHY%2CZbZ-t1FmnKY%2Cv1_pCZBVWuY%2CRjpT4Apgda8%2C_tNnI_w6TTQ%2CAAuCHWr8A_o%2CKxmRlLEEJ5o">46m 36s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/ancient-art-civilizations/greek-art/early-classical">Early classical</a> (1 Article, 1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Early+classical&video_ids=pdqOIg_QYSc%2CQ5IWDhXtsmE%2CA-Q79HlORtM%2Czqb4Zvb5PNA">29m 18s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/ancient-art-civilizations/greek-art/classical">klassisk</a> (3 Articles, 4 Exercises, 12 Videos | <a href="https://www.youtube.com/watch_videos?title=klassisk&video_ids=EAR9RAMg9NY%2COhJKDqZgNXg%2CTYXCcTchLnI%2CtWDflkBZC6U%2CuF_W0jQ7bi0%2CQRH105_ztAw%2CzU9qSQi1E68%2CuwDHi2KNM4s%2C3ebYvMC12HI%2CX872rmThCF8%2CB4HXrb8cPQI%2CYUzsxLi43gE">1h 25m 14s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/ancient-art-civilizations/greek-art/late-classical">Late classical (4th century)</a> (4 Videos | <a href="https://www.youtube.com/watch_videos?title=Late+classical+%284th+century%29&video_ids=nI07zaDpnJU%2CT-Yv4mp5yp8%2CREeBUSYRzRo%2Ckxiaae0HIBs">25m 24s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/ancient-art-civilizations/greek-art/hellenistic">Hellenistic</a> (6 Exercises, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Hellenistic&video_ids=KQ63wu7lsXo%2Cin6iDVnTw-k%2C_rdhFaROsVA%2CTPM1LuW3Y5w%2CL3SIooVHV8E%2CFvsSPJoJB3k%2C51UA1T89MzU%2CC3cwGCezgSQ">38m 47s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/ancient-art-civilizations/nabataean">Brought to you by Smarthistory. Nabataean</a> (3 Articles, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Brought+to+you+by+Smarthistory.+Nabataean&video_ids=WZgYhVgWR8g">3m 50s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/ancient-art-civilizations/etruscan">Etruscan</a> (11 Articles, 1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Etruscan&video_ids=GLgrt_4WnMY%2CXmirNCA_Lj4%2CYheIckLuV7c">10m 50s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/ancient-art-civilizations/roman">Brought to you by Smarthistory. Ancient Roman art</a> (7 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/ancient-art-civilizations/roman/beginners-guide-rome">A beginner's guide to ancient Rome</a> (12 Articles, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=A+beginner%27s+guide+to+ancient+Rome&video_ids=f8hqR2O8HiM%2CgciDo_svj-A%2CvgV1yzP0ZTI%2CZ1RpVPbHgzU">28m 43s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/ancient-art-civilizations/roman/wall-painting">Wall painting</a> (3 Articles, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Wall+painting&video_ids=PPyqEsyVmIQ%2CSEzDiejb1a0">13m 17s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/ancient-art-civilizations/roman/roman-republic">Republic</a> (7 Articles, 1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Republic&video_ids=5u1Nrmdyd-A%2Ch-qUlzA70nY%2CT0fq3XFfxrY">10m 2s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/ancient-art-civilizations/roman/early-empire">Early empire</a> (8 Articles, 4 Exercises, 10 Videos | <a href="https://www.youtube.com/watch_videos?title=Early+empire&video_ids=3i8iou6tXqY%2CkiMNT18c4Ko%2CxgTpGASqrKY%2CmZNePcNPEBk%2CkyQQcDBJvHc%2C9wguQaBYKec%2C2Pz_p8Tf24g%2Cy-IAOPxkNWo%2CMFt3tHNevJg%2Cz83guai4S68">1h 33s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/ancient-art-civilizations/roman/middle-empire">Middle empire</a> (4 Articles, 3 Exercises, 10 Videos | <a href="https://www.youtube.com/watch_videos?title=Middle+empire&video_ids=KaY8zqYfQI0%2CNu_6X04EGHk%2Ct6npEWNrHGM%2ChGMwMlksZlM%2CL5OkFR8GScU%2CdCSH7ok7ejI%2CwE7_9Xce6LM%2CD4nK5uXuPXM%2CYG6b2jADjtc%2Cm4raOIxsbaU">51m 56s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/ancient-art-civilizations/roman/late-empire">Late empire</a> (1 Article, 2 Exercises, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Late+empire&video_ids=QDPSayuUNl0%2CDui5V8TZYbE%2CtZQJgqBcyw4%2CMuD06cnjtAM%2CvvDcrzeBRyM%2Cca5bG939xL8">37m 6s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/ancient-art-civilizations/palmyra">Brought to you by Smarthistory. The art of ancient Palmyra</a> (3 Articles, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Brought+to+you+by+Smarthistory.+The+art+of+ancient+Palmyra&video_ids=8-882ia921Y">5m 58s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/ancient-art-civilizations/judaism-art">Brought to you by Smarthistory. Judaism and art</a> (10 Articles, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Brought+to+you+by+Smarthistory.+Judaism+and+art&video_ids=2Pz_p8Tf24g%2Cm-Ox1qaPXew%2CN1s7RtMg2Co">15m 29s</a> )</li>
</ul>
<h2 id="brought-to-you-by-smarthistory-medieval-europe-9-topics"><a href="https://da.khanacademy.org/humanities/medieval-world">Brought to you by Smarthistory. Medieval Europe</a> (9 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/humanities/medieval-world/medieval-europe">Brought to you by Smarthistory. A beginner's guide to medieval Europe</a> (7 Articles, 1 Exercise, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Brought+to+you+by+Smarthistory.+A+beginner%27s+guide+to+medieval+Europe&video_ids=nuNfdHNTv9o%2Ce_Us5TGPFe0%2Ch2CcewghKoo%2C6Og8EvH_2mY%2CN1s7RtMg2Co%2CT7j0V1AHvBU">25m 45s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/medieval-world/medieval-book">Brought to you by Smarthistory. Books and the dissemination of knowledge in the Middle Ages</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/medieval-world/medieval-book/making-medieval-book">Making the medieval book</a> (10 Articles, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Making+the+medieval+book&video_ids=lJvXorny8xw%2CNnjN9GGfV6E%2CokxU0GB2eCM%2CnuNfdHNTv9o">21m 5s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/medieval-world/medieval-book/using-medieval-book">Using the medieval book</a> (8 Articles, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Using+the+medieval+book&video_ids=h2CcewghKoo">4m 30s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/medieval-world/early-christian1">Early Christian</a> (10 Articles, 4 Exercises, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Early+Christian&video_ids=z_5AAk1jABI%2Cx4WzBbdG9lU%2CAWBHbrAFDI0%2CUjX4ExCixWY%2CHjBfBB9r2QM%2CS2P4I_hFnFI%2CogrRKL30iJ8%2Cyvnr0wnmoGY">54m 18s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/medieval-world/byzantine1">Byzantine (late Roman Empire)</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/medieval-world/byzantine1/constantinople-east">Constantinople and the East</a> (3 Articles, 1 Exercise, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Constantinople+and+the+East&video_ids=XfpusWEd2jE%2CEmQ1TdoT-zE%2C2JxIjfqKTLs%2C9lVE3trJf1A%2Cr6383ZDXB0Q%2Cf7J0WQsajX8%2CZH0P0uBY3PY">44m 29s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/medieval-world/byzantine1/venice-ravenna">Venice and Ravenna</a> (1 Article, 1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Venice+and+Ravenna&video_ids=It3i-dKusIM%2CHjwELgIh_qc%2C_fAgls5bGXs%2C1H7u3jVQ0zg">27m 35s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/medieval-world/early-medieval">Early medieval</a> (10 Articles, 4 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Early+medieval&video_ids=jbn9_IKA3ow%2C0P1m1afVfFI%2CTYds0dsratI%2Ch8hQIRmrEnM">28m 24s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/medieval-world/carolingian1">Carolingian</a> (3 Articles, 2 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Carolingian&video_ids=j4PI8dEWTGE%2CpyDPJENZOs0%2CeqC8gVxxB-s%2Cu5vM4rtUSQg%2C6FL81EVJTUE">33m 58s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/medieval-world/ottonian1">Ottonian</a> (3 Articles, 2 Exercises, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Ottonian&video_ids=__pl88NO9Jw">4m 23s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/medieval-world/romanesque1">Romansk</a> (15 Articles, 2 Exercises, 10 Videos | <a href="https://www.youtube.com/watch_videos?title=Romansk&video_ids=VtSjcxdmboM%2CF8OPQ_28mdo%2CLtGoBZ4D4_E%2CwlQCKsXEWS4%2CPATkTJhAUhM%2CDnxm4UQPDTo%2CBBFUTbKx3qY%2ChPYOMKQlU1g%2CKwYhMXjMlvc%2CZXJMwIDx29Q">55m 33s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/medieval-world/gothic1">Gothic</a> (12 Articles, 5 Exercises, 1 Test, 14 Videos | <a href="https://www.youtube.com/watch_videos?title=Gothic&video_ids=2EciWH-1ya4%2CJk3VsinLgvc%2CHijg5XG6yg8%2C9STNgMoRXHM%2CxsHYPNYmJCs%2CvigjJih8Pn4%2CH4zXQrBeJU8%2CHc96IQmEOIY%2CTuA00wpXaYA%2CYCKzhNQISZo%2CZ2Zmmx0u-gE%2CBPAsaeCbFZQ%2Cvsjl4aE2VkA%2CabKtscO6lMU">2h 3m 7s</a> )</li>
</ul>
<h2 id="kunst-fra-den-islamiske-verden-5-topics"><a href="https://da.khanacademy.org/humanities/art-islam">Kunst fra den islamiske verden</a> (5 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/humanities/art-islam/islamic-art-early">Early period</a> (5 Articles, 2 Exercises, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Early+period&video_ids=kuTKfmgzGYI">2m 59s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-islam/islamic-art-medieval">Medieval period</a> (9 Articles, 3 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Medieval+period&video_ids=4S9Bqo_LX7k%2CJOkEfbaaK-o%2C2IT6FcvBp_w%2ChXNFjOhrihI">19m 16s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-islam/islamic-art-late-period">Arts of the Islamic world: late period</a> (15 Articles, 1 Exercise, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Arts+of+the+Islamic+world%3A+late+period&video_ids=r6383ZDXB0Q%2CQ48ddBmCjQA%2CAnab9vKI7i8%2Cv8WMx_TmEyQ%2CjWFcI44eRN8%2C5YEGpb7tXOo%2Cn9C7sMb7MmI%2CL155lNA9Y0Y">42m 23s</a> )</li>
</ul>
<h2 id="renaissance-and-reformation-in-europe-8-topics"><a href="https://da.khanacademy.org/humanities/renaissance-reformation">Renaissance and Reformation in Europe</a> (8 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/humanities/renaissance-reformation/late-gothic-italy">Late Gothic art in Italy</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/renaissance-reformation/late-gothic-italy/beginners-guide-late-gothic">Late Gothic art, an introduction</a> (2 Articles, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Late+Gothic+art%2C+an+introduction&video_ids=WVyusmjiTXI">10m 23s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/renaissance-reformation/late-gothic-italy/florence-late-gothic">Florence, the Late Gothic</a> (3 Articles, 3 Exercises, 10 Videos | <a href="https://www.youtube.com/watch_videos?title=Florence%2C+the+Late+Gothic&video_ids=_alU-o_qDt8%2CP9s3YA-glNk%2CDKnFvXmUlOI%2CMQct5EFQ9x8%2C47QgqdeSi0U%2CI356lV1v8Bc%2CRbBQN0Wt_wY%2C6z_Kjsn8VLI%2Cbe9rz_HOnXI%2CncgAfzRSJrI">1h 19s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/renaissance-reformation/late-gothic-italy/siena-late-gothic">Siena, the Late Gothic</a> (1 Article, 5 Exercises, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Siena%2C+the+Late+Gothic&video_ids=2fijnNzktDI%2Cw6Tgu14VSLY%2C1JL5ZR-ocOs%2CPu1WCHsYfKQ%2Cjk3wNadYA7k%2C_lzdhIHLwcQ%2CZ29bpAW1AUM%2C7PsgPJoGWig">40m 2s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/renaissance-reformation/late-gothic-italy/pisa-rome">Pisa and Rome, the Late Gothic</a> (1 Test, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Pisa+and+Rome%2C+the+Late+Gothic&video_ids=DXEG8l1FRRk%2CpwHzN9aV1WY">17m 47s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/renaissance-reformation/early-renaissance1">Early Renaissance</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/renaissance-reformation/early-renaissance1/beginners-renaissance-florence">A beginner's guide to Renaissance Florence</a> (4 Articles, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=A+beginner%27s+guide+to+Renaissance+Florence&video_ids=6YiL9MNyGKE%2C1iTC9cBk6Ac%2CbkNMM8uiMww%2CeOksHhQ8TLM">35m 53s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/renaissance-reformation/early-renaissance1/sculpture-architecture-florence">Sculpture and architecture in Florence</a> (3 Articles, 6 Exercises, 16 Videos | <a href="https://www.youtube.com/watch_videos?title=Sculpture+and+architecture+in+Florence&video_ids=uvgBSJPiQ8Y%2CfWkewBPMKEk%2CjYZ71Zma9Gc%2CTQ8F_yPwqzA%2CLKv0hRyiGCY%2CggpKKlsaeac%2CLPZ5C3CgavE%2C-V51ZjxFeH4%2CA8GQfq3U96M%2CJ9_ouZpBknM%2Cq3N1IqBoKSo%2C6kUUJJV_MNA%2C6dWHPHELCKU%2C-UZuG3XpAd0%2CMHuUBkyF8KI%2C1wDFFqcXZOo">1h 21m 59s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/renaissance-reformation/early-renaissance1/painting-in-florence">Painting in Florence</a> (12 Articles, 8 Exercises, 18 Videos | <a href="https://www.youtube.com/watch_videos?title=Painting+in+Florence&video_ids=4kbv2Gaw-9U%2C4xFs8F7B2E4%2CKl4Dcj9o570%2CoDPNSPbjzQ8%2ChMzFbORRiss%2C6lH7zWK_SAg%2C3B-V_pG3HPQ%2Cp8Vasl3L5p8%2CLy2-n1KqNko%2C049sSl4lEuk%2Cwf8L9AZa2H4%2C-yfjQGg-aMA%2CqwZn852brII%2CK6PBfbkMzFU%2Cqv2K1yk0LCE%2CXIkryXkz8a4%2C5wptm7lPZyE%2ChgMqBYJ1WPI">1h 37m 36s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/renaissance-reformation/early-renaissance1/venice-early-ren">Venice</a> (5 Articles, 1 Exercise, 9 Videos | <a href="https://www.youtube.com/watch_videos?title=Venice&video_ids=lG6NWLxDbNo%2CSTs6h1qUSGs%2CPxCTyVQMVbs%2CNCu83PcEQ1U%2CrTey6h4BQhc%2CwIbpSJdSz90%2CDu-0kAn4u6w%2CGN0P5RkQAow%2CXGZvvQ8BmjY">48m 16s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/renaissance-reformation/high-ren-florence-rome">High Renaissance in Florence and Rome</a> (7 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/renaissance-reformation/high-ren-florence-rome/beginners-guide-high-ren">A beginner's guide to the High Renaissance</a> (4 Articles, 1 Video | <a href="https://www.youtube.com/watch_videos?title=A+beginner%27s+guide+to+the+High+Renaissance&video_ids=3YMEIjHl9og">4m 21s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/renaissance-reformation/high-ren-florence-rome/leonardo-da-vinci">Leonardo da Vinci</a> (5 Articles, 1 Exercise, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Leonardo+da+Vinci&video_ids=URcpchlTNBY%2CJ9xUL5Yi_8M%2C94xKRkCHlv0%2CQxNqWZPzsGw%2CL4F2lgyi7FA%2CiV6_wTrkd70%2CB06PK4yZwvY">36m 57s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/renaissance-reformation/high-ren-florence-rome/michelangelo">Michelangelo</a> (7 Articles, 1 Exercise, 10 Videos | <a href="https://www.youtube.com/watch_videos?title=Michelangelo&video_ids=JbWGusfynCw%2C5LBI-otSbJM%2C-oXAekrYytA%2CPWUuGDovHEI%2Ch44bnIGogu8%2CPEE3B8Fsuc0%2CICQCUTiC0mI%2Cc2MuTvQM61Y%2C5gVlGU4zUeY%2CtUOKkeEOkXk">54m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/renaissance-reformation/high-ren-florence-rome/high-renaissance1">Raphael</a> (2 Articles, 1 Exercise, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Raphael&video_ids=H_Guv2Mk1E0%2CjHN0BfowL7s%2Csv9CHsd546Q%2CSmd-q44ysoM%2Cln9VIRiocps%2Cw6DDMwsyQaA%2CQEA30X4ysvg">37m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/renaissance-reformation/high-ren-florence-rome/bramante">Bramante</a> (1 Article, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Bramante&video_ids=QXIXA4_5ehw%2CR5UK0dEFSoM">10m 29s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/renaissance-reformation/high-ren-florence-rome/pontormo">Pontormo</a> (4 Articles, 2 Exercises, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Pontormo&video_ids=ABhqENOxSrU%2CsuIUUGdNyWk%2CpfnX-zgXHBM%2C2lXL4HscWGI%2C6w2E8G0sEPc%2CfpgvjMKCyAA%2C4mpFcaeElCs%2CQ1j-gPKAcDA">45m 59s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/renaissance-reformation/high-ren-florence-rome/late-renaissance-venice">Late Renaissance in Venice</a> (6 Articles, 2 Exercises, 1 Test, 19 Videos | <a href="https://www.youtube.com/watch_videos?title=Late+Renaissance+in+Venice&video_ids=LFA_qmGuY2A%2CRD_Mh_SDz3s%2CM0Nf2Osgwkc%2CMx59hYSFCeA%2CRw8XE6hvHBo%2C2MzPOrcsWB0%2C-ngmZo-dvy4%2CbYyxwxEqTQo%2CqD6ct0VS15c%2CZVUH4-Wsdwg%2CiNW6SYDmkDI%2ChrBMFNvvOBI%2CYnYknwUqaCM%2CPI9DjVjeV2A%2C9g-r2007Y8c%2Ce41Wh7jhoxc%2Cx3GFqNYaVRE%2CBgrwohxf9Ws%2CYhsjS5CtCTE">1h 30m 21s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/renaissance-reformation/northern-renaissance1">Northern Renaissance</a> (11 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/renaissance-reformation/northern-renaissance1/sluter">Claus Sluter and Claus de Werve</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Claus+Sluter+and+Claus+de+Werve&video_ids=xdIVZrr_8tI%2CWdAFrBpP1Bw">8m 15s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/renaissance-reformation/northern-renaissance1/limbourg-brothers">The Limbourg Brothers</a> (1 Article, 1 Video | <a href="https://www.youtube.com/watch_videos?title=The+Limbourg+Brothers&video_ids=1_ZAunahU7c">2m 55s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/renaissance-reformation/northern-renaissance1/campin">Campin</a> (1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Campin&video_ids=Axox0C6aoTo%2Cq1X0Lj7YEMs">14m 56s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/renaissance-reformation/northern-renaissance1/burgundy-netherlands">Van Eyck</a> (2 Articles, 2 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Van+Eyck&video_ids=udgNvPpDb2I%2CJVhwinCiELI%2CB9vXathZikM%2CRkUdm-GiSVc%2C9ODhKqFaugQ">27m 18s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/renaissance-reformation/northern-renaissance1/christus">Petrus c</a> (1 Article, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Petrus+c&video_ids=2b7Qv5dtdf8%2CbcrsyGxUbkA">8m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/renaissance-reformation/northern-renaissance1/weyden">Van der Weyden</a> (1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Van+der+Weyden&video_ids=SLf_oAkngP4%2CHhN5Zkbpt_k%2C3npb3UZ0b9o%2CigTCJ7TCrOo">24m 43s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/renaissance-reformation/northern-renaissance1/vandergoes">Van der Goes</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Van+der+Goes&video_ids=B0eHEo-f6fc">3m 48s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/renaissance-reformation/northern-renaissance1/quarton">Quarton</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Quarton&video_ids=_0YdFG17fQc">5m 51s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/renaissance-reformation/northern-renaissance1/reliquaries-manuscripts-tapestries">Reliquaries, manuscripts and tapestries</a> (1 Article, 1 Test, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Reliquaries%2C+manuscripts+and+tapestries&video_ids=0Xxm2SGuGTk%2C26WASJHF46A">8m 49s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/renaissance-reformation/northern">Northern Renaissance: the sixteenth century</a> (9 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/renaissance-reformation/northern/england-france-tyrol">England, France and Tyrol</a> (1 Article, 1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=England%2C+France+and+Tyrol&video_ids=KdDIIYqXmjw">6m 15s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/renaissance-reformation/northern/hieronymus-bosch">Hieronymus Bosch</a> (1 Article, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Hieronymus+Bosch&video_ids=Ea6qS3nuvng">8m 52s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/renaissance-reformation/northern/durer">Albrecht Dürer</a> (6 Articles, 2 Exercises, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Albrecht+D%C3%BCrer&video_ids=_6uAjslPNuU%2COQEWArXaCeg%2CZoiY6ZLEKaY%2CznVEFfIdo1o%2C12JdSg4pXIs%2Cz11pYvaLctY%2CWyNqLrb0LRE%2CC3DmiEsvs6U">30m 53s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/renaissance-reformation/northern/antwerp-bruges">Antwerp and Bruges</a> (2 Articles, 1 Exercise, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Antwerp+and+Bruges&video_ids=9fiJ7mSzamw%2Cq8cYGh-K6Ok%2CtdEF5cQzWms%2CmSPumIx85l8%2CK6BKDveCd9w%2CPj3HdzOR2pY%2CG1Hs2GZKOhw%2CVEv7Mmx1V4w">31m 8s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/renaissance-reformation/northern/cranach-altdorfer">Cranach and Altdorfer</a> (1 Article, 1 Exercise, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Cranach+and+Altdorfer&video_ids=g4XZGhnFOwM%2Cbaifq1b1-i4%2CjnxA293u8cs%2CK0qH8EwiH2g">16m 57s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/renaissance-reformation/northern/holbein">Hans Holbein</a> (1 Article, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Hans+Holbein&video_ids=PQZUIGzinZA%2CkK38qqvLQ2I%2ChJOU3EK085M%2C-wTI7EC-i30">18m 17s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/renaissance-reformation/northern/england">England</a> (2 Videos | <a href="https://www.youtube.com/watch_videos?title=England&video_ids=katx69CGBwo%2CwLpOw8M7ucE">8m 47s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/renaissance-reformation/renaissance-in-spain">Renaissance in Spain</a> (4 Articles, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Renaissance+in+Spain&video_ids=_cZSHQWFZG8%2C3_-hYeuJTzQ">10m 55s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/renaissance-reformation/protestant-reformation1">The Protestant Reformation</a> (2 Articles, 2 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=The+Protestant+Reformation&video_ids=qTGJMnTWrrw%2CdSOnLt3YVl0%2CF6ZsIyKHTNI%2CC6PUlTYnxLY">37m 30s</a> )</li>
</ul>
<h2 id="barok-rokoko-og-nyklassicistisk-kunst-i-europa-4-topics"><a href="https://da.khanacademy.org/humanities/monarchy-enlightenment">Barok, Rokoko og Nyklassicistisk kunst i Europa</a> (4 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/humanities/monarchy-enlightenment/baroque-art1">Baroque art</a> (7 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/monarchy-enlightenment/baroque-art1/beginners-guide-baroque1">A beginner's guide to Baroque art</a> (2 Articles, 1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=A+beginner%27s+guide+to+Baroque+art&video_ids=EFHPAbHaoqk">9m 31s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/monarchy-enlightenment/baroque-art1/baroque-italy">Italien</a> (7 Articles, 4 Exercises, 22 Videos | <a href="https://www.youtube.com/watch_videos?title=Italien&video_ids=QKfmTQi2Yq0%2C0uEtvaUsI_w%2CbdnPdZMZ9PU%2CEFsaaK1w2Ao%2CW3a2QIm3cXM%2CRKcJvjP9zgY%2Cz-yC6Owcg7g%2C9UT43MHdTIg%2CEhEg8Wx_NA8%2CWm-akMcsHEc%2CJrTsNuUQXzU%2C-yxSjUvh0g8%2CJftEcBnopPI%2CcLICU2cDHrs%2CasLQmxK7ExY%2CTkH-yjJ35vU%2CBHFuLS9NW6s%2CEczhLjFtyio%2Caj2el_owSg4%2CA3vkqYgJ93c%2C7ym7FWyCzKI%2CFgVkgR1bXvY">1h 52m 40s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/monarchy-enlightenment/baroque-art1/flanders-1">Art History: Flanders</a> (4 Articles, 1 Exercise, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Art+History%3A+Flanders&video_ids=qyQGBJIYC5s%2Ct9_lemSlr1o%2CjWQ4V43TJ6o%2CfbwW9mHFcgk%2CK9iMsmhBOjk%2CSHZojeuDLjM">31m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/monarchy-enlightenment/baroque-art1/holland">Art History: Holland</a> (14 Articles, 2 Exercises, 19 Videos | <a href="https://www.youtube.com/watch_videos?title=Art+History%3A+Holland&video_ids=TOoldrJqxZA%2CiQ5uG6ryCa4%2C9fEublFSTOg%2CDhefUahS55o%2C0D_rc92g27w%2CB2dCeTPDEKY%2ClF-7leHMUbw%2CwsL4Uh0BrQw%2CrFMFH8Nf0Zw%2Cxt2M4HTw29A%2C5P3ap3rDmx4%2CuvA6YY4yHtM%2C_38xl7p4VaM%2CWO1I1dN0DaA%2CM-jLsoA1i_o%2CmVkAvYhgW8c%2CL7P3kBJ3scg%2CEK-h6cZCXrs%2CWOnOq9YIrWI">1h 21m 50s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/monarchy-enlightenment/baroque-art1/spain">Art History: Spain</a> (6 Articles, 2 Exercises, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Art+History%3A+Spain&video_ids=dNoeLF6I52s%2CqoHva5i85Qo%2CIiTtGENiVOA%2Cxz5DhwMsS1A%2C3LoTODQJ7j8%2C9Wb-T1F033Q">35m 5s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/monarchy-enlightenment/baroque-art1/france">Art History: France</a> (3 Articles, 2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Art+History%3A+France&video_ids=dgsogHXtwyA%2CH3uBAVI4xC4%2CZSh1ksh1iO4">10m 21s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/monarchy-enlightenment/rococo">Art History: Rococo</a> (6 Articles, 3 Exercises, 9 Videos | <a href="https://www.youtube.com/watch_videos?title=Art+History%3A+Rococo&video_ids=8ZlH2JswO3Q%2ClnJRkY0mZh4%2CkboppTV-SqM%2C6V9x0d5wRpI%2CEblnaLMjdNg%2Cm5OxVgH-T1I%2C9JcpyE01Yzc%2CrVI5Sjm0xKI%2Cw1dqzlTTm0E">30m 2s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/monarchy-enlightenment/neo-classicism">Art History: Neo-Classicism</a> (11 Articles, 2 Exercises, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Art+History%3A+Neo-Classicism&video_ids=qfAga9DAuU4%2CUQiNvDOJi0c%2Cn_4UNkeqk8s%2CHw2_hv439Fg%2CovOKjwLE4qA%2C2B68DWcOLj0">27m 8s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/monarchy-enlightenment/britain-18c">British art in the 18th century</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/monarchy-enlightenment/britain-18c/britain-ageof-revolution">Britain in the age of revolution</a> (3 Articles, 2 Exercises, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Britain+in+the+age+of+revolution&video_ids=mFJ9tHJA2Sw%2CNX3M0NTYTYg%2CBmsejntbXRw%2CSRg_XB83-tw%2Cg0iKG-ieZ2s%2CRb7NsHUw384%2CLkjyVZMyMaY">37m 43s</a> )</li>
</ul></li>
</ul>
<h2 id="art-of-the-americas-8-topics"><a href="https://da.khanacademy.org/humanities/art-americas">Art of the Americas</a> (8 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/humanities/art-americas/early-cultures">Early cultures in the Americas</a> (12 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/art-americas/early-cultures/moundbuilders">Moundbuilders</a> (2 Articles, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Moundbuilders&video_ids=Auczc5MpYtc">7m 4s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-americas/early-cultures/tlatilco">Tlatilco</a> (1 Article, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Tlatilco&video_ids=Q3DpCMAyWyw">5m 7s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-americas/early-cultures/olmec">Olmec</a> (4 Articles, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Olmec&video_ids=D9uJxXnDTU8%2CA00qfA9bE84%2Cqfz1k_yU3d4">11m 9s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-americas/early-cultures/teotihuacan">Teotihuacan</a> (1 Article, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Teotihuacan&video_ids=taCxra5ezKg">5m 1s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-americas/early-cultures/classic-veracruz">Classic Veracruz culture</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Classic+Veracruz+culture&video_ids=4dpE80AU-oI">7m 13s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-americas/early-cultures/maya">Maya</a> (8 Articles, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Maya&video_ids=yTA8PKdNx78%2CqxvFW5mraHY%2C9jjgtZlDd_E">19m 1s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-americas/early-cultures/ancestral-puebloan">Ancestral Puebloan (formerly Anasazi)</a> (2 Articles, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Ancestral+Puebloan+%28formerly+Anasazi%29&video_ids=ifY8gBIonAc">6m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-americas/early-cultures/aztec-mexica">Aztec (Mexica)</a> (10 Articles, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Aztec+%28Mexica%29&video_ids=DRlE85xYqzE%2C86zSgZWVkVk%2CJN-_3qUutIU%2CZn03u3-U1fk%2CZ1rqLNz8Zo0%2C2RTe-3aYv1c%2CQ_Lp76ZkDE0">38m 2s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/art-americas/south-america-early">A beginner's guide</a> (10 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/art-americas/south-america-early/cupisnique">cupisnique</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=cupisnique&video_ids=EjoIS4F0Ca8">4m 51s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-americas/south-america-early/chavin">Chavín culture</a> (2 Articles, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Chav%C3%ADn+culture&video_ids=hznDFQT3H5c%2CW_0CEy8ui1w">1m 37s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-americas/south-america-early/moche-culture">Moche culture</a> (1 Article, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Moche+culture&video_ids=MKBJZMd08M8%2CWSAFCL91OrU">12m 13s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-americas/south-america-early/sican">Sicán culture</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Sic%C3%A1n+culture&video_ids=x1LinuzLQVk">8m 36s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-americas/south-america-early/inca-art">Inca</a> (8 Articles, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Inca&video_ids=oT9NdKpUwdU">5m 44s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-americas/south-america-early/ancient-colombia">Ancient Colombian chiefdoms</a> (3 Articles, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Ancient+Colombian+chiefdoms&video_ids=LSG6w2Np_rk%2C5M0vOHFm3Ww%2Cv2Tz76UkTkY">12m 58s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-americas/south-america-early/amazonian-people">Amazonian peoples</a> (1 Article, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Amazonian+peoples&video_ids=irYfbY_jryY%2Cd7b38SLI6nc">10m 34s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/art-americas/new-spain">Spanish colonies in the Americas</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/art-americas/new-spain/viceroyalty-new-spain">Viceroyalty of New Spain</a> (16 Articles, 9 Videos | <a href="https://www.youtube.com/watch_videos?title=Viceroyalty+of+New+Spain&video_ids=V8vsNprk4vc%2CYHgWhOr25zE%2CQ3U8ez2BpUM%2CimkOrmHtSJ0%2CVbJBulu1X0Y%2CjT0hslicvFc%2C3LoTODQJ7j8%2COpdr_qnGPcw%2CbRI-f8LFfh0">50m 7s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-americas/new-spain/viceroyalty-peru">Viceroyalty of Peru</a> (5 Articles, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Viceroyalty+of+Peru&video_ids=PpXFwaEgCi8">8m 35s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/art-americas/native-north-america">Native American art after 1600</a> (7 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/art-americas/native-north-america/native-american-east">Øst</a> (3 Articles, 1 Video | <a href="https://www.youtube.com/watch_videos?title=%C3%98st&video_ids=RKh6VxDULLA">6m 51s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-americas/native-north-america/native-american-west">Vest</a> (3 Articles, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Vest&video_ids=Cdwrl6wSKK0%2CcJkhGCwuRMg%2C6zPr5UL-vXQ%2COtDT_WcIEgo">22m 4s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-americas/native-north-america/native-american-southwest">Sydvest</a> (3 Articles, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Sydvest&video_ids=rlmSTDhvCvU">6m 34s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-americas/native-north-america/native-american-contemporary-art">Contemporary art</a> (2 Articles, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Contemporary+art&video_ids=_GfSvZDHxgU%2CskHR8wrO490">13m 1s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/art-americas/british-colonies">British Colonies to the Early Republic</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/art-americas/british-colonies/colonial-period">Colonial period</a> (8 Articles, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Colonial+period&video_ids=-XmziEpUYtI%2C60u_ctp6UIw%2CZLautKzkMc0">14m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-americas/british-colonies/early-republic">Early Republic</a> (8 Articles, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Early+Republic&video_ids=i2AryWOiJqc%2CVm1_vSny4BY">9m 29s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/art-americas/us-art-19c">Art of the United States in the 19th century</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/art-americas/us-art-19c/romanticism-us">Romanticism in the United States</a> (4 Articles, 2 Exercises, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Romanticism+in+the+United+States&video_ids=H95wT4wT95w%2Cy5iMAMU53Ns%2CdBrKCtx4TfA%2CRQ0855yB2ZM%2CHLdKWno6YCs%2CnCqW2hLWyUc%2Cascpn9AjCIk%2CBjlOZ2a8RGM">42m 46s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-americas/us-art-19c/realism-us">Realism in the United States</a> (6 Articles, 10 Videos | <a href="https://www.youtube.com/watch_videos?title=Realism+in+the+United+States&video_ids=nOcxg0Khads%2CkRSalPQepTo%2C5oUfPT8LJxI%2C1LrHCPUeACE%2CD7o-kAP8PqA%2CxerjJiBUKxw%2CWV3MXLAfIi4%2Cz9s_uJlG3b8%2CxGTTT6nG3Ns%2CpceF0jIyxk4">54m 2s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-americas/us-art-19c/civil-war-gilded-age">America: Civil War to the Gilded Age</a> (5 Articles, 1 Video | <a href="https://www.youtube.com/watch_videos?title=America%3A+Civil+War+to+the+Gilded+Age&video_ids=-bnCHws9qmw">4m 16s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-americas/us-art-19c/us-19c-arch-sculp-photo">19th century American sculpture, architecture and photography</a> (7 Articles, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=19th+century+American+sculpture%2C+architecture+and+photography&video_ids=Ct9iepqScxk%2CCWo2pmUk3RU%2CgDNvhbCtNU0%2C-hxHPhEXFr8%2CpF3Cjcnnx5k%2Cz0E7fGFcCZY%2CcgZHD9We0mY">40m 54s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/art-americas/latin-america-after-independence">Latin America after independence</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/art-americas/latin-america-after-independence/art-of-mexico-in-the-18th-and-19th-centuries">Art of Mexico in the 18th and 19th centuries</a> (4 Articles, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Art+of+Mexico+in+the+18th+and+19th+centuries&video_ids=abc1Y4X-id8">5m 25s</a> )</li>
</ul></li>
</ul>
<h2 id="kunst-fra-det-19-århundredes-europa-7-topics"><a href="https://da.khanacademy.org/humanities/becoming-modern">Kunst fra det 19. århundredes Europa</a> (7 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/humanities/becoming-modern/intro-becoming-modern">Introduction-becoming-modern</a> (2 Articles, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Introduction-becoming-modern&video_ids=AbUkraQIYv8">5m 49s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/becoming-modern/romanticism">Romanticism</a> (6 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/becoming-modern/romanticism/romanticism-in-france">Romanticism in France</a> (9 Articles, 5 Exercises, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Romanticism+in+France&video_ids=Rx1HtFtc1cM%2ClSV-J1JHDFY%2CsQpAYcxSVEg%2CCXsstWSXh68%2CjlVBaqyGKMs%2CCyNjK7dv-IM%2CiDBJK0y8vb0%2C6skizQlC-uU">34m 34s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/becoming-modern/romanticism/romanticism-in-spain">Romanticism in Spain</a> (3 Articles, 2 Exercises, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Romanticism+in+Spain&video_ids=TlvXGblFsv8%2C_QM-DfhrNv8%2C3Lawz8TcPig">17m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/becoming-modern/romanticism/romanticism-in-england">England (Blake and Fuseli)</a> (3 Articles, 1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=England+%28Blake+and+Fuseli%29&video_ids=DMxaK0xjIdE%2C8pSBIydZULc%2C31_7PcU9YFc">11m 9s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/becoming-modern/romanticism/england-constable-turner">England (Constable, Turner, Martin and Nash)</a> (12 Articles, 3 Exercises, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=England+%28Constable%2C+Turner%2C+Martin+and+Nash%29&video_ids=PVmczLwlU00%2CMxyQgpgc7Ds%2CNoCW80MEGXY%2CpPsqUFuysbU%2C0C2Ucb69eOM">21m 31s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/becoming-modern/romanticism/romanticism-in-germany">Romanticism in Germany</a> (1 Article, 3 Exercises, 1 Test, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Romanticism+in+Germany&video_ids=XkcHktjqI1s%2C_DgeQ7rpIHI%2CYlhDUSntCI4%2CeE7BR9HCffk">17m</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/becoming-modern/early-photography">Early photography</a> (4 Articles, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Early+photography&video_ids=N0Ambe4FwQk%2CMiAhPIUno1o%2Cz_guKLKwjgY">19m 32s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/becoming-modern/victorian-art-architecture">Victorian art and architecture</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/becoming-modern/victorian-art-architecture/early-victorian">Early Victorian</a> (2 Articles, 1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Early+Victorian&video_ids=7oBUIo5R5qg">6m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/becoming-modern/victorian-art-architecture/pre-raphaelites">Pre-Raphaelites and mid-Victorian art</a> (24 Articles, 3 Exercises, 17 Videos | <a href="https://www.youtube.com/watch_videos?title=Pre-Raphaelites+and+mid-Victorian+art&video_ids=-LgtilBrA4g%2CnRPLiTZAry4%2CI2M7U8eCeHA%2CDjNMJpdFPGA%2C20n0i2KQRCs%2C4j13InegUPk%2CtIqO2GS8O64%2C9gnM72T4DTE%2Cuc2xgyjxKHg%2CHNoyVb1hr7g%2CGlkqvEOYicA%2CzA2KSx5OYog%2CVQniy8iq9EQ%2CiPb5zeXTsSE%2C2zw3Z8HLCNQ%2CF00vnE37pIE%2COMEDRrGpybY">1h 20m 23s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/becoming-modern/victorian-art-architecture/victorian-late">Art History: Late Victorian</a> (3 Articles, 1 Exercise, 1 Test, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Art+History%3A+Late+Victorian&video_ids=99hAYY4usME%2CYDYxQMBm50k%2CW_YeBq1vgAs">12m 18s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/becoming-modern/avant-garde-france">The birth of the avant-garde in France</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/becoming-modern/avant-garde-france/second-empire">Art History: Second Empire</a> (2 Articles, 2 Exercises, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Art+History%3A+Second+Empire&video_ids=EtTGyLsR7lk%2CpQJrTf_x7Wk">10m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/becoming-modern/avant-garde-france/realism">Art History: Realism</a> (8 Articles, 2 Exercises, 15 Videos | <a href="https://www.youtube.com/watch_videos?title=Art+History%3A+Realism&video_ids=HNZTmnngqrM%2CiFHIL6rZnj0%2CkOnzZHJYzb4%2C76gw8PA12ag%2C3KjZ3w5MtBo%2CDk1nuM5JKqQ%2CbihBbqzL96Y%2C3xBGF8H3bQ4%2C2GD1Oz0sPzY%2CznKX9WcowfY%2CXS8OhYdc-20%2CK3XTsNlcDS8%2CeNhrYgYV0MA%2CiHuewgZR17s%2CBXzR-hdSFUY">1h 7m 14s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/becoming-modern/avant-garde-france/impressionism">Art History: Impressionism</a> (8 Articles, 1 Exercise, 27 Videos | <a href="https://www.youtube.com/watch_videos?title=Art+History%3A+Impressionism&video_ids=irLOxG7SpUk%2C6HTBjvqn9uw%2CNigP3DjV3NY%2CwvtPCKwGZCU%2CeKj12_KS8m0%2CU8d45ETt78o%2CcYUVtdpTlEo%2Cna05-xCZR8s%2CMVHfVB4MaWE%2CHVuyK_vIMfc%2CguxLpVICBjg%2CzOZiuAOuOkA%2CO4St29B7cmU%2CgDbpcwwUgjI%2CtWjnbh5Z9Vg%2CIics7KH_rLE%2CfpnIGUds1FQ%2CD8cHdto-G-I%2CJCKshDyxjuw%2CDWHJx0kFQCo%2C6fHorNn2zqQ%2C69zJ3UDh5Tw%2C_uUD1ZP79tE%2C3SmyaLwpSaI%2Co6amlRsb1n4%2CfeCG2zfzflo%2C7qaxUhbiQUc">2h 1m 4s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/becoming-modern/avant-garde-france/post-impressionism">Art History: Post-Impressionism</a> (12 Articles, 1 Exercise, 15 Videos | <a href="https://www.youtube.com/watch_videos?title=Art+History%3A+Post-Impressionism&video_ids=9bs1iQ14LJY%2CwNB9Vm6MoDQ%2CgqSpWPONekE%2CE1tA9-ypx0g%2CFxiQ_EZNTrc%2Cy5lhKvKvWPg%2CpQu1RMIkg3c%2CofJS_K0Fj2Q%2CXBPgPEo0Xx4%2C2Vv9BhnE0SQ%2ChH1a1v1JNAk%2CKJuYXFHvRaY%2CiQY3SdZeZ6g%2CYFtf-xA7_oM%2CXLcbGHNFcpM">1h 13m 36s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/becoming-modern/avant-garde-france/avant-garde-sculpture">Sculpture</a> (3 Articles, 1 Test, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Sculpture&video_ids=3ZGmMTNyW0k%2Cbfv9T1lSO2U">7m 21s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/becoming-modern/symbolism">Art History: Symbolism</a> (3 Articles, 2 Exercises, 12 Videos | <a href="https://www.youtube.com/watch_videos?title=Art+History%3A+Symbolism&video_ids=3oeLGKeNPj0%2CSMqERP-J2tQ%2CNk4DmlnoLxw%2CmuJatqh6wRM%2CsazsDYOXVis%2C983Tu9rlP54%2CBRUOACBkFRg%2CP1Lw1NVcI8o%2C653ZKHd_PYo%2Chqynp3DH9NU%2CltdN7LnWJPY%2CRaeSwi80g3Q">48m 11s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/becoming-modern/russia-peredvizhniki">Russia: The Peredvizhniki (The Wanderers)</a> (1 Topic)</li>
</ul>
<h2 id="expressionism-to-pop-art-13-topics"><a href="https://da.khanacademy.org/humanities/art-1010">Expressionism to Pop Art</a> (13 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/humanities/art-1010/beginners-guide-20-21">En begynderguide til 1900-tallets kunst</a> (2 Articles, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=En+begynderguide+til+1900-tallets+kunst&video_ids=8-5DTsl1V5k%2C2aUFB9hQncQ">18m 57s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-1010/early-abstraction">Early abstraction: Fauvism, Expressionism and Cubism</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/art-1010/early-abstraction/fauvism-matisse">Fauvism and Matisse</a> (6 Articles, 1 Exercise, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Fauvism+and+Matisse&video_ids=7d6S8y2kYSg%2Cnz_zwsgjRbw%2CjCByVqB4iJQ%2C9vI1kP-9zpw%2CnA5niH5e31Q%2C-rke7RmxwfY">24m 50s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-1010/early-abstraction/expressionism1">Expressionism</a> (2 Articles, 9 Videos | <a href="https://www.youtube.com/watch_videos?title=Expressionism&video_ids=zfZu--psur8%2CHWivDUWFaX0%2CMCL1qhlSq1Y%2CvUxYPrznFLw%2CcroM4PvOdbM%2CKI24PVRdSRY%2CPqRx4OV5jhM%2CSa3FyvaKYVw%2CWdPMdGUeYGk">41m 46s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/art-1010/cubism-early-abstraction">Cubism and early abstraction</a> (6 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/art-1010/cubism-early-abstraction/cubism">Art History: Cubism</a> (7 Articles, 2 Exercises, 12 Videos | <a href="https://www.youtube.com/watch_videos?title=Art+History%3A+Cubism&video_ids=jkT1BVRfJI8%2CKQY4yOU06Vs%2CXyLNPumMMTs%2CGRTsMJNcHFw%2Cj2-95i4pq9g%2CIXtreNuEC-Q%2Cbfy6IxsN_lg%2C1E91KmfiUGY%2C-jXFckR2yoY%2CYwnfVj5qeo4%2CiKGCnjBi2sQ%2CPkzACPGZcVk">53m 39s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-1010/cubism-early-abstraction/art-great-war">Art and the Great War</a> (6 Articles, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Art+and+the+Great+War&video_ids=GLEJgVSL0Ac%2CBSeQPlYD6S8%2CJAe14gwSvIU%2CiCYSKCJNbwM">10m 4s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/art-1010/wwi-dada">World War I and Dada</a> (1 Topic)
<ul>
<li><a href="https://da.khanacademy.org/humanities/art-1010/wwi-dada/dada1">Cézanne</a> (4 Articles, 2 Exercises, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=C%C3%A9zanne&video_ids=hBbbrSydH90%2CMRv20I13vqM%2CFmjSUyyc-3M%2CulHnX0DG8_U%2CyOAlbFVKGfk%2C8YrRdcW3wvQ%2C9E1cA3j_xY8">45m 18s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/art-1010/art-between-wars">Art between the wars: the avant-garde and the rise of totalitarianism</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/art-1010/art-between-wars/neue-sachlichkeit">Art History: Neue Sachlichkeit</a> (3 Articles, 1 Exercise, 11 Videos | <a href="https://www.youtube.com/watch_videos?title=Art+History%3A+Neue+Sachlichkeit&video_ids=hip59oIFSMQ%2CM7yd8F3eay4%2CfF8z14SiIKk%2CYeBe-yDGVnU%2CQlQjCQ5SXco%2Cukjw0Doy65Q%2CqZ1ofSJBxBU%2CsHkZWu9tgpw%2CjEVfDSfO9Gw%2C8qGwCypgYr4%2ChpY22uSAPAA">1h 9m 37s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-1010/art-between-wars/intl-avant-garde">The international avant-garde</a> (2 Articles, 1 Exercise, 11 Videos | <a href="https://www.youtube.com/watch_videos?title=The+international+avant-garde&video_ids=NhllG85qiwg%2C3sCB3udmu1Y%2Cr3ttwvNvors%2CT6G0ewxKkCQ%2CxWTzH7RV80g%2CPz_ZICqJuc8%2CNpWxl4C0OWU%2CYxMBp4Ef3ek%2CNaxhuXIpdj0%2CiBge6zxqWv8%2CTzSMvEiEuo0">39m 4s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-1010/art-between-wars/surrealism1">Surrealisme</a> (3 Articles, 2 Exercises, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Surrealisme&video_ids=SIsq00jJY7Y%2Cw702yvnip_w%2CRcPI6Mb9J6k%2C6mp-fBJNQmU%2CHUZDPWLTZ0g%2CHn39FYUiqkI">31m 2s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-1010/art-between-wars/latin-american-modernism1">Latin American Modernism</a> (8 Articles, 4 Exercises, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Latin+American+Modernism&video_ids=n2HWkDrorRg%2CKa9tX3wdyb4%2C1mzQDfK3A5Q%2CihTL99vO1n0">21m 44s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-1010/art-between-wars/american-art-wwii">American art to World War II</a> (9 Articles, 1 Test, 18 Videos | <a href="https://www.youtube.com/watch_videos?title=American+art+to+World+War+II&video_ids=CIH3VBBL69k%2C8kfrFEiGGzg%2C2OTTHEvXDpk%2CwQq2xOs2BYU%2C1zuV_VH1Ep8%2Cvk2GvyNmYD0%2ChEzxajyvFEc%2C7unYHC6YrMs%2Cn-ZCEXWdIMg%2CZLC8xRNcJvE%2Ct4lgvB5cV5E%2CD5XgjkmucJc%2CtyOQTuvDOVQ%2Cj24uh8cZ3wA%2Ct2JQQcD59xs%2Cj3OqfduWdhc%2C-HRMrnPdYNM%2CPSPksF60yTw">1h 32m 32s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/art-1010/art-post-war-britain">Figuration and abstraction in post-war Britain</a> (1 Article, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Figuration+and+abstraction+in+post-war+Britain&video_ids=TMUAYeygy5U%2C8PPM8foaH_k%2C1xioYgUWsHg%2Cifv0KWw4pns%2C2x8QgGgUTBM%2CgHlcOCP-Cxg%2Cps4wuBpAUCQ">29m 9s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-1010/abstract-exp-nyschool">Abstract Expressionism & the New York School</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/art-1010/abstract-exp-nyschool/abstract-expressionism">Abstract Expressionism</a> (3 Articles, 1 Exercise, 21 Videos | <a href="https://www.youtube.com/watch_videos?title=Abstract+Expressionism&video_ids=WEYKoJTIHcE%2CC1_umo7Gp88%2Cr7sJ_WNiSrs%2C91-htuqmezI%2CwyT4IvTGSwk%2C4qgOSBHptLM%2CGacKM9yxiw4%2C8-5DTsl1V5k%2CsmvNW6QXvUc%2CqHSS-Ztxc0c%2CFnkATpF4O2Q%2CvSiu8qzHV6c%2CAGqAggmwyMU%2CNT0SHjOowLA%2CEncR_T0faKM%2CZ-EiSD108OM%2CECdR_W3Fk4Q%2C8WkUjPz0nQQ%2CC89z5GncK88%2CxyTxrbsfLpg%2C1xQTlp0hscs">2h 34m 55s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-1010/abstract-exp-nyschool/new-york-school">New York School</a> (4 Articles, 2 Exercises, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=New+York+School&video_ids=9bWJt2hjBH0%2Ctvpp2lAD9iY%2CWhGOmAwuQTE%2CPywR3Pn7ZlU%2Cp5nej7Gy7kQ%2CjSGGHmTXA3o%2CSm8nOyqUz_g">34m 5s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/art-1010/american-postwar-figurative-art">American Postwar figurative art</a> (3 Videos | <a href="https://www.youtube.com/watch_videos?title=American+Postwar+figurative+art&video_ids=ReJT-a4EtQQ%2CPEmpUQzkvMc%2C2O0KBHom5bg">18m 59s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-1010/american-postwar-abstraction">American postwar abstraction</a> (1 Article, 1 Video | <a href="https://www.youtube.com/watch_videos?title=American+postwar+abstraction&video_ids=pv4WGBgVZ-c">4m 45s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-1010/pop">Pop</a> (3 Articles, 1 Exercise, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Pop&video_ids=8mjUuMkGy6s%2CSdbOrNLcC0I%2Cpgw0-nZdW94%2ClXfzq27fGvU%2CN-mt2tiRJ7U%2CtxHg9ItLH3Y%2CGpwAsXrBJ-Q">27m 55s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-1010/minimalism-earthworks">Minimalism and Earthworks</a> (6 Articles, 4 Exercises, 11 Videos | <a href="https://www.youtube.com/watch_videos?title=Minimalism+and+Earthworks&video_ids=P73T2ZaovK4%2CG37C5vKCwH4%2CIeUiL5vzSzA%2C0JVyGEJWlX8%2CvrbNsHs7ptE%2CAN2DJxMLFOw%2CC_OmWlMjsxQ%2CilWo7eWY73M%2CGAQ9KyxDYUY%2CwuxjTxxQUTs%2CakKpEgoMeNY">53m 21s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-1010/architecture-20c">Architecture and design</a> (12 Articles, 3 Exercises, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Architecture+and+design&video_ids=DApipeftrBo%2CUJOqgt04MfU%2Ca8g6ma0MBaA%2CJVm-ePTIKR4%2CujYRgDi3Lz8%2CZyyuflY5k2k%2Ck4SBqFgVbm0">47m 15s</a> )</li>
</ul>
<h2 id="toward-a-global-culture-4-topics"><a href="https://da.khanacademy.org/humanities/global-culture">Toward a global culture</a> (4 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/humanities/global-culture/beginners-guide-contemporary-art1">A beginner's guide to contemporary art</a> (6 Articles, 1 Video | <a href="https://www.youtube.com/watch_videos?title=A+beginner%27s+guide+to+contemporary+art&video_ids=uDuzy-t7GDA">7m 49s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/global-culture/identity-body">Identity, the body and the subversion of Modernism</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/global-culture/identity-body/identity-body-united-states">Identity, the body, and the subversion of Modernism: United States</a> (19 Articles, 2 Exercises, 11 Videos | <a href="https://www.youtube.com/watch_videos?title=Identity%2C+the+body%2C+and+the+subversion+of+Modernism%3A+United+States&video_ids=jO1wp-Bx-WE%2C-nrSCokEUXg%2C_dLpDljQWis%2CMn4D4eQxeMU%2CAN2DJxMLFOw%2C0fPwsLeH8fA%2Cr_rVyt-ojpY%2C9IZhzUDSBTY%2Cl2VrAsu0KeE%2CdNk098ffjLM%2CAc9Qi6sVyyU">46m 40s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/global-culture/identity-body/identity-body-europe">Asia, Africa, Europe, Latin America and the Middle East</a> (15 Articles, 1 Exercise, 1 Test, 14 Videos | <a href="https://www.youtube.com/watch_videos?title=Asia%2C+Africa%2C+Europe%2C+Latin+America+and+the+Middle+East&video_ids=bB1K4H0vx0g%2CyenSUBmGrdU%2C4GW-PORTvfo%2CaOeKj-w-3fY%2C_s_-J1DFXnQ%2CJZRY6Eco7BM%2CNb6EQUS8hDo%2CrRZR3nsiIeA%2C4gwbyfERDrA%2CCyDtzMQbDfQ%2Cf8LDv2kthzw%2CEC4wJhOEUz8%2CSadSIPGOeIE%2C2T6-eVRui1I">1h 31m 37s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/global-culture/conceptual-performance">Conceptual and Performance art</a> (12 Articles, 1 Exercise, 17 Videos | <a href="https://www.youtube.com/watch_videos?title=Conceptual+and+Performance+art&video_ids=CAz6a5FwZJQ%2C4m_uMtf4ZjU%2C4QwfrTNuwE4%2CmCWr_iDh114%2CgO49s8WlUis%2CbeU3xkhwgs4%2Cj_dqT-XeIjA%2CAa4RIyDatO8%2CoKRly5xc0_g%2CsdM6aGhKdTI%2CyNz3ybrEe3I%2ClD7BHl5W86Q%2CDseIYQdjzgE%2CWIhf3UBNTlA%2C2GD5PBK_Bto%2CFcyYynulogY%2COUrwdqwzqMU">1h 17m 36s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/global-culture/global-art-architecture">Global modernisms in the 21st century</a> (15 Articles, 5 Exercises, 24 Videos | <a href="https://www.youtube.com/watch_videos?title=Global+modernisms+in+the+21st+century&video_ids=hXm8NZWlGRg%2C8wBEqPrgUDY%2C_GfSvZDHxgU%2CskHR8wrO490%2CGwTehaUOkhg%2CXs3DzydSKu8%2C4zatyfXy_D0%2CNIJDn2MAn9I%2CjXJpbpvcMDU%2CAbecBgtWehE%2C44ZkTayk2hk%2CLwF9nTEB84k%2CKv3feYibIUk%2CGzTr-OnMI-E%2CYtibtTFpF6U%2Cdqn5CgMFfDY%2CVrIndhFU0uo%2CPueYywpkJW8%2ClM32TL7VnOw%2Cz-DvmxflJgA%2CLinNW-GIlP0%2CiCmtnhPs7TI%2Ce-_92MYcANk%2Ce523Snw21Hk">2h 7m 29s</a> )</li>
</ul>
<h2 id="kunst-fra-asien-7-topics"><a href="https://da.khanacademy.org/humanities/art-asia">Kunst fra Asien</a> (7 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/humanities/art-asia/beginners-guide-asian-culture">A beginner's guide to Asian art and culture</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/art-asia/beginners-guide-asian-culture/hindu-art-culture">Hindu art and culture, an introduction</a> (8 Articles, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Hindu+art+and+culture%2C+an+introduction&video_ids=o7-i6KLoEkc%2CgYcwNXHrtlQ%2CZRGczIT9Cfc%2CsTLsPHluQdM%2Chk6rA-iY1c0">18m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-asia/beginners-guide-asian-culture/buddhist-art-culture">A beginner's guide to Buddhist art and culture</a> (14 Articles, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=A+beginner%27s+guide+to+Buddhist+art+and+culture&video_ids=_WAi2fwUqN4%2CNJsLHcL3Bvs%2Cqk-9Ez3xICY%2CJoC_x3Hzkkc%2CkHt6BgHxa8o%2ClA8pSpp-FS4">27m</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/art-asia/imperial-china">Imperial China</a> (15 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/art-asia/imperial-china/neolithic-art-china">Neolithic art in China</a> (5 Articles, 1 Exercise, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Neolithic+art+in+China&video_ids=d1oO1kbtt4s%2Cld8kHvz1yN4">9m</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-asia/imperial-china/beginners-guide-imperial-china">A beginner's guide to Imperial China</a> (3 Articles, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=A+beginner%27s+guide+to+Imperial+China&video_ids=-Po57YmaW3w%2CwT4tXGcoyWw%2CoRRiTo8sUwk%2CMEN0CzGv5-Y%2CYFvgM8r7Uvc">16m 16s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-asia/imperial-china/shang-dynasty">Shang dynasty (c. 1600-1050 B.C.E.)</a> (3 Articles, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Shang+dynasty+%28c.+1600-1050+B.C.E.%29&video_ids=s9gfIqOo__I%2CrdaxI6ekLLQ">6m 49s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-asia/imperial-china/zhou-dynasty">Zhou dynasty (c. 1046 B.C.E.-256 B.C.E.)</a> (1 Article, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Zhou+dynasty+%28c.+1046+B.C.E.-256+B.C.E.%29&video_ids=tAtweI2BUNE">5m 36s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-asia/imperial-china/later-zhao"> Later Zhao</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=+Later+Zhao&video_ids=iKjVbO2R4_w">2m 3s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-asia/imperial-china/northern-wei">Northern Wei dynasty (386 - 534)</a> (1 Article, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Northern+Wei+dynasty+%28386+-+534%29&video_ids=kFp7D0UxNxU">2m 52s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-asia/imperial-china/northern-qi">Northern Qi dynasty (550 - 577 C.E.)</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Northern+Qi+dynasty+%28550+-+577+C.E.%29&video_ids=8jFxkEQacVA">7m 47s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-asia/imperial-china/tang-dynasty">Tang dynasty (618-907)</a> (10 Articles, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Tang+dynasty+%28618-907%29&video_ids=9bE-n0n2BBA">4m 36s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-asia/imperial-china/liao-dynasty"> Liao Dynasty (907–1125)</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=+Liao+Dynasty+%28907%E2%80%931125%29&video_ids=PZQTxPbvO64">2m 46s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-asia/imperial-china/song-dynasty">Song dynasty (960-1279)</a> (7 Articles, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Song+dynasty+%28960-1279%29&video_ids=yD_oV317mCI%2CQvdMC_wY_K4">11m 20s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-asia/imperial-china/yuan-dynasty">Yuan dynasty (1271-1368)</a> (5 Articles, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Yuan+dynasty+%281271-1368%29&video_ids=CHfU9EDwOwU%2ClfIHzumEghQ">10m 24s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-asia/imperial-china/ming-dynasty">Ming dynasty</a> (6 Articles, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Ming+dynasty&video_ids=tPfYrmcfvYE%2C87QlGDfXh54%2CF9SMvVtKxXM">11m 1s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/art-asia/korea-japan">Art in Korea</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/art-asia/korea-japan/korean-art">Korean art</a> (3 Articles, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Korean+art&video_ids=thvh5PdR6yM%2C3UiffIzCNPQ">8m 49s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-asia/korea-japan/goryeo-dynasty">Goryeo dynasty (918-1392) </a> (2 Articles, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Goryeo+dynasty+%28918-1392%29+&video_ids=2vSpWt7qC_M%2CgKhw23Tfn1U">10m 29s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-asia/korea-japan/joseon-dynasty">Joseon dynasty (1392–1910)</a> (4 Articles, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Joseon+dynasty+%281392%E2%80%931910%29&video_ids=Lo-ajwD953o%2C8TqFGD9tZto%2CDSvLJZnH2KQ">16m 13s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/art-asia/art-japan">Art in Japan</a> (7 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/art-asia/art-japan/japanese-art">Beginner’s guide to Japanese Art</a> (3 Articles, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Beginner%E2%80%99s+guide+to+Japanese+Art&video_ids=_WAi2fwUqN4%2CRgQ4eCc38dM">7m 9s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-asia/art-japan/kofun-period">Kofun period (300-552 C.E.)</a> (1 Article, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Kofun+period+%28300-552+C.E.%29&video_ids=pCpiIPj7xgI">5m 3s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-asia/art-japan/nara-period">Nara period (710–794)</a> (2 Articles, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Nara+period+%28710%E2%80%93794%29&video_ids=gibe5vJfq5w">3m 25s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-asia/art-japan/heian-period">Heian period (794–1185) </a> (3 Articles, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Heian+period+%28794%E2%80%931185%29+&video_ids=PjLQrZRg-WI%2CetiD38iuYZk">6m 22s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-asia/art-japan/kamakura-period">Kamakura period (1185-1333)</a> (2 Articles, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Kamakura+period+%281185-1333%29&video_ids=MTggwJPKhqk%2CiBqoQVm6gvc%2C91x5bPf2Eag%2CfYbLyOrl8gs%2CYE1MwI69ooU">35m 24s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-asia/art-japan/muromachi-period">Muromachi period (1392–1573)</a> (6 Articles, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Muromachi+period+%281392%E2%80%931573%29&video_ids=WfZe2NLKEns%2CvwoK8-y-5_U%2CBn7r63iDfL0%2C4roG0EhmyDw%2C_M_zc7DDZbU">26m 56s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-asia/art-japan/edo-period">Edo period (1615–1868)</a> (17 Articles, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=Edo+period+%281615%E2%80%931868%29&video_ids=EWobKZYmPik%2Cql8wVEetJkQ%2C2tyEjbFaXdA%2CWQBBbAhjxq0%2CidAmFwZ9BqY%2Care5VmVfK7Q%2CFsO3A07Abak">18m 13s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/art-asia/south-asia">South Asia</a> (4 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/art-asia/south-asia/hindu-art">Hindu art</a> (9 Articles, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Hindu+art&video_ids=IX85uiG86RA%2CwkP1TF16z1M">33m 30s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-asia/south-asia/buddhist-art2">Buddhist art</a> (7 Articles, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Buddhist+art&video_ids=jl6S0wdeWk4%2Cqk-9Ez3xICY%2CJoC_x3Hzkkc%2C9gPTOKcwp3c">29m 41s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-asia/south-asia/afghanistan">Art in Afghanistan</a> (1 Article, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Art+in+Afghanistan&video_ids=gATXnxAE8sI%2Cb9mBLNOr8rw%2CaHx3k9NhIEM">9m 3s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/art-asia/southeast-asia">Southeast Asia</a> (6 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/art-asia/southeast-asia/mainland-se-asia">Cambodia</a> (1 Article, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Cambodia&video_ids=KKEW_etByJo%2CncLt9beOGas%2C4SSVRByUZYI%2Cgk6SXIKuotU%2CgndFqgEPNOs">16m 36s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-asia/southeast-asia/maritime-se-asia">Indonesien</a> (6 Articles, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Indonesien&video_ids=Wph0cBNi7Yo">6m 13s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-asia/southeast-asia/bali">Bali</a> (3 Articles, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=Bali&video_ids=Z9KoBRGc3_s%2C71L7-dyQsoQ%2Ci76VT8Ctkb8%2CVpVwgQjjaO4%2C6HMYQfI76fQ%2CVVlmNg8Udq8">18m 32s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/humanities/art-asia/himalayas">The Himalayas</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/humanities/art-asia/himalayas/nepal">Nepal</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Nepal&video_ids=gs3fWMI3nFA">7m 4s</a> )</li>
<li><a href="https://da.khanacademy.org/humanities/art-asia/himalayas/tibet">Tibet</a> (14 Articles, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Tibet&video_ids=omy9xziXIEI%2CDP4-S716q4E%2C0TRjw-Ot9Pc">14m 50s</a> )</li>
</ul></li>
</ul>
<h1 id="datalogi-5-topics"><a href="https://da.khanacademy.org/computing">Datalogi</a> (5 Topics)</h1>
<h2 id="programmering-14-topics"><a href="https://da.khanacademy.org/computing/computer-programming">Programmering</a> (14 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/computing/computer-programming/programming">Introduktion til JS: Grafik og animation</a> (17 Topics)
<ul>
<li><a href="https://da.khanacademy.org/computing/computer-programming/programming/intro-to-programming">Introduktion til programmering</a> (1 Article, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+programmering&video_ids=FCMxA3m_Imc">2m 1s</a> )</li>
<li><a href="https://da.khanacademy.org/computing/computer-programming/programming/coloring">Farver</a> (1 Article, 1 Challenge, 1 Project, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Farver&video_ids=If3KlMxbtcc">6m 10s</a> )</li>
<li><a href="https://da.khanacademy.org/computing/computer-programming/programming/good-practices">Bliv en bedre programmør</a> (2 Articles, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Bliv+en+bedre+programm%C3%B8r&video_ids=RamzvjMF3rc">2m 46s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/computing/computer-programming/html-css">Intro to HTML/CSS: Making webpages</a> (9 Topics)
<ul>
<li><a href="https://da.khanacademy.org/computing/computer-programming/html-css/intro-to-html">Introduktion til HTML</a> (1 Article, 4 Challenges, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+HTML&video_ids=jHPr-CuvHhs">2m 48s</a> )</li>
<li><a href="https://da.khanacademy.org/computing/computer-programming/html-css/css-text-properties">CSS tekstegenskaber</a> (3 Challenges, 1 Exercise, 1 Project, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=CSS+tekstegenskaber&video_ids=yTOS61GFq0g">1m 32s</a> )</li>
<li><a href="https://da.khanacademy.org/computing/computer-programming/html-css/css-layout-properties">CSS layout</a> (1 Article, 5 Challenges, 1 Exercise, 1 Project, 6 Videos | <a href="https://www.youtube.com/watch_videos?title=CSS+layout&video_ids=7f-LsuAnLMA">2m 13s</a> )</li>
<li><a href="https://da.khanacademy.org/computing/computer-programming/html-css/html-css-further-learning">HTML/CSS: Further learning</a> (2 Articles, 1 Exercise, 1 Video | <a href="https://www.youtube.com/watch_videos?title=HTML%2FCSS%3A+Further+learning&video_ids=qrU3ghYJjEw">2m 20s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/computing/computer-programming/sql">Intro to SQL: Getting started with databases</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/computing/computer-programming/sql/sql-basics">SQL basics</a> (3 Challenges, 1 Project, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=SQL+basics&video_ids=IXycPq7MnwE%2CmclGRkSprJY">3m 46s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/computing/computer-programming/programming-games-visualizations">Avanceret JS: Spil og visualiseringer</a> (8 Topics)
<ul>
<li><a href="https://da.khanacademy.org/computing/computer-programming/programming-games-visualizations/intro-games-visualizations">Introduktion til spil og visuelle effekter</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+spil+og+visuelle+effekter&video_ids=4VqHGULLA4o">3m 7s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/computing/computer-programming/programming-natural-simulations">Avanceret JS: Simulér naturen</a> (8 Topics)
<ul>
<li><a href="https://da.khanacademy.org/computing/computer-programming/programming-natural-simulations/intro-natural-simulations">Introduktion til naturlige simuleringer</a> (1 Video | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+naturlige+simuleringer&video_ids=LMfPceMzLWg">2m 35s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/computing/computer-programming/html-css-js">HTML/JS: At lave hjemmesider interaktive</a> (8 Topics)
<ul>
<li><a href="https://da.khanacademy.org/computing/computer-programming/html-css-js/html-css-js-intro">Intro to making webpages interactive</a> (2 Articles, 2 Exercises, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Intro+to+making+webpages+interactive&video_ids=c-szOdzJiWM">1m 51s</a> )</li>
<li><a href="https://da.khanacademy.org/computing/computer-programming/html-css-js/js-and-the-dom">JS and the DOM</a> (1 Challenge, 1 Exercise, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=JS+and+the+DOM&video_ids=JuVOwU0RcdA">2m 55s</a> )</li>
<li><a href="https://da.khanacademy.org/computing/computer-programming/html-css-js/html-js-dom-events">HTML/JS: DOM events</a> (2 Articles, 3 Challenges, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=HTML%2FJS%3A+DOM+events&video_ids=2pE7GUzW6-4">1m 26s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/computing/computer-programming/html-js-jquery">HTML/JS: At lave hjemmesider interaktive med jQuery</a> (8 Topics)
<ul>
<li><a href="https://da.khanacademy.org/computing/computer-programming/html-js-jquery/jquery-intro">Welcome to jQuery</a> (1 Article, 1 Challenge, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=Welcome+to+jQuery&video_ids=4NYF_Y3rTbk%2CT2mFyPxL-fU">1m 44s</a> )</li>
<li><a href="https://da.khanacademy.org/computing/computer-programming/html-js-jquery/jquery-dom-access">DOM access with jQuery</a> (3 Articles, 2 Challenges, 3 Videos | <a href="https://www.youtube.com/watch_videos?title=DOM+access+with+jQuery&video_ids=JuVOwU0RcdA">2m 55s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/computing/computer-programming/meet-the-computing-professional">Mød de professionelle</a> (11 Articles, 1 Video | <a href="https://www.youtube.com/watch_videos?title=M%C3%B8d+de+professionelle&video_ids=Psl3LWRAysQ">52s</a> )</li>
</ul>
<h2 id="datalogi-6-topics"><a href="https://da.khanacademy.org/computing/computer-science">Datalogi</a> (6 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/computing/computer-science/algorithms">Algoritmer</a> (12 Topics)
<ul>
<li><a href="https://da.khanacademy.org/computing/computer-science/algorithms/intro-to-algorithms">Intro to Algorithms</a> (3 Articles, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Intro+to+Algorithms&video_ids=CvSOaYi89B4">5m 28s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/computing/computer-science/cryptography">kryptografi</a> (8 Topics)
<ul>
<li><a href="https://da.khanacademy.org/computing/computer-science/cryptography/crypt">En rejse ind i Kryptografi</a> (6 Interactives, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=En+rejse+ind+i+Kryptografi&video_ids=Kf9KjCKmDcU%2CsMOZf4GN3oc%2CBgFJD7oCmDE%2CFlIG3TvQCBQ%2CmfW6JH3sndw%2C-1ZFVwMXSXY%2CvKRMWewGE9A%2CGtOt7EBNEwQ">32m 35s</a> )</li>
<li><a href="https://da.khanacademy.org/computing/computer-science/cryptography/modern-crypt">Introduktion til moderne kryptografi</a> (2 Interactives, 10 Videos | <a href="https://www.youtube.com/watch_videos?title=Introduktion+til+moderne+kryptografi&video_ids=8CluknrLeys%2CMsqqpO9R5Hc%2CSL7J8hPKEWY%2CM-0qt6tdHzk%2CEPXilYOa71c%2CIY8BXNFgnyI%2CcJvoi0LuutQ%2Cqa_hksAzpSg%2CUjIPMJd6Xks%2CA9Km337z15k">34m 32s</a> )</li>
<li><a href="https://da.khanacademy.org/computing/computer-science/cryptography/comp-number-theory">Primtalstest</a> (2 Articles, 5 Interactives, 8 Videos | <a href="https://www.youtube.com/watch_videos?title=Primtalstest&video_ids=HIu1S2Wsso8%2Ch6YWCuuJVj4%2CoYUzKAfrx0w%2CklcIklsWzrY%2CXspzfNSSqyk%2C7jzCJJIc59E%2C9YRw0Yk7N8c%2CkFkUSizmR3k">45m 28s</a> )</li>
<li><a href="https://da.khanacademy.org/computing/computer-science/cryptography/random-algorithms-probability">Randomiserede algoritmer</a> (3 Interactives, 5 Videos | <a href="https://www.youtube.com/watch_videos?title=Randomiserede+algoritmer&video_ids=WGMn16TDTjE%2CKqCKZwh5WY8%2C1mjyq51ppT8%2COoQ16YCYksw%2CoUMotDWVLpw">32m 50s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/computing/computer-science/informationtheory">information theory</a> (3 Topics)
<ul>
<li><a href="https://da.khanacademy.org/computing/computer-science/informationtheory/info-theory">En rejse ind i Informationsteori</a> (2 Interactives, 9 Videos | <a href="https://www.youtube.com/watch_videos?title=En+rejse+ind+i+Informationsteori&video_ids=d9alWZRzBWk%2ClkeXaqoXDYQ%2C6NrTrBzC6dk%2COFXY9-pec1I%2CgBKBKfikLbo%2CcKkacTkCjjs%2CAurTtzpAr4c%2Coxpr5dhqqyw%2Cabq95BTwOGo">1h 4m 49s</a> )</li>
<li><a href="https://da.khanacademy.org/computing/computer-science/informationtheory/moderninfotheory">Moderne Informationsteori</a> (3 Interactives, 9 Videos | <a href="https://www.youtube.com/watch_videos?title=Moderne+Informationsteori&video_ids=nuUkcbAId6o%2CW-OskAegz5o%2CPtmzfpV6CDE%2CWs63I3F7Moc%2CWyAtOqfCiBw%2C2s3aJfRr9gE%2CTxkA5UX4kis%2Cq-3BctoUpHE%2CUFNsjLUN1g8">58m 51s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/computing/computer-science/how-computers-work2">How Computers Work</a> (6 Videos | <a href="https://www.youtube.com/watch_videos?title=How+Computers+Work&video_ids=_bVqU4D_MVw%2CxfKn5OjHLqQ%2CewokFOSxabs%2CSc3lh3D4rCw%2CMMzdKTtUIFM%2CVzVSt6jxiqw">26m 55s</a> )</li>
<li><a href="https://da.khanacademy.org/computing/computer-science/internet-intro">Internet 101</a> (1 Topic)
<ul>
<li><a href="https://da.khanacademy.org/computing/computer-science/internet-intro/internet-works-intro">How the internet works</a> (1 Article, 7 Videos | <a href="https://www.youtube.com/watch_videos?title=How+the+internet+works&video_ids=Dxcc6ycZ73M%2CqtmTMvXKKdg%2CMwxMsaFFycg%2CaD_yi5VjF78%2C1K64fWX5z4U%2C6-JjHa-qLPk%2C5k24We8pED8">42m 27s</a> )</li>
</ul></li>
</ul>
<h2 id="resources--11-topics"><a href="https://da.khanacademy.org/resources">Resources </a> (11 Topics)</h2>
<ul>
<li><a href="https://da.khanacademy.org/resources/teacher-essentials">Lærer vejledninger</a> (11 Topics)
<ul>
<li><a href="https://da.khanacademy.org/resources/teacher-essentials/getting-started-on-khan-academy">Getting started on Khan Academy</a> (1 Article, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Getting+started+on+Khan+Academy&video_ids=WKDIIT3OgY4">3m 32s</a> )</li>
<li><a href="https://da.khanacademy.org/resources/teacher-essentials/implementation">Implementation</a> (2 Articles, 4 Videos | <a href="https://www.youtube.com/watch_videos?title=Implementation&video_ids=K5DtkUlxugY%2Cph64kEA6D4c%2CPISWon0ZMJc%2Cqw8x4cQfI-Y">15m 34s</a> )</li>
<li><a href="https://da.khanacademy.org/resources/teacher-essentials/our-content">Indholdet</a> (2 Articles, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Indholdet&video_ids=6KUehuzTalU">3m 41s</a> )</li>
<li><a href="https://da.khanacademy.org/resources/teacher-essentials/teaching-computing">Lærervejledning til programmering</a> (23 Articles, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=L%C3%A6rervejledning+til+programmering&video_ids=cbD_MVIUBf8%2CkHRDz-ydWCk">8m 52s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/resources/students">Elever</a> (1 Topic)</li>
<li><a href="https://da.khanacademy.org/resources/parents-mentors-1">Forældre og vejledere</a> (5 Topics)
<ul>
<li><a href="https://da.khanacademy.org/resources/parents-mentors-1/helping-your-child">Hjælp dit barn</a> (11 Articles, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Hj%C3%A6lp+dit+barn&video_ids=JC82Il2cjqA%2CYhHEP2W1gn8">3m 22s</a> )</li>
<li><a href="https://da.khanacademy.org/resources/parents-mentors-1/homeschool-with-khan-academy">Homeschool With Khan Academy</a> (6 Articles, 1 Video | <a href="https://www.youtube.com/watch_videos?title=Homeschool+With+Khan+Academy&video_ids=HbmePz_MktE">1m 17s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/resources/out-of-school-time-programs">Out of school time programs</a> (2 Topics)
<ul>
<li><a href="https://da.khanacademy.org/resources/out-of-school-time-programs/out-of-school-programs-case-studies">Undervisning udenfor skoletiden: Empiri</a> (4 Articles, 2 Videos | <a href="https://www.youtube.com/watch_videos?title=Undervisning+udenfor+skoletiden%3A+Empiri&video_ids=hKa5Of7Dlbg%2Crw3s2C2TIO8">9m 59s</a> )</li>
</ul></li>
<li><a href="https://da.khanacademy.org/resources/khan-bncc">Khan Academy e a BNCC</a> (2 Topics)</li>
</ul>
<p>Compiled by Andrew Brampton (<a href="https://bramp.net">https://bramp.net</a>) - 2020</p>
</body>
</html>
| 231.477629 | 800 | 0.779307 |
8fb8d791b52ec9ce590c37d7ed0494385df31650 | 159 | kt | Kotlin | testData/exec/sequence/src/filter/FilterIndexed.kt | bibaev/kotlin-stream-debugger | ef35c14bc9b242aaa7db22ef1f8f34e9a6cdea3d | [
"Apache-2.0"
] | 2 | 2019-02-08T11:22:49.000Z | 2019-07-26T12:51:36.000Z | testData/exec/sequence/src/filter/FilterIndexed.kt | bibaev/kotlin-stream-debugger | ef35c14bc9b242aaa7db22ef1f8f34e9a6cdea3d | [
"Apache-2.0"
] | null | null | null | testData/exec/sequence/src/filter/FilterIndexed.kt | bibaev/kotlin-stream-debugger | ef35c14bc9b242aaa7db22ef1f8f34e9a6cdea3d | [
"Apache-2.0"
] | 2 | 2018-06-03T03:36:51.000Z | 2019-09-16T06:15:19.000Z | package filter
fun main(args: Array<String>) {
// Breakpoint!
intArrayOf(1, 2, 3).asSequence().filterIndexed({ index, _ -> index % 2 == 0 }).count()
} | 26.5 | 90 | 0.622642 |
cb5c2245160d3f8c0f46a2a07f244337cc1ed024 | 353 | html | HTML | templates/faves.html | johnwesleyharding/Unit3Sprint3MVP | 17e769ab71cff0b19bfada4ef16417ecc5c3a2ff | [
"MIT"
] | null | null | null | templates/faves.html | johnwesleyharding/Unit3Sprint3MVP | 17e769ab71cff0b19bfada4ef16417ecc5c3a2ff | [
"MIT"
] | null | null | null | templates/faves.html | johnwesleyharding/Unit3Sprint3MVP | 17e769ab71cff0b19bfada4ef16417ecc5c3a2ff | [
"MIT"
] | null | null | null | <!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title> favorite dogs </title>
</head>
<body>
{%for dog in faves%}
<ul>
<li>
<img src = '{{dog[0]}}', alt = 'dog here'>
</li>
</ul>
{% endfor %}
</body>
</html>
| 17.65 | 58 | 0.371105 |
6ba2b1e169cbcfe481b80ad9aceca31671e8046f | 1,428 | h | C | Gui3d/ButtonPopup.h | CarysT/medusa | 8e79f7738534d8cf60577ec42ed86621533ac269 | [
"MIT"
] | 32 | 2016-05-22T23:09:19.000Z | 2022-03-13T03:32:27.000Z | Gui3d/ButtonPopup.h | CarysT/medusa | 8e79f7738534d8cf60577ec42ed86621533ac269 | [
"MIT"
] | 2 | 2016-05-30T19:45:58.000Z | 2018-01-24T22:29:51.000Z | Gui3d/ButtonPopup.h | CarysT/medusa | 8e79f7738534d8cf60577ec42ed86621533ac269 | [
"MIT"
] | 17 | 2016-05-27T11:01:42.000Z | 2022-03-13T03:32:30.000Z | /*
ButtonPopup.h
This button displays it's child objects when active
(c)2005 Palestar Inc, Richard Lyle
*/
#ifndef BUTTONPOPUP_H
#define BUTTONPOPUP_H
#include "Gui3d/WindowButton.h"
#include "Gui3d/GUI3DDll.h"
//----------------------------------------------------------------------------
class DLL ButtonPopup : public WindowButton
{
public:
DECLARE_WIDGET_CLASS();
DECLARE_PROPERTY_LIST();
// Types
typedef Reference<ButtonPopup> Ref;
enum PopupStyle
{
POPDOWN_SIBLINGS = USER3, // popdown any sibling popup buttons when this button is pressed
DISABLE_CHILDREN = USER4, // when children are not active, are they disabled
HIDE_SIBLINGS = USER5, // when button is activated, do we hide all sibling windows
};
// Construction
ButtonPopup();
// NodeInterfaceClient interface
void onActivate();
// WindowButton Interface
void onButtonDown(); // called on button depressed
void onButtonUp();
void onButtonAbort();
// Accessors
bool up() const;
// Mutators
virtual void popDown();
virtual void popUp();
private:
// Data
bool m_Up;
};
//----------------------------------------------------------------------------
inline bool ButtonPopup::up() const
{
return m_Up;
}
//-------------------------------------------------------------------------------
#endif
//----------------------------------------------------------------------------
// EOF
| 20.695652 | 93 | 0.545518 |
3ab55339a3a98a636c9974ba92fd90088eaec34e | 1,852 | sql | SQL | oracle/ora/awr/awrload.sql | hyee/dbcli | a39fdffdc5a15b9a6e17dc8e6e852003a8dedf0d | [
"MIT"
] | 44 | 2015-05-07T16:11:03.000Z | 2021-09-19T08:59:20.000Z | oracle/ora/awr/awrload.sql | hyee/dbcli | a39fdffdc5a15b9a6e17dc8e6e852003a8dedf0d | [
"MIT"
] | 8 | 2015-05-08T03:38:03.000Z | 2020-05-22T11:00:47.000Z | oracle/ora/awr/awrload.sql | hyee/dbcli | a39fdffdc5a15b9a6e17dc8e6e852003a8dedf0d | [
"MIT"
] | 24 | 2015-05-07T16:17:41.000Z | 2022-01-02T13:10:29.000Z | /*[[Import AWR repository dump. Usage: @@NAME <directory_name> <file_name> [<new_dbid>]
--[[
@ARGS: 2
--]]
]]*/
SET SQLTIMEOUT 7200
DECLARE
dir VARCHAR2(128) := :V1;
file VARCHAR2(512) := :V2;
did INT := :V3;
root VARCHAR2(512);
dump BFILE;
len NUMBER;
stage VARCHAR2(30) := 'DBCLI_AWR';
BEGIN
SELECT MAX(directory_name), MAX(directory_path)
INTO dir, root
FROM ALL_DIRECTORIES
WHERE upper(directory_name) = upper(dir);
IF dir IS NULL THEN
raise_application_error(-20001, 'Cannot access directory: ' || :V1);
END IF;
IF NOT regexp_like(root, '[\\/]$') THEN
root := root || CASE WHEN root LIKE '%/%' THEN '/' ELSE '\' END;
END IF;
dump := bfilename(dir, file||'.dmp');
BEGIN
dbms_lob.fileopen(dump);
len := dbms_lob.getlength(dump);
dbms_lob.fileclose(dump);
EXCEPTION WHEN OTHERS THEN
raise_application_error(-20001, 'Cannot access file: ' || root || file || '.dmp');
END;
$IF DBMS_DB_VERSION.VERSION>18 $THEN
sys.dbms_workload_repository.awr_imp(dmpfile => file, dmpdir => dir, new_dbid => did);
$ELSE
BEGIN
stage := CASE sys_context('userenv', 'con_name') WHEN 'CDB$ROOT' THEN 'C##' END || stage;
EXCEPTION WHEN OTHERS NULL;
END;
$IF DBMS_DB_VERSION.VERSION>17 $THEN
sys.dbms_workload_repository.load(schname => stage, dmpfile => file, dmpdir => dir, new_dbid => did);
$ELSE
dbms_swrf_internal.awr_load(schname => stage,dmpfile => file, dmpdir => dir);
dbms_swrf_internal.move_to_awr(schname => stage, new_dbid => did);
dbms_swrf_internal.clear_awr_dbid;
$END
$END
dbms_output.put_line('AWR repository is imported from ' || root || file || '.dmp');
END;
/ | 33.672727 | 113 | 0.599892 |
53c4c8ce09c29a66877a0fa58016384e8efb3f61 | 2,655 | java | Java | src/mappers/owl/OWLEquivalenceSCSPMapper.java | jrbn/webpie | 843807ef875b056b875cb250134730facc9c7cf1 | [
"Apache-2.0"
] | 2 | 2015-12-01T18:34:43.000Z | 2021-07-05T07:45:12.000Z | src/mappers/owl/OWLEquivalenceSCSPMapper.java | jrbn/webpie | 843807ef875b056b875cb250134730facc9c7cf1 | [
"Apache-2.0"
] | null | null | null | src/mappers/owl/OWLEquivalenceSCSPMapper.java | jrbn/webpie | 843807ef875b056b875cb250134730facc9c7cf1 | [
"Apache-2.0"
] | null | null | null | package mappers.owl;
import java.io.IOException;
import java.util.HashSet;
import java.util.Set;
import org.apache.hadoop.io.BytesWritable;
import org.apache.hadoop.io.LongWritable;
import org.apache.hadoop.mapreduce.Mapper;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import readers.FilesTriplesReader;
import utils.NumberUtils;
import utils.TriplesUtils;
import data.Triple;
import data.TripleSource;
public class OWLEquivalenceSCSPMapper extends
Mapper<TripleSource, Triple, LongWritable, BytesWritable> {
protected static Logger log = LoggerFactory
.getLogger(OWLEquivalenceSCSPMapper.class);
private LongWritable oKey = new LongWritable();
private BytesWritable oValue = new BytesWritable();
private byte[] bValues = new byte[17];
private static Set<Long> subclassSchemaTriples = null;
private static Set<Long> subpropSchemaTriples = null;
@Override
public void map(TripleSource key, Triple value, Context context)
throws IOException, InterruptedException {
if (value.getSubject() == value.getObject())
return;
oKey.set(value.getSubject());
NumberUtils.encodeLong(bValues, 1, value.getObject());
if (value.getPredicate() == TriplesUtils.RDFS_SUBCLASS
&& subclassSchemaTriples.contains(value.getObject())) {
bValues[0] = 0;
oValue.set(bValues, 0, 9);
context.write(oKey, oValue);
}
if (value.getPredicate() == TriplesUtils.OWL_EQUIVALENT_CLASS) {
bValues[0] = 2;
oValue.set(bValues, 0, 9);
context.write(oKey, oValue);
oKey.set(value.getObject());
NumberUtils.encodeLong(bValues, 1, value.getSubject());
oValue.set(bValues, 0, 9);
context.write(oKey, oValue);
}
if (value.getPredicate() == TriplesUtils.RDFS_SUBPROPERTY
&& subpropSchemaTriples.contains(value.getObject())) {
bValues[0] = 1;
oValue.set(bValues, 0, 9);
context.write(oKey, oValue);
}
if (value.getPredicate() == TriplesUtils.OWL_EQUIVALENT_PROPERTY) {
bValues[0] = 3;
oValue.set(bValues, 0, 9);
context.write(oKey, oValue);
oKey.set(value.getObject());
NumberUtils.encodeLong(bValues, 1, value.getSubject());
oValue.set(bValues, 0, 9);
context.write(oKey, oValue);
}
}
@Override
public void setup(Context context) throws IOException {
if (subpropSchemaTriples == null) {
subpropSchemaTriples = new HashSet<Long>();
FilesTriplesReader.loadSetIntoMemory(subpropSchemaTriples, context,
"FILTER_ONLY_SUBPROP_SCHEMA", -1);
}
if (subclassSchemaTriples == null) {
subclassSchemaTriples = new HashSet<Long>();
FilesTriplesReader.loadSetIntoMemory(subclassSchemaTriples,
context, "FILTER_ONLY_SUBCLASS_SCHEMA", -1);
}
}
}
| 28.548387 | 70 | 0.73484 |
28606435e1e5e3f888988d0dc49fb37281a76692 | 9,578 | lua | Lua | modules/libraries/backend/pulseaudio/init.lua | SkyyySi/norsome2 | 74e5977868230ddc9185f1d27a3d849440e9fb15 | [
"Unlicense"
] | null | null | null | modules/libraries/backend/pulseaudio/init.lua | SkyyySi/norsome2 | 74e5977868230ddc9185f1d27a3d849440e9fb15 | [
"Unlicense"
] | null | null | null | modules/libraries/backend/pulseaudio/init.lua | SkyyySi/norsome2 | 74e5977868230ddc9185f1d27a3d849440e9fb15 | [
"Unlicense"
] | null | null | null | #!/usr/bin/env lua5.3
local awful = require("awful")
local wibox = require("wibox")
local gears = require("gears")
local naughty = require("naughty")
-- Define the base module
local pulseaudio = {
-- Create a new instance
new = function(self, selected_cli)
local object = {
-- There are multiple pulseaudio clis available, see below.
selected_cli = selected_cli or "pamixer"
}
setmetatable(object, self)
self.__index = self
return object
end
}
-- Signals used by this module:
-- > "pulseaudio::get_volume": used for widgets to be notified when
-- | the volume was changed by another part of the code.
-- Commands used to call the specific cli tools used to mamange pulseaudio.
-- By default, this is configured for pamixer, but on Debian, you may want to
-- override this with pulsemixer.
pulseaudio.pamixer = {}
pulseaudio.pulsemixer = {}
--------------------------------------------------
--- Get volume ---
--------------------------------------------------
-- Get the current playback volume. Callback must be nil or a function accepting
-- a number value (the volume in percent). Note that this function is not
-- intended to be called directly. Use the "pulseaudio::get_volume"-signal instead.
function pulseaudio.pamixer.get_volume(callback)
awful.spawn.easy_async({"pamixer", "--get-volume"}, function(volume)
volume = tonumber(volume)
if callback then
callback(volume)
end
awesome.emit_signal("pulseaudio::get_volume", volume)
end)
end
-- Run it automatically in a loop.
pulseaudio.pamixer.volume_updater = gears.timer {
timeout = 0.3,
call_now = true,
autostart = true,
callback = function()
pulseaudio.pamixer.get_volume()
end,
}
-- Signal that the timer is alreay running.
awesome.emit_signal("pulseaudio::volume_updater_running", true)
-- Prevent multiple instances to needlessly run at the same time.
awesome.connect_signal("pulseaudio::volume_updater_running", function(status)
if status then
notify("Stopped already running update timer!")
pulseaudio.pamixer.volume_updater:stop()
end
end)
--------------------------------------------------
--- Set volume ---
--------------------------------------------------
-- Set the current playback volume.
function pulseaudio.pamixer.set_volume(volume)
awful.spawn({"pamixer", "--set-volume", tostring(volume)})
end
-- Connect it to a signal.
awesome.connect_signal("pulseaudio::set_volume", function(volume)
pulseaudio.pamixer.set_volume(volume)
end)
--------------------------------------------------
--- Increment volume ---
--------------------------------------------------
-- Increment the volume by n or 1
function pulseaudio.pamixer.increase_volume(volume)
if not volume then volume = 1 end
awful.spawn({"pamixer", "--increase", tostring(volume)})
end
-- Connect it to a signal.
awesome.connect_signal("pulseaudio::increase_volume", function(volume)
pulseaudio.pamixer.increase_volume(volume)
end)
--------------------------------------------------
--- Decrement volume ---
--------------------------------------------------
-- Decrement the volume by n or 1
function pulseaudio.pamixer.decrease_volume(volume)
if not volume then volume = 1 end
awful.spawn({"pamixer", "--decrease", tostring(volume)})
end
-- Connect it to a signal.
awesome.connect_signal("pulseaudio::decrease_volume", function(volume)
pulseaudio.pamixer.decrease_volume(volume)
end)
--------------------------------------------------
--- Mute status ---
--------------------------------------------------
-- Get the current mute status. true = muted, false = unmuted.
-- Callback must be nil or a function accepting a boolean value.
-- Note that this function is not intended to be called directly.
-- Use the "pulseaudio::get_mute"-signal instead.
function pulseaudio.pamixer.get_mute(callback)
awful.spawn.easy_async({"pamixer", "--get-mute"}, function(status)
-- cli commands always return a string and lua does not have a
-- `tobool()`-builtin.
if status == "true" then
status = true
else
status = false
end
if callback then
callback(tonumber(status))
end
awesome.emit_signal("pulseaudio::get_mute", status)
end)
end
--------------------------------------------------
--- Mute ---
--------------------------------------------------
-- Mute the volume
function pulseaudio.pamixer.mute()
awful.spawn({"pamixer", "--mute"})
end
-- Connect it to a signal.
awesome.connect_signal("pulseaudio::mute", function()
pulseaudio.pamixer.mute()
end)
--------------------------------------------------
--- Unmute ---
--------------------------------------------------
-- Unmute the volume
function pulseaudio.pamixer.unmute()
awful.spawn({"pamixer", "--mute"})
end
-- Connect it to a signal.
awesome.connect_signal("pulseaudio::unmute", function()
pulseaudio.pamixer.mute()
end)
--------------------------------------------------
--- Toggle mute ---
--------------------------------------------------
-- Unmute the volume
function pulseaudio.pamixer.unmute()
awful.spawn({"pamixer", "--toggle-mute"})
end
-- Connect it to a signal.
awesome.connect_signal("pulseaudio::toggle_mute", function()
pulseaudio.pamixer.mute()
end)
--------------------------------------------------
--- Widgets ---
--------------------------------------------------
-- A few basic widgets for managing volume. Can be used as templates for
-- creating your own, more advanced (or nicer looking) ones.
pulseaudio.widget = {}
--------------------------------------------------
--- Slider ---
--------------------------------------------------
-- A basic volume slider based on wibox.widget.slider
-- The first argument must be arguments for wibox.widget.slider
-- as a table or nil.
function pulseaudio.widget.volume_slider(args) --> table
-- Set a few basic default options if none are given.
if not args then
args = {
minimum = 0,
value = 50,
maximum = 100,
forced_width = 200,
}
end
-- Create a new slider widget.
local slider = wibox.widget.slider(args)
-- Connect the widget to the volume signal.
awesome.connect_signal("pulseaudio::get_volume", function(volume)
slider:set_value(volume)
end)
-- Allow to set the volume using the mouse wheel.
slider:connect_signal("button::press", function(_,_,_,button)
if button == 4 then
awesome.emit_signal("pulseaudio::increase_volume", 5)
elseif button == 5 then
awesome.emit_signal("pulseaudio::decrease_volume", 5)
end
end)
-- Change the system volume when the slider value changes.
slider:connect_signal("property::value", function()
awesome.emit_signal("pulseaudio::set_volume", slider.value)
end)
return slider
end
--------------------------------------------------
--- Text label ---
--------------------------------------------------
function pulseaudio.widget.volume_label(args) --> table
-- Create a new slider widget.
local label = wibox.widget.textbox(args)
-- Connect the widget to the volume signal.
awesome.connect_signal("pulseaudio::get_volume", function(volume)
label:set_text(volume)
end)
-- Allow to (un-)mute by left clicking the label and to
-- set the volume using the mouse wheel.
label:connect_signal("button::press", function(_,_,_,button)
if button == 1 then
awesome.emit_signal("pulseaudio::toggle_mute")
elseif button == 4 then
awesome.emit_signal("pulseaudio::increase_volume", 5)
elseif button == 5 then
awesome.emit_signal("pulseaudio::decrease_volume", 5)
end
end)
return label
end
--------------------------------------------------
--- Status notifications ---
--------------------------------------------------
pulseaudio.notification = {
volume = { enabled = false },
mute = { enabled = false },
}
function pulseaudio.notification.volume:enable()
self.enabled = true
awesome.connect_signal("pulseaudio::get_volume", function(volume)
naughty.notification {
title = "Volume change",
message = "Current volume: " .. tostring(volume),
category = "pulseaudio.volume",
app_name = "pulseaudio_cli_awesome_bindings",
timeout = 1,
}
end)
end
function pulseaudio.notification.volume:disable()
self.enabled = false
awesome.disconnect_signal("pulseaudio::get_volume")
end
function pulseaudio.notification.volume:toggle()
if self.enabled then
self:disable()
else
self:enable()
end
end
function pulseaudio.notification.mute:enable()
self.enabled = true
awesome.connect_signal("pulseaudio::get_mute", function(muted)
local title = "Unmuted"
local text = "System unmuted"
if muted then
title = "Muted"
text = "System muted"
end
naughty.notification {
title = title,
message = text,
category = "pulseaudio.mute",
app_name = "pulseaudio_cli_awesome_bindings",
timeout = 1,
}
end)
end
function pulseaudio.notification.mute:disable()
self.enabled = false
awesome.disconnect_signal("pulseaudio::get_mute")
end
function pulseaudio.notification.mute:toggle()
if self.enabled then
self:disable()
else
self:enable()
end
end
-- Select the correct cli tool.
if pulseaudio.current_cli == "pamixer" then
pulseaudio.cli = pulseaudio.pamixer
elseif pulseaudio.current_cli == "pulsemixer" then
pulseaudio.cli = pulseaudio.pulsemixer
end
return pulseaudio:new()
| 29.29052 | 83 | 0.609313 |
36c879725b4f86e014b75746a619d3eddb655e2f | 1,727 | swift | Swift | iMarvel/iMarvel/Extensions/UIFont/UIFont.swift | rcasanovan/iMarvel | ddee93de99cc506e4cb9c206dfcd4129be021bc4 | [
"Apache-2.0"
] | 2 | 2019-03-01T16:37:52.000Z | 2019-09-07T23:07:41.000Z | iMarvel/iMarvel/Extensions/UIFont/UIFont.swift | rcasanovan/iMarvel | ddee93de99cc506e4cb9c206dfcd4129be021bc4 | [
"Apache-2.0"
] | null | null | null | iMarvel/iMarvel/Extensions/UIFont/UIFont.swift | rcasanovan/iMarvel | ddee93de99cc506e4cb9c206dfcd4129be021bc4 | [
"Apache-2.0"
] | null | null | null | //
// UIFont.swift
// iMarvel
//
// Created by Ricardo Casanova on 17/12/2018.
// Copyright © 2018 Wallapop. All rights reserved.
//
import UIKit
extension UIFont {
/**
* Get InterUI Black font
*/
public class func interUIBlackWithSize(size : CGFloat) -> UIFont? {
return UIFont(name: "InterUI-Black", size: size)
}
/**
* Get InterUI Black Italic font
*/
public class func interUIBlackItalicWithSize(size : CGFloat) -> UIFont? {
return UIFont(name: "InterUI-BlackItalic", size: size)
}
/**
* Get InterUI Bold font
*/
public class func interUIBoldWithSize(size : CGFloat) -> UIFont? {
return UIFont(name: "InterUI-Bold", size: size)
}
/**
* Get InterUI Bold Italic font
*/
public class func interUIBoldItalicWithSize(size : CGFloat) -> UIFont? {
return UIFont(name: "InterUI-BoldItalic", size: size)
}
/**
* Get InterUI Italic font
*/
public class func interUIItalicWithSize(size : CGFloat) -> UIFont? {
return UIFont(name: "InterUI-Italic", size: size)
}
/**
* Get InterUI Medium font
*/
public class func interUIMediumWithSize(size : CGFloat) -> UIFont? {
return UIFont(name: "InterUI-Medium", size: size)
}
/**
* Get InterUI Medium Italic font
*/
public class func interUIMediumItalicWithSize(size : CGFloat) -> UIFont? {
return UIFont(name: "InterUI-MediumItalic", size: size)
}
/**
* Get InterUI Regular font
*/
public class func interUIRegularWithSize(size : CGFloat) -> UIFont? {
return UIFont(name: "InterUI-Regular", size: size)
}
}
| 25.028986 | 78 | 0.599305 |
99412084ad8354eeac28b286ec51d9199233a7ad | 1,220 | h | C | include/Crc.h | Tomash667/carpglib | c8701b170e4e2cbdb4d52fe3b7c8529afb3e97ed | [
"MIT"
] | 4 | 2019-08-18T19:33:04.000Z | 2021-08-07T02:12:54.000Z | include/Crc.h | Tomash667/carpglib | c8701b170e4e2cbdb4d52fe3b7c8529afb3e97ed | [
"MIT"
] | 5 | 2019-08-14T05:45:56.000Z | 2021-03-15T07:47:24.000Z | include/Crc.h | Tomash667/carpglib | c8701b170e4e2cbdb4d52fe3b7c8529afb3e97ed | [
"MIT"
] | 2 | 2019-10-05T02:36:35.000Z | 2021-02-15T20:20:09.000Z | #pragma once
//-----------------------------------------------------------------------------
class Crc
{
public:
Crc() : m_crc(CRC32_NEGL) {}
void Update(const byte *input, size_t length);
uint Get() const { return ~m_crc; }
operator uint() const { return Get(); }
// Don't use for types with padding!
template<typename T>
void Update(const T& item)
{
Update((const byte*)&item, sizeof(item));
}
template<>
void Update(const string& str)
{
if(!str.empty())
Update((const byte*)str.c_str(), str.length());
}
template<>
void Update(const cstring& str)
{
assert(str);
Update((const byte*)str, strlen(str));
}
// Don't use for types with padding!
template<typename T>
void Update(const vector<T>& v)
{
Update(v.size());
if(!v.empty())
Update((const byte*)v.data(), v.size() * sizeof(T));
}
template<>
void Update(const vector<string>& v)
{
Update(v.size());
for(const string& s : v)
Update(s);
}
void Update0()
{
Update<byte>(0);
}
void Update1()
{
Update<byte>(1);
}
static uint Calculate(Cstring filename);
static uint Calculate(FileReader& file);
private:
static const uint CRC32_NEGL = 0xffffffffL;
static const uint m_tab[256];
uint m_crc;
};
| 17.941176 | 79 | 0.602459 |
c020d6976db163d153fc03dd5ef32fc2e32e83a1 | 363 | kt | Kotlin | Todoey/app/src/main/java/com/example/todoey/app/TodoApplication.kt | antoniosj/Cool-Kids-Code-in-Android | 693f5d85915ef16c65f8852c330c93c4b5040cef | [
"MIT"
] | null | null | null | Todoey/app/src/main/java/com/example/todoey/app/TodoApplication.kt | antoniosj/Cool-Kids-Code-in-Android | 693f5d85915ef16c65f8852c330c93c4b5040cef | [
"MIT"
] | null | null | null | Todoey/app/src/main/java/com/example/todoey/app/TodoApplication.kt | antoniosj/Cool-Kids-Code-in-Android | 693f5d85915ef16c65f8852c330c93c4b5040cef | [
"MIT"
] | null | null | null | package com.example.todoey.app
import android.app.Application
import com.example.todoey.di.appModule
import com.example.todoey.domain.repository.local.LocalTaskRepository
import org.koin.android.ext.android.startKoin
class TodoApplication: Application() {
override fun onCreate() {
super.onCreate()
startKoin(this, listOf(appModule))
}
} | 27.923077 | 69 | 0.76584 |
2d9bf76d833a7ad373e9c323793079c0f834bed9 | 2,328 | rs | Rust | tests/basic.rs | piegamesde/woab | 2f98f741d82b4d694ad56bd69cd9f0539ee6715d | [
"MIT"
] | null | null | null | tests/basic.rs | piegamesde/woab | 2f98f741d82b4d694ad56bd69cd9f0539ee6715d | [
"MIT"
] | null | null | null | tests/basic.rs | piegamesde/woab | 2f98f741d82b4d694ad56bd69cd9f0539ee6715d | [
"MIT"
] | null | null | null | use gtk::prelude::*;
#[macro_use]
mod util;
#[derive(woab::Factories)]
struct Factories {
#[factory(extra(buf_left, buf_right))]
win_test: woab::BuilderFactory,
}
struct TestActor {
widgets: TestWidgets,
}
impl actix::Actor for TestActor {
type Context = actix::Context<Self>;
}
#[derive(Clone, woab::WidgetsFromBuilder)]
pub struct TestWidgets {
win_test: gtk::ApplicationWindow,
btn_copy_right_to_left: gtk::Button,
btn_copy_left_to_right: gtk::Button,
buf_left: gtk::TextBuffer,
buf_right: gtk::TextBuffer,
}
#[derive(woab::BuilderSignal)]
enum TestSignal {
CopyRightToLeft(gtk::Button),
CopyLeftToRight,
}
fn get_text(buffer: >k::TextBuffer) -> String {
if let Some(text) = buffer.get_text(&buffer.get_start_iter(), &buffer.get_end_iter(), true) {
text.into()
} else {
"".to_owned()
}
}
impl actix::StreamHandler<TestSignal> for TestActor {
fn handle(&mut self, signal: TestSignal, _ctx: &mut Self::Context) {
match signal {
TestSignal::CopyRightToLeft(_) => {
self.widgets.buf_left.set_text(&get_text(&self.widgets.buf_right));
}
TestSignal::CopyLeftToRight => {
self.widgets.buf_right.set_text(&get_text(&self.widgets.buf_left));
}
}
}
}
#[test]
fn test_basic() -> anyhow::Result<()> {
let factories = Factories::read(include_bytes!("basic.glade") as &[u8])?;
gtk::init()?;
woab::run_actix_inside_gtk_event_loop("test")?;
let mut put_widgets_in = None;
factories
.win_test
.instantiate()
.actor()
.connect_signals(TestSignal::connector())
.create(|ctx| {
let widgets = ctx.widgets::<TestWidgets>().unwrap();
put_widgets_in = Some(widgets.clone());
TestActor { widgets }
});
let widgets = put_widgets_in.unwrap();
widgets.buf_left.set_text("test left");
wait_for!(get_text(&widgets.buf_right) == "")?;
widgets.btn_copy_left_to_right.emit_clicked();
wait_for!(get_text(&widgets.buf_right) == "test left")?;
widgets.buf_left.set_text("");
widgets.buf_right.set_text("test right");
widgets.btn_copy_right_to_left.emit_clicked();
wait_for!(get_text(&widgets.buf_left) == "test right")?;
Ok(())
}
| 28.048193 | 97 | 0.63445 |
9c3671c681220bcde1cdf9ca479512cffa39b3a1 | 55 | js | JavaScript | FinalProject/JS/tinyMce.js | wornsoulbit/FinalProjectECom | f798391c424482a1e3367e2875ff80816a6f5748 | [
"MIT"
] | null | null | null | FinalProject/JS/tinyMce.js | wornsoulbit/FinalProjectECom | f798391c424482a1e3367e2875ff80816a6f5748 | [
"MIT"
] | null | null | null | FinalProject/JS/tinyMce.js | wornsoulbit/FinalProjectECom | f798391c424482a1e3367e2875ff80816a6f5748 | [
"MIT"
] | null | null | null | tinymce.init({
selector: 'textarea#page_text'
}); | 18.333333 | 34 | 0.654545 |
2f009a6b7725db5ca5c56bfcd533bb24ffeeb957 | 1,435 | php | PHP | database/migrations/2017_09_04_134538_formulario_cultivos.php | hudson940/EPI | 5520ef46cf26f31b29066bb88ef7ab3780885d2b | [
"Apache-2.0"
] | null | null | null | database/migrations/2017_09_04_134538_formulario_cultivos.php | hudson940/EPI | 5520ef46cf26f31b29066bb88ef7ab3780885d2b | [
"Apache-2.0"
] | null | null | null | database/migrations/2017_09_04_134538_formulario_cultivos.php | hudson940/EPI | 5520ef46cf26f31b29066bb88ef7ab3780885d2b | [
"Apache-2.0"
] | null | null | null | <?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class FormularioCultivos extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('formulario_cultivos', function (Blueprint $table) {
$table->increments('id');
$table->integer('P1_cod_pred');
$table->string('P27_cultivo',50)->nullable();
$table->decimal('P28_area_sembrada',10,2)->nullable();
$table->integer('P29_tipo')->nullable();
$table->decimal('P30_cant_cosech',10,2)->nullable();
$table->decimal('P31_duracion',10,2)->nullable();
$table->integer('P32_finalidad')->nullable();
$table->decimal('P33_cant_autoC',10,2)->nullable();
$table->decimal('P34_area_autoC',10,2)->nullable();
$table->decimal('P35_productividad',10,2)->nullable();
$table->string('P36_tipo_semilla',90)->nullable();
$table->rememberToken();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('formulario_cultivos');
}
}
| 27.075472 | 75 | 0.530314 |
f7154e18ed66bdbc9f3e06766d10c78083b9ce31 | 1,658 | h | C | include/macekit/mat.h | XiaoMi/mace-kit | f151a857313b1cf9b1ff6aea0a66c1cd5fbb15d1 | [
"Apache-2.0"
] | 29 | 2019-12-31T11:49:07.000Z | 2022-02-25T12:49:06.000Z | include/macekit/mat.h | XiaoMi/mace-kit | f151a857313b1cf9b1ff6aea0a66c1cd5fbb15d1 | [
"Apache-2.0"
] | 3 | 2020-01-23T07:06:23.000Z | 2021-11-01T08:19:48.000Z | include/macekit/mat.h | XiaoMi/mace-kit | f151a857313b1cf9b1ff6aea0a66c1cd5fbb15d1 | [
"Apache-2.0"
] | 6 | 2020-01-02T08:37:19.000Z | 2021-09-28T06:26:35.000Z | // Copyright 2019 The MACE-KIT Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef INCLUDE_MACEKIT_MAT_H_
#define INCLUDE_MACEKIT_MAT_H_
#include <vector>
#include <memory>
#include "macekit/export.h"
namespace mace_kit {
enum {
FM_RGB
};
enum {
DT_FLOAT32,
DT_UINT8,
DT_INT32
};
class MACEKIT_EXPORT Mat {
public:
Mat();
Mat(const std::vector<int> &shape, int data_type, int data_format);
Mat(const std::vector<int> &shape,
int data_type,
int data_format,
void *data);
Mat(const Mat &mat);
const void *ptr() const;
void *ptr();
template<typename T>
const T *data() const {
return reinterpret_cast<const T *>(ptr());
}
template<typename T>
T *data() {
return reinterpret_cast<T *>(ptr());
}
void Create(const std::vector<int> &shape, int data_type);
void CopyTo(Mat *mat) const;
Mat Clone() const;
std::vector<int> shape() const;
int data_type() const;
private:
std::vector<int> shape_;
int data_type_;
void *data_;
std::shared_ptr<void> created_data_;
};
} // namespace mace_kit
#endif // INCLUDE_MACEKIT_MAT_H_
| 20.469136 | 75 | 0.69421 |
802c649de3b06cc5efd83c5094fb91cafe9cf529 | 546 | sql | SQL | packages/acs-kernel/sql/oracle/upgrade/upgrade-5.6.0d3-5.6.0d4.sql | iuri/tutortronics | 463ea1535773d06ce34d269136eab3ecaffcb1cf | [
"Info-ZIP",
"ImageMagick"
] | null | null | null | packages/acs-kernel/sql/oracle/upgrade/upgrade-5.6.0d3-5.6.0d4.sql | iuri/tutortronics | 463ea1535773d06ce34d269136eab3ecaffcb1cf | [
"Info-ZIP",
"ImageMagick"
] | null | null | null | packages/acs-kernel/sql/oracle/upgrade/upgrade-5.6.0d3-5.6.0d4.sql | iuri/tutortronics | 463ea1535773d06ce34d269136eab3ecaffcb1cf | [
"Info-ZIP",
"ImageMagick"
] | null | null | null | alter table acs_data_links add relation_tag varchar2(100);
create index acs_data_links_rel_tag_idx on acs_data_links (relation_tag);
alter table acs_data_links drop constraint acs_data_links_un;
alter table acs_data_links add constraint acs_data_links_un unique
(object_id_one, object_id_two, relation_tag);
alter table apm_package_dependencies drop constraint apm_package_deps_type_ck;
alter table apm_package_dependencies add
constraint apm_package_deps_type_ck
check (dependency_type in ('provides', 'requires', 'extends', 'embeds'));
| 49.636364 | 78 | 0.846154 |
2a2a74fd6ddb107f168169a6d87d4b4a26a1d857 | 15,368 | java | Java | src/main/java/com/publictransitanalytics/scoregenerator/workflow/Calculation.java | PublicTransitAnalytics/ScoreGenerator | cc8753ef3d2e89c4ef07faa16ec835d2494105b1 | [
"Apache-2.0"
] | null | null | null | src/main/java/com/publictransitanalytics/scoregenerator/workflow/Calculation.java | PublicTransitAnalytics/ScoreGenerator | cc8753ef3d2e89c4ef07faa16ec835d2494105b1 | [
"Apache-2.0"
] | null | null | null | src/main/java/com/publictransitanalytics/scoregenerator/workflow/Calculation.java | PublicTransitAnalytics/ScoreGenerator | cc8753ef3d2e89c4ef07faa16ec835d2494105b1 | [
"Apache-2.0"
] | null | null | null | /*
* Copyright 2017 Public Transit Analytics.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.publictransitanalytics.scoregenerator.workflow;
import com.google.common.collect.BiMap;
import com.google.common.collect.ImmutableBiMap;
import com.google.common.collect.ImmutableSet;
import com.google.common.collect.ImmutableSetMultimap;
import com.google.common.collect.ImmutableSortedSet;
import com.google.common.collect.SetMultimap;
import com.google.common.collect.Sets;
import com.publictransitanalytics.scoregenerator.ModeType;
import com.publictransitanalytics.scoregenerator.ScoreGeneratorFatalException;
import com.publictransitanalytics.scoregenerator.schedule.patching.Transformer;
import com.publictransitanalytics.scoregenerator.datalayer.directories.ServiceDataDirectory;
import com.publictransitanalytics.scoregenerator.distance.DistanceClient;
import com.publictransitanalytics.scoregenerator.distance.DistanceStoreManager;
import com.publictransitanalytics.scoregenerator.distance.EstimatingDistanceClient;
import com.publictransitanalytics.scoregenerator.distance.ForwardPointSequencer;
import com.publictransitanalytics.scoregenerator.distance.OsrmLocalDistanceClient;
import com.publictransitanalytics.scoregenerator.distance.PointSequencerFactory;
import com.publictransitanalytics.scoregenerator.distance.RangedCachingReachabilityClient;
import com.publictransitanalytics.scoregenerator.distance.ReachabilityClient;
import com.publictransitanalytics.scoregenerator.distance.StoreBackedDistanceStoreManager;
import com.publictransitanalytics.scoregenerator.distance.SplitMergeDistanceClient;
import com.publictransitanalytics.scoregenerator.environment.Grid;
import com.publictransitanalytics.scoregenerator.location.Center;
import com.publictransitanalytics.scoregenerator.location.GridPoint;
import com.publictransitanalytics.scoregenerator.location.LogicalCenter;
import com.publictransitanalytics.scoregenerator.location.TransitStop;
import com.publictransitanalytics.scoregenerator.location.PointLocation;
import com.publictransitanalytics.scoregenerator.location.Sector;
import com.publictransitanalytics.scoregenerator.rider.ForwardRiderFactory;
import com.publictransitanalytics.scoregenerator.rider.RetrospectiveRiderFactory;
import com.publictransitanalytics.scoregenerator.rider.RiderFactory;
import com.publictransitanalytics.scoregenerator.schedule.DirectoryReadingTripScheduleCreator;
import com.publictransitanalytics.scoregenerator.schedule.InterpolationException;
import com.publictransitanalytics.scoregenerator.schedule.LastTimeScheduleInterpolator;
import com.publictransitanalytics.scoregenerator.schedule.ScheduleInterpolator;
import com.publictransitanalytics.scoregenerator.scoring.ScoreCard;
import com.publictransitanalytics.scoregenerator.walking.TimeTracker;
import java.time.LocalDateTime;
import java.util.Set;
import com.publictransitanalytics.scoregenerator.schedule.TransitNetwork;
import com.publictransitanalytics.scoregenerator.schedule.Trip;
import com.publictransitanalytics.scoregenerator.schedule.TripProcessingTransitNetwork;
import com.publictransitanalytics.scoregenerator.schedule.TripSchedule;
import com.publictransitanalytics.scoregenerator.schedule.patching.Patch;
import com.publictransitanalytics.scoregenerator.scoring.ScoreCardFactory;
import com.squareup.okhttp.OkHttpClient;
import java.time.Duration;
import java.util.Collection;
import java.util.List;
import java.util.Map;
import java.util.NavigableSet;
import java.util.stream.Collectors;
import lombok.Getter;
import lombok.extern.slf4j.Slf4j;
/**
*
* @author Public Transit Analytics
*/
@Slf4j
public class Calculation<S extends ScoreCard> {
@Getter
private final Set<TaskGroupIdentifier> taskGroups;
@Getter
private final NavigableSet<LocalDateTime> times;
@Getter
private final S scoreCard;
@Getter
private final TimeTracker timeTracker;
private final Set<ModeType> allowedModes;
@Getter
private final TransitNetwork transitNetwork;
private final boolean backward;
private final Duration longestDuration;
private final double walkingMetersPerSecond;
@Getter
private final BiMap<String, TransitStop> stopIdMap;
@Getter
private final SetMultimap<PointLocation, Sector> pointSectorMap;
private final Set<GridPoint> gridPoints;
@Getter
private final ReachabilityClient reachabilityClient;
@Getter
private final RiderFactory riderFactory;
public Calculation(final Grid grid, final Set<Center> centers,
final Duration longestDuration, final boolean backward,
final Duration span, final Duration samplingInterval,
final double walkingMetersPerSecond,
final TimeTracker timeTracker,
final Map<String, ServiceDataDirectory> serviceDirectoriesMap,
final ScoreCardFactory<S> scoreCardFactory,
final LocalDateTime startTime,
final ServiceDataDirectory serviceDirectory,
final List<Patch> patches,
final Set<TransitStop> addedStops,
final Set<TransitStop> deletedStops,
final BiMap<String, TransitStop> stopIdMap,
final String osrmEndpoint)
throws InterruptedException {
final LocalDateTime endTime = (span != null)
? startTime.plus(span) : null;
this.walkingMetersPerSecond = walkingMetersPerSecond;
this.longestDuration = longestDuration;
this.backward = backward;
this.timeTracker = timeTracker;
this.stopIdMap = stopIdMap;
gridPoints = grid.getGridPoints();
final LocalDateTime earliestTime = getEarliestTime(
startTime, longestDuration, backward);
final LocalDateTime latestTime = getLatestTime(
startTime, endTime, longestDuration, backward);
final TransitNetwork baseTransitNetwork = buildTransitNetwork(
serviceDirectory, earliestTime, latestTime, stopIdMap,
backward);
pointSectorMap = buildPointSectorMap(grid, stopIdMap.values());
final PointSequencerFactory pointSequencerFactory;
final RiderFactory baseRiderFactory;
if (!backward) {
baseRiderFactory = new ForwardRiderFactory(baseTransitNetwork);
pointSequencerFactory = (origin, destinations)
-> new ForwardPointSequencer(origin, destinations);
} else {
baseRiderFactory = new RetrospectiveRiderFactory(
baseTransitNetwork);
pointSequencerFactory = (destination, origins)
-> new ForwardPointSequencer(destination, origins);
}
final DistanceClient distanceClient = buildOsrmDistanceClient(
osrmEndpoint, pointSequencerFactory, 1000);
final Set<PointLocation> centerPoints = centers.stream()
.map(Center::getPhysicalCenters).flatMap(Collection::stream)
.collect(Collectors.toSet());
final BiMap<String, PointLocation> basePointIdMap = buildPointIdMap(
centerPoints, stopIdMap, grid);
taskGroups = getTaskGroups(centers);
times = getTaskTimes(startTime, endTime, samplingInterval);
final DistanceClient estimator = new EstimatingDistanceClient(
walkingMetersPerSecond);
final DistanceStoreManager storeManager
= new StoreBackedDistanceStoreManager(
serviceDirectory.getWalkingTimeStore(),
serviceDirectory.getMaxWalkingTimeStore(),
basePointIdMap);
final ReachabilityClient baseReachabilityClient
= new RangedCachingReachabilityClient(
storeManager, basePointIdMap.values(),
timeTracker, distanceClient, estimator);
allowedModes = ImmutableSet.of(ModeType.TRANSIT, ModeType.WALKING);
final Transformer transformer = new Transformer(
timeTracker, baseTransitNetwork, backward, longestDuration,
walkingMetersPerSecond, distanceClient, estimator,
basePointIdMap, baseReachabilityClient, storeManager,
baseRiderFactory);
for (final Patch patch : patches) {
transformer.addTripPatch(patch);
}
for (final TransitStop stop : addedStops) {
transformer.addStop(stop);
}
for (final TransitStop stop : deletedStops) {
transformer.deleteStop(stop);
}
final Set<LogicalCenter> logicalCenters = centers.stream()
.map(Center::getLogicalCenter).collect(Collectors.toSet());
scoreCard = scoreCardFactory.makeScoreCard(
times.size() * logicalCenters.size(), pointSectorMap);
transitNetwork = transformer.getTransitNetwork();
riderFactory = transformer.getRiderFactory();
reachabilityClient = transformer.getReachabilityClient();
}
private static DistanceClient buildOsrmDistanceClient(
final String osrmEndpoint,
final PointSequencerFactory pointSequencerFactory,
final int maxConsidered) {
final DistanceClient osrmDistanceClient = new OsrmLocalDistanceClient(
new OkHttpClient(), osrmEndpoint, 5000, pointSequencerFactory);
return new SplitMergeDistanceClient(osrmDistanceClient, maxConsidered);
}
private static LocalDateTime getEarliestTime(
final LocalDateTime startTime, final Duration maxDuration,
final boolean backward) {
final LocalDateTime earliestTime;
if (backward) {
earliestTime = startTime.minus(maxDuration);
} else {
earliestTime = startTime;
}
return earliestTime;
}
private static LocalDateTime getLatestTime(
final LocalDateTime startTime, final LocalDateTime endTime,
final Duration maxDuration, final boolean backward) {
final LocalDateTime latestTime;
if (endTime != null) {
if (backward) {
latestTime = endTime;
} else {
latestTime = endTime.plus(maxDuration);
}
} else if (backward) {
latestTime = startTime;
} else {
latestTime = startTime.plus(maxDuration);
}
return latestTime;
}
private static BiMap<String, PointLocation> buildPointIdMap(
final Set<PointLocation> centerPoints,
final BiMap<String, TransitStop> transitStops, final Grid grid) {
final ImmutableBiMap.Builder<String, PointLocation> pointMapBuilder
= ImmutableBiMap.builder();
pointMapBuilder.putAll(transitStops);
for (final PointLocation centerPoint : centerPoints) {
pointMapBuilder.put(centerPoint.getIdentifier(), centerPoint);
}
final Set<? extends PointLocation> gridPoints = Sets.difference(
grid.getGridPoints(), centerPoints);
for (final PointLocation gridPoint : gridPoints) {
pointMapBuilder.put(gridPoint.getIdentifier(), gridPoint);
}
final BiMap<String, PointLocation> pointIdMap
= pointMapBuilder.build();
return pointIdMap;
}
private static Set<TaskGroupIdentifier> getTaskGroups(
final Set<Center> centerPoints) {
return centerPoints.stream().map(TaskGroupIdentifier::new)
.collect(Collectors.toSet());
}
private static NavigableSet<LocalDateTime> getTaskTimes(
final LocalDateTime startTime, final LocalDateTime endTime,
final Duration samplingInterval) {
final ImmutableSortedSet.Builder<LocalDateTime> builder
= ImmutableSortedSet.naturalOrder();
if (endTime == null) {
builder.add(startTime);
} else {
LocalDateTime time = startTime;
while (time.isBefore(endTime)) {
builder.add(time);
time = time.plus(samplingInterval);
}
}
return builder.build();
}
private static TransitNetwork buildTransitNetwork(
final ServiceDataDirectory serviceData,
final LocalDateTime earliestTime, final LocalDateTime latestTime,
final BiMap<String, TransitStop> stopIdMap,
final boolean backward)
throws InterruptedException {
final DirectoryReadingTripScheduleCreator tripScheduleCreator
= new DirectoryReadingTripScheduleCreator(
earliestTime, latestTime,
serviceData.getStopTimesDirectory(),
serviceData.getRouteDetailsDirectory(),
serviceData.getTripDetailsDirectory(),
serviceData.getServiceTypeCalendar(),
stopIdMap);
final ScheduleInterpolator interpolator
= new LastTimeScheduleInterpolator();
final Set<TripSchedule> schedules = tripScheduleCreator.createTrips();
final ImmutableSet.Builder<Trip> builder = ImmutableSet.builder();
try {
for (final TripSchedule schedule : schedules) {
builder.add(interpolator.createTrip(schedule));
}
final Set<Trip> trips = builder.build();
final TransitNetwork transitNetwork
= new TripProcessingTransitNetwork(trips, backward);
return transitNetwork;
} catch (final InterpolationException e) {
throw new ScoreGeneratorFatalException(e);
}
}
private static SetMultimap<PointLocation, Sector> buildPointSectorMap(
final Grid grid, final Set<TransitStop> stops) {
final ImmutableSetMultimap.Builder<PointLocation, Sector> builder
= ImmutableSetMultimap.builder();
for (final PointLocation gridPoint : grid.getGridPoints()) {
builder.putAll(gridPoint, grid.getSectors(gridPoint));
}
for (final TransitStop stop : stops) {
if (grid.coversPoint(stop.getLocation())) {
final Set<Sector> sectors = grid.getSectors(stop);
if (sectors.isEmpty()) {
log.warn("{} ({}) is not within the bounds.",
stop.getCommonName(),
stop.getLocation().toDegreeString());
} else {
builder.putAll(stop, sectors);
}
}
}
return builder.build();
}
}
| 44.16092 | 94 | 0.689745 |
d24a63b6197cf309f43eebefdcebb396c6e0c3de | 536 | php | PHP | database/factories/ExpenseModelFactory.php | stefanaritonovic2394/e-wallet | dfc296421514c827c5419ddc79fdba96d75fc524 | [
"MIT"
] | null | null | null | database/factories/ExpenseModelFactory.php | stefanaritonovic2394/e-wallet | dfc296421514c827c5419ddc79fdba96d75fc524 | [
"MIT"
] | null | null | null | database/factories/ExpenseModelFactory.php | stefanaritonovic2394/e-wallet | dfc296421514c827c5419ddc79fdba96d75fc524 | [
"MIT"
] | null | null | null | <?php
use Faker\Generator as Faker;
use App\Expenses\Expense;
use Carbon\Carbon;
$factory->define(Expense::class, function (Faker $faker) {
return [
'entry_date' => Carbon::now()->format('Y-m-d'),
'amount' => $this->faker->randomNumber(4),
'expense_category_id' => random_int(1, 3),
'currency_id' => random_int(1, 3),
'created_by_id' => random_int(1, 4),
'created_at' => Carbon::now()->format('Y-m-d H:i:s'),
'updated_at' => Carbon::now()->format('Y-m-d H:i:s'),
];
});
| 29.777778 | 61 | 0.576493 |
04a802c2fa9ece493b51b484e6767a94084bde97 | 4,458 | html | HTML | index.html | jorozco4/Team-Profile-Generator | 73d5a2a10ea8afea61e8cc8565b1bff1f87f333a | [
"MIT",
"Unlicense"
] | null | null | null | index.html | jorozco4/Team-Profile-Generator | 73d5a2a10ea8afea61e8cc8565b1bff1f87f333a | [
"MIT",
"Unlicense"
] | null | null | null | index.html | jorozco4/Team-Profile-Generator | 73d5a2a10ea8afea61e8cc8565b1bff1f87f333a | [
"MIT",
"Unlicense"
] | null | null | null | <!DOCTYPE html>
<html>
<head>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.4.1/font/bootstrap-icons.css"
/>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<script
src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"
></script>
<script
src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"
></script>
<style>
.row {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
margin-top: 20px;
margin-bottom: 20px;
}
.card {
background-color: red;
color: white;
}
.jumbotron {
background: red;
color: white;
}
</style>
<title>Team Profile Generator</title>
</head>
<body>
<div class="jumbotron">
<h1 class="text-center">My Team</h1>
</div>
<div class="container"></div>
<div class="row col-sm-6 col-sm-offset-3">
<div class="card border-success mb-3" style="max-width: 18rem">
<div class="card-header bg-transparent border-success">
John
<br />
<i class="bi bi-file-person">Employee</i>
</div>
<div class="card-body text-success">
<ul class="list-group">
<li class="list-group-item">ID:</li>
<li class="list-group-item">Email:</li>
<li class="list-group-item">Office number:</li>
</ul>
</div>
</div>
<div class="card border-success mb-3" style="max-width: 18rem">
<div class="card-header bg-transparent border-success">
James
<br />
<i class="bi bi-person-circle">Manager</i>
</div>
<div class="card-body text-success">
<ul class="list-group">
<li class="list-group-item">ID:</li>
<li class="list-group-item">Email:</li>
<li class="list-group-item">
Github: <a href="https://github.com/jorozco4" target="_blank"></a>
</li>
</ul>
</div>
</div>
<div class="card border-success mb-3" style="max-width: 18rem">
<div class="card-header bg-transparent border-success">
James
<br />
<i class="bi bi-wrench">Engineer</i>
</div>
<div class="card-body text-success">
<ul class="list-group">
<li class="list-group-item">ID:</li>
<li class="list-group-item">Email:</li>
<li class="list-group-item">Github:</li>
</ul>
</div>
</div>
<div class="card border-success mb-3" style="max-width: 18rem">
<div class="card-header bg-transparent border-success">
James
<br />
<i class="bi bi-wrench">Engineer</i>
</div>
<div class="card-body text-success">
<ul class="list-group">
<li class="list-group-item">ID:</li>
<li class="list-group-item">Email:</li>
<li class="list-group-item">Github:</li>
</ul>
</div>
</div>
<div class="card border-success mb-3" style="max-width: 18rem">
<div class="card-header bg-transparent border-success">
James
<br />
<i class="fas fa-user-graduate" style="font-size: 24px">Intern</i>
</div>
<div class="card-body text-success">
<ul class="list-group">
<li class="list-group-item">ID:</li>
<li class="list-group-item">Email:</li>
<li class="list-group-item">School:</li>
</ul>
</div>
</div>
</div>
</body>
</html>
| 32.779412 | 89 | 0.557873 |
cf0fe288923742afdaed64120896313bd7c1216c | 197 | asm | Assembly | programs/oeis/169/A169869.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/169/A169869.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/169/A169869.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A169869: Maximum number of rational points on a smooth absolutely irreducible projective curve of genus n over the field F_2.
; 5,6,7,8,9,10,10,11,12,13,14
mov $1,$0
div $1,6
sub $0,$1
add $0,5
| 24.625 | 127 | 0.715736 |
13657f38ffb215d1bfd009e2b4efbe08eadb4672 | 265 | c | C | URI/1132.c | jumouramar/programming-challenges-repository | c1e137c05e888a543af149aba903f7d7f33b42e1 | [
"MIT"
] | null | null | null | URI/1132.c | jumouramar/programming-challenges-repository | c1e137c05e888a543af149aba903f7d7f33b42e1 | [
"MIT"
] | null | null | null | URI/1132.c | jumouramar/programming-challenges-repository | c1e137c05e888a543af149aba903f7d7f33b42e1 | [
"MIT"
] | null | null | null | #include <stdio.h>
int main(){
int x, y, soma=0;
scanf("%d %d", &x, &y);
if(y<x){
int aux = x;
x = y;
y = aux;
}
for(int i=x; i<=y; i++){
if(i%13!=0) soma+=i;
}
printf("%d\n", soma);
return 0;
} | 12.619048 | 28 | 0.366038 |
f302c798a21988d378dcc32ab198c63c24e24ce0 | 1,857 | kt | Kotlin | plugins/space/src/main/kotlin/com/intellij/space/vcs/review/list/SpaceReviewListVm.kt | XZVB12/intellij-community | 9080e5edce26e8614fed7a64243512adcd68962d | [
"Apache-2.0"
] | 1 | 2020-12-05T13:29:34.000Z | 2020-12-05T13:29:34.000Z | plugins/space/src/main/kotlin/com/intellij/space/vcs/review/list/SpaceReviewListVm.kt | XZVB12/intellij-community | 9080e5edce26e8614fed7a64243512adcd68962d | [
"Apache-2.0"
] | null | null | null | plugins/space/src/main/kotlin/com/intellij/space/vcs/review/list/SpaceReviewListVm.kt | XZVB12/intellij-community | 9080e5edce26e8614fed7a64243512adcd68962d | [
"Apache-2.0"
] | 1 | 2020-10-15T05:56:42.000Z | 2020-10-15T05:56:42.000Z | // Copyright 2000-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package com.intellij.space.vcs.review.list
import circlet.client.api.ProjectKey
import circlet.client.api.TD_MemberProfile
import circlet.code.api.CodeReviewStateFilter
import circlet.code.api.CodeReviewWithCount
import circlet.code.api.ReviewSorting
import circlet.platform.api.ADate
import circlet.platform.client.XPagedListOnFlux
import com.intellij.space.messages.SpaceBundle
import com.intellij.space.vcs.SpaceProjectInfo
import libraries.coroutines.extra.Lifetimed
import org.jetbrains.annotations.PropertyKey
import runtime.reactive.MutableProperty
import runtime.reactive.Property
interface SpaceReviewsListVm : Lifetimed {
val spaceProjectInfo: SpaceProjectInfo
val sorting: MutableProperty<ReviewSorting>
val quickFiltersMap: Property<Map<ReviewListQuickFilter, ReviewListFilters>>
val spaceReviewsFilterSettings: MutableProperty<ReviewListFilters>
val isLoading: MutableProperty<Boolean>
val reviews: Property<XPagedListOnFlux<CodeReviewWithCount>>
fun refresh()
}
data class ReviewListFilters(
val projectKey: ProjectKey,
val state: CodeReviewStateFilter? = null,
val text: String = "",
val author: TD_MemberProfile? = null,
val reviewer: TD_MemberProfile? = null,
val createdFrom: ADate? = null,
val createdTo: ADate? = null
)
enum class ReviewListQuickFilter(@PropertyKey(resourceBundle = SpaceBundle.BUNDLE) private val key: String) {
OPEN("review.quick.filters.open"),
AUTHORED_BY_ME("review.quick.filters.includes.my.changes"),
NEEDS_MY_ATTENTION("review.quick.filters.needs.me.attention"),
NEEDS_MY_REVIEW("review.quick.filters.needs.my.review"),
CLOSED("review.quick.filters.closed");
override fun toString(): String = SpaceBundle.message(key)
} | 35.037736 | 140 | 0.806677 |
16afcfba661299e60268bd94d69885729c816de9 | 156 | ts | TypeScript | lib/providers/index.d.ts | FunFaSy/minter-sdk-js | 2b0f76481d86bab33cf3764ea4a2f97aa3727cba | [
"MIT"
] | 6 | 2021-12-09T17:55:25.000Z | 2021-12-13T08:51:55.000Z | lib/providers/index.d.ts | FunFaSy/minter-js-sdk | 2b0f76481d86bab33cf3764ea4a2f97aa3727cba | [
"MIT"
] | null | null | null | lib/providers/index.d.ts | FunFaSy/minter-js-sdk | 2b0f76481d86bab33cf3764ea4a2f97aa3727cba | [
"MIT"
] | null | null | null | /** @hidden @module */
import { Provider } from './provider';
import { JsonRpcProvider } from './json-rpc-provider';
export { Provider, JsonRpcProvider, };
| 31.2 | 54 | 0.685897 |
74cf2464531f0ca5a47b8fee7664299ec627dcd4 | 1,990 | js | JavaScript | angular/services/getSaveDataChr.js | lalit527/GameOfThrones | b5ba53d02f7802914a9da0841bb984ab59389f3e | [
"MIT"
] | null | null | null | angular/services/getSaveDataChr.js | lalit527/GameOfThrones | b5ba53d02f7802914a9da0841bb984ab59389f3e | [
"MIT"
] | null | null | null | angular/services/getSaveDataChr.js | lalit527/GameOfThrones | b5ba53d02f7802914a9da0841bb984ab59389f3e | [
"MIT"
] | null | null | null | gotApp.factory('getSaveDataChar', ['$q','$http', 'getAllDataService', '$interval', function($q, $http, getAllDataService, $interval) {
var main = this;
main.characters = 0;
main.charsArr = [];
var deferred = $q.defer()
var timerCharacter;
var getAllCharactersHelper = function(){
++main.characters;
getAllDataService.getAllHouses(main.characterUrl, main.characters , main.pageDataChar).then(function successCallback(response){
/*console.log(JSON.stringify(response.data));*/
//console.log(JSON.stringify(response.data));
for(var indx in response.data){
var tmpOject = {
"name": response.data[indx].name,
"characterName": response.data[indx].name,
"url" : response.data[indx].url,
"id" : response.data[indx].url.substring(response.data[indx].url.lastIndexOf('/')+1),
"gender": response.data[indx].gender,
"born": response.data[indx].born,
"title": response.data[indx].title,
"aliases": response.data[indx].aliases,
"died": response.data[indx].died,
"type": "characters"
};
main.charsArr.push(tmpOject);
}
});
}
var getAllCharacters = function(characterUrl, pageData){
main.characterUrl = characterUrl;
main.pageDataChar = pageData;
clearInterval(timerCharacter);
timerCharacter = $interval(getAllCharactersHelper,500,44).then(function(){
//console.log(main.charsArr);
//console.log(main.characters);
deferred.resolve(main.charsArr);
});
return deferred.promise;
}
return{
getAllCharacters: getAllCharacters
}
}]);
| 36.181818 | 135 | 0.532161 |
c7d423fa068508464eb1bdffe43ab9ac7402f665 | 6,603 | py | Python | pyowl.py | vene/pyowl | edef4cfeb31c4ea52cc67dce581372e2270fce2a | [
"BSD-3-Clause"
] | 57 | 2017-02-11T09:17:47.000Z | 2021-02-21T11:07:28.000Z | pyowl.py | vene/pyowl | edef4cfeb31c4ea52cc67dce581372e2270fce2a | [
"BSD-3-Clause"
] | 3 | 2019-08-07T15:09:00.000Z | 2019-08-30T11:53:17.000Z | pyowl.py | vene/pyowl | edef4cfeb31c4ea52cc67dce581372e2270fce2a | [
"BSD-3-Clause"
] | 13 | 2017-02-12T21:43:59.000Z | 2019-09-15T03:10:06.000Z | # Author: Vlad Niculae <vlad@vene.ro>
# License: BSD 3 clause
from __future__ import print_function
from __future__ import division
import numpy as np
from sklearn.base import BaseEstimator, ClassifierMixin, RegressorMixin
from sklearn.utils.extmath import safe_sparse_dot
from sklearn.isotonic import isotonic_regression
from sklearn.preprocessing import LabelBinarizer
from fista import fista
from loss import get_loss
def prox_owl(v, w):
"""Proximal operator of the OWL norm dot(w, reversed(sort(v)))
Follows description and notation from:
X. Zeng, M. Figueiredo,
The ordered weighted L1 norm: Atomic formulation, dual norm,
and projections.
eprint http://arxiv.org/abs/1409.4271
"""
# wlog operate on absolute values
v_abs = np.abs(v)
ix = np.argsort(v_abs)[::-1]
v_abs = v_abs[ix]
# project to K+ (monotone non-negative decreasing cone)
v_abs = isotonic_regression(v_abs - w, y_min=0, increasing=False)
# undo the sorting
inv_ix = np.zeros_like(ix)
inv_ix[ix] = np.arange(len(v))
v_abs = v_abs[inv_ix]
return np.sign(v) * v_abs
def _oscar_weights(alpha, beta, size):
w = np.arange(size - 1, -1, -1, dtype=np.double)
w *= beta
w += alpha
return w
def _fit_owl_fista(X, y, w, loss, max_iter=500, max_linesearch=20, eta=2.0,
tol=1e-3, verbose=0):
# least squares loss
def sfunc(coef, grad=False):
y_scores = safe_sparse_dot(X, coef)
if grad:
obj, lp = loss(y, y_scores, return_derivative=True)
grad = safe_sparse_dot(X.T, lp)
return obj, grad
else:
return loss(y, y_scores)
def nsfunc(coef, L):
return prox_owl(coef, w / L)
coef = np.zeros(X.shape[1])
return fista(sfunc, nsfunc, coef, max_iter, max_linesearch,
eta, tol, verbose)
class _BaseOwl(BaseEstimator):
"""
Solves sum loss(y_pred, y) + sum_j weights_j |coef|_(j)
where u_(j) is the jth largest component of the vector u.
and weights is a monotonic nonincreasing vector.
OWL is also known as: sorted L1 norm, SLOPE
Parameters
----------
weights: array, shape (n_features,) or tuple, length 2
Nonincreasing weights vector for the ordered weighted L1 penalty.
If weights = (alpha, 0, 0, ..., 0), this amounts to a L_inf penalty.
If weights = alpha * np.ones(n_features) it amounts to L1.
If weights is a tuple = (alpha, beta), the OSCAR penalty is used::
alpha ||coef||_1 + beta sum_{i<j} max{|x_i|, |x_j|)
by computing the corresponding `weights` vector as::
weights_i = alpha + beta(n_features - i - 1)
loss: string, default: "squared"
Loss function to use, see loss.py to add your own.
max_iter: int, default: 500
Maximum FISTA iterations.
max_linesearch: int, default: 20
Maximum number of FISTA backtracking line search steps.
eta: float, default: 2
Amount by which to increase step size in FISTA bactracking line search.
tol: float, default: 1e-3
Tolerance for the convergence criterion.
verbose: int, default 0:
Degree of verbosity to print from the solver.
References
----------
X. Zeng, M. Figueiredo,
The ordered weighted L1 norm: Atomic formulation, dual norm,
and projections.
eprint http://arxiv.org/abs/1409.4271
"""
def __init__(self, weights, loss='squared', max_iter=500,
max_linesearch=20, eta=2.0, tol=1e-3, verbose=0):
self.weights = weights
self.loss = loss
self.max_iter = max_iter
self.max_linesearch = max_linesearch
self.eta = eta
self.tol = tol
self.verbose = verbose
def fit(self, X, y):
n_features = X.shape[1]
loss = self.get_loss()
weights = self.weights
if isinstance(weights, tuple) and len(weights) == 2:
alpha, beta = self.weights
weights = _oscar_weights(alpha, beta, n_features)
self.coef_ = _fit_owl_fista(X, y, weights, loss, self.max_iter,
self.max_linesearch, self.eta, self.tol,
self.verbose)
return self
def _decision_function(self, X):
return safe_sparse_dot(X, self.coef_)
class OwlRegressor(_BaseOwl, RegressorMixin):
"""Ordered Weighted L1--penalized (OWL) regression solved by FISTA"""
__doc__ += _BaseOwl.__doc__
def get_loss(self):
if self.loss != 'squared':
raise NotImplementedError('Only regression loss implemented '
'at the moment is squared.')
return get_loss(self.loss)
def predict(self, X):
return self._decision_function(X)
class OwlClassifier(_BaseOwl, ClassifierMixin):
"""Ordered Weighted L1--penalized (OWL) classification solved by FISTA"""
__doc__ += _BaseOwl.__doc__
def get_loss(self):
return get_loss(self.loss)
def fit(self, X, y):
self.lb_ = LabelBinarizer(neg_label=-1)
y_ = self.lb_.fit_transform(y).ravel()
return super(OwlClassifier, self).fit(X, y_)
def decision_function(self, X):
return self._decision_function(X)
def predict(self, X):
y_pred = self.decision_function(X) > 0
return self.lb_.inverse_transform(y_pred)
if __name__ == '__main__':
from sklearn.model_selection import train_test_split
from sklearn.datasets import load_boston, load_breast_cancer
print("OSCAR proximal operator on toy example:")
v = np.array([1, 3, 2.9, 4, 0])
w_oscar = _oscar_weights(alpha=0.01, beta=1, size=5)
print(prox_owl(v, w_oscar))
print()
print("Regression")
X, y = load_boston(return_X_y=True)
X = np.column_stack([X, -X[:, 0] + 0.01 * np.random.randn(X.shape[0])])
X_tr, X_te, y_tr, y_te = train_test_split(X, y, random_state=0)
clf = OwlRegressor(weights=(1, 100))
clf.fit(X_tr, y_tr)
print("Correlated coefs", clf.coef_[0], clf.coef_[-1])
print("Test score", clf.score(X_te, y_te))
print()
print("Classification")
X, y = load_breast_cancer(return_X_y=True)
X = np.column_stack([X, -X[:, 0] + 0.01 * np.random.randn(X.shape[0])])
X_tr, X_te, y_tr, y_te = train_test_split(X, y, random_state=0)
clf = OwlClassifier(weights=(1, 100), loss='squared-hinge')
clf.fit(X_tr, y_tr)
print("Correlated coefs", clf.coef_[0], clf.coef_[-1])
print("Test score", clf.score(X_te, y_te))
| 31.442857 | 79 | 0.6335 |
aaa02b4077ce324a7b36c2759950c6c1912ace44 | 2,867 | swift | Swift | src/swift/abstract/AbstractMessage.swift | readdle/mailcore2 | cf95a1587cebd5b2257e6b6fa0e34149a4d70394 | [
"BSD-3-Clause"
] | 3 | 2019-07-16T13:19:50.000Z | 2020-01-06T10:42:23.000Z | src/swift/abstract/AbstractMessage.swift | readdle/mailcore2 | cf95a1587cebd5b2257e6b6fa0e34149a4d70394 | [
"BSD-3-Clause"
] | 15 | 2018-12-11T14:00:48.000Z | 2021-12-21T17:42:42.000Z | src/swift/abstract/AbstractMessage.swift | readdle/mailcore2 | cf95a1587cebd5b2257e6b6fa0e34149a4d70394 | [
"BSD-3-Clause"
] | 2 | 2015-05-26T18:07:22.000Z | 2017-04-04T10:01:17.000Z | import Foundation
import CMailCore
public class MCOAbstractMessage: NSObjectCompat, Convertible {
private var nativeInstance:CAbstractMessage;
public required init(mailCoreObject: CObject) {
self.nativeInstance = CAbstractMessage.init(cobject: mailCoreObject)
self.nativeInstance.retain()
}
func cast() -> CObject {
return self.nativeInstance.toCObject()
}
deinit {
nativeInstance.release()
}
/** Header of the message. */
public var header : MCOMessageHeader! {
set {
mailCoreAutoreleasePool {
nativeInstance.header = newValue?.nativeInstance ?? CMessageHeader()
}
}
get {
return mailCoreAutoreleasePool {
createMCOObject(from: nativeInstance.header.toCObject())
}
}
}
/** Returns the part with the given Content-ID.*/
public func partForContentID(contentID: String) -> MCOAbstractPart? {
return mailCoreAutoreleasePool {
return createMCOObject(from: nativeInstance.partForContentID(contentID.mailCoreString()).toCObject())
}
}
/** Returns the part with the given unique identifier.*/
public func partForUniqueID(uniqueID: String) -> MCOAbstractPart? {
return mailCoreAutoreleasePool {
return createMCOObject(from: nativeInstance.partForUniqueID(uniqueID.mailCoreString()).toCObject())
}
}
/** All attachments in the message.
It will return an array of MCOIMAPPart for MCOIMAPMessage.
It will return an array of MCOAttachment for MCOMessageParser.
It will return an array of MCOAttachment for MCOMessageBuilder. */
public func attachments() -> Array<MCOAbstractPart>? {
return mailCoreAutoreleasePool {
return Array<MCOAbstractPart>(mailCoreArray: nativeInstance.attachments());
}
}
/** All image attachments included inline in the message through cid: URLs.
It will return an array of MCOIMAPPart for MCOIMAPMessage.
It will return an array of MCOAttachment for MCOMessageParser.
It will return an array of MCOAttachment for MCOMessageBuilder. */
public func htmlInlineAttachments() -> Array<MCOAbstractPart>? {
return mailCoreAutoreleasePool {
return Array<MCOAbstractPart>(mailCoreArray: nativeInstance.htmlInlineAttachments());
}
}
/**
Returns parts required to render the message as plain text or html.
This does not include inline images and attachments, but only the text content
*/
public func requiredPartsForRendering() -> Array<MCOAbstractPart>? {
return mailCoreAutoreleasePool {
return Array<MCOAbstractPart>(mailCoreArray: nativeInstance.requiredPartsForRendering());
}
}
}
| 36.291139 | 113 | 0.668643 |
816541fd0ac9aa27940ad0ee8d31a1aaaa0de62e | 2,467 | rs | Rust | typebinder/src/pipeline/mod.rs | impero-com/ts_export | 850f28f2286714e47ddc9179c56718b634cef279 | [
"X11"
] | 4 | 2021-02-22T17:01:07.000Z | 2021-02-24T09:43:14.000Z | typebinder/src/pipeline/mod.rs | impero-com/typebinder | a5414b57ce8d6dcd8b57c9ea08c7a1ab646c5380 | [
"X11"
] | 18 | 2021-03-04T16:07:51.000Z | 2021-11-03T17:04:55.000Z | typebinder/src/pipeline/mod.rs | impero-com/ts_export | 850f28f2286714e47ddc9179c56718b634cef279 | [
"X11"
] | 2 | 2021-03-08T15:16:39.000Z | 2021-03-19T15:28:24.000Z | //! The core logic of `typebinder`
use crate::{
contexts::type_solving::TypeSolvingContext, error::TsExportError, exporters::Exporter,
macros::context::MacroSolvingContext, path_mapper::PathMapper,
step_spawner::PipelineStepSpawner,
};
use syn::{punctuated::Punctuated, Path};
use self::module_step::{ModuleStepResult, ModuleStepResultData};
pub mod module_step;
pub mod step_result;
/// The Pipeline is the starting point of `typebinder`.
///
/// A Pipeline is customized with both a [PipelineStepSpawner] and an [Exporter] implementor.
///
/// When launched, the [Pipeline] will use its [PipelineStepSpawner] to spawn the "default" module, that is, the module with an empty path.
/// Each [ModuleStep](crate::pipeline::module_step::ModuleStep) thereby generated is then launched, see [ModuleStep::launch](crate::pipeline::module_step::ModuleStep).
///
/// Each output is passed to the [Exporter], that is responsible for outputting the data.
pub struct Pipeline<PSS, E> {
pub pipeline_step_spawner: PSS,
pub exporter: E,
pub path_mapper: PathMapper,
}
impl<PSS, E> Pipeline<PSS, E>
where
PSS: PipelineStepSpawner,
E: Exporter,
TsExportError: From<PSS::Error> + From<E::Error>,
{
pub fn launch(
mut self,
solving_context: &TypeSolvingContext,
macro_context: &MacroSolvingContext,
) -> Result<(), TsExportError> {
let path = Path {
leading_colon: None,
segments: Punctuated::default(),
};
let res = self
.pipeline_step_spawner
.create_process(path)?
.ok_or(TsExportError::FailedToLaunch)?
.launch(
&self.pipeline_step_spawner,
solving_context,
macro_context,
&self.path_mapper,
)?;
let mut all_results: Vec<ModuleStepResultData> = Vec::new();
extractor(&mut all_results, res);
for result_data in all_results.into_iter() {
if result_data.imports.is_empty() && result_data.exports.is_empty() {
continue;
}
self.exporter.export_module(result_data)?;
}
self.exporter.finish();
Ok(())
}
}
/// TODO: refactor this to a closure
fn extractor(all: &mut Vec<ModuleStepResultData>, iter: ModuleStepResult) {
iter.children
.into_iter()
.for_each(|child| extractor(all, child));
all.push(iter.data);
}
| 31.628205 | 167 | 0.643697 |
370b617b84f81d8ac5e8e40c37aa4f31151f9218 | 538 | kt | Kotlin | gradle-plugins/compose/src/test/test-projects/misc/jvmPreview/mpp/src/commonMain/kotlin/composable.kt | Thomas-Vos/compose-jb | 21cda3f3c68e801b2a4034f53ac8d1efcc4ed568 | [
"Apache-2.0"
] | 8,925 | 2020-11-05T09:59:11.000Z | 2022-03-31T16:37:23.000Z | gradle-plugins/compose/src/test/test-projects/misc/jvmPreview/mpp/src/commonMain/kotlin/composable.kt | Thomas-Vos/compose-jb | 21cda3f3c68e801b2a4034f53ac8d1efcc4ed568 | [
"Apache-2.0"
] | 1,410 | 2020-11-05T12:22:15.000Z | 2022-03-31T19:02:20.000Z | gradle-plugins/compose/src/test/test-projects/misc/jvmPreview/mpp/src/commonMain/kotlin/composable.kt | Thomas-Vos/compose-jb | 21cda3f3c68e801b2a4034f53ac8d1efcc4ed568 | [
"Apache-2.0"
] | 715 | 2020-11-05T10:01:14.000Z | 2022-03-31T02:47:48.000Z | /*
* Copyright 2020-2021 JetBrains s.r.o. and respective authors and developers.
* Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE.txt file.
*/
import androidx.compose.material.Text
import androidx.compose.material.Button
import androidx.compose.runtime.*
@Composable
fun ExampleComposable() {
var text by remember { mutableStateOf("Hello, World!") }
Button(onClick = {
text = "Hello, $platformName!"
}) {
Text(text)
}
}
expect val platformName: String | 25.619048 | 107 | 0.70632 |
2f6230ea578b28dadc375e0a15354f90cdf63b9f | 1,414 | php | PHP | imcoolwithit.com/www_old/components/com_content/views/info/view.html.php | egarzaswat/imcoolwithit.com | c13d8ee0e469de1784287e489730c902107316ab | [
"Apache-2.0"
] | 1 | 2018-12-26T08:20:06.000Z | 2018-12-26T08:20:06.000Z | imcoolwithit.com/www/components/com_content/views/info/view.html.php | egarzaswat/imcoolwithit.com | c13d8ee0e469de1784287e489730c902107316ab | [
"Apache-2.0"
] | null | null | null | imcoolwithit.com/www/components/com_content/views/info/view.html.php | egarzaswat/imcoolwithit.com | c13d8ee0e469de1784287e489730c902107316ab | [
"Apache-2.0"
] | 1 | 2021-08-29T13:17:52.000Z | 2021-08-29T13:17:52.000Z | <?php
/**
* @package Joomla.Site
* @subpackage com_content
*
* @copyright Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die;
/**
* HTML Article View class for the Content component
*
* @package Joomla.Site
* @subpackage com_content
* @since 1.5
*/
class ContentViewInfo extends JViewLegacy
{
public function display($tpl = null)
{
$app = JFactory::getApplication();
$task = $this->get('Task');
$this->data = $this->get('Data');
JFactory::getDocument()->setDescription($this->data[0]->description);
JFactory::getDocument()->setTitle($this->data[0]->title);
JFactory::getDocument()->setMetaData('keywords', $this->data[0]->keywords);
switch($task){
case 'about': $this->setLayout('about'); break;
case 'already_cool': $this->setLayout('already_cool'); break;
case 'sponsors': $this->setLayout('sponsors'); break;
case 'partners': $this->setLayout('partners'); break;
case 'terms' :
case 'privacy':
case 'contact':
case 'faqs': $this->setLayout('mono'); break;
default : $app->redirect("index.php?option=com_content&view=featured&Itemid=101"); break;
}
parent::display($tpl);
}
}
| 29.458333 | 101 | 0.602546 |
fc2ea93e894edb74eac5b33df1d268d99c37b973 | 2,536 | kt | Kotlin | bootstrap-icons-compose/src/main/java/com/wiryadev/bootstrapiconscompose/bootstrapicons/filled/Lightbulb.kt | wiryadev/BootstrapIconsCompose | 1c199d953dc96b261aab16ac230dc7f01fb14a53 | [
"MIT"
] | 1 | 2021-07-20T14:37:00.000Z | 2021-07-20T14:37:00.000Z | bootstrap-icons-compose/src/main/java/com/wiryadev/bootstrapiconscompose/bootstrapicons/filled/Lightbulb.kt | wiryadev/bootstrap-icons-compose | 1c199d953dc96b261aab16ac230dc7f01fb14a53 | [
"MIT"
] | null | null | null | bootstrap-icons-compose/src/main/java/com/wiryadev/bootstrapiconscompose/bootstrapicons/filled/Lightbulb.kt | wiryadev/bootstrap-icons-compose | 1c199d953dc96b261aab16ac230dc7f01fb14a53 | [
"MIT"
] | null | null | null | package com.wiryadev.bootstrapiconscompose.bootstrapicons.filled
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType.Companion.NonZero
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.StrokeCap.Companion.Butt
import androidx.compose.ui.graphics.StrokeJoin.Companion.Miter
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.ImageVector.Builder
import androidx.compose.ui.graphics.vector.path
import androidx.compose.ui.unit.dp
import com.wiryadev.bootstrapiconscompose.bootstrapicons.FilledGroup
public val FilledGroup.Lightbulb: ImageVector
get() {
if (_lightbulb != null) {
return _lightbulb!!
}
_lightbulb = Builder(name = "Lightbulb", defaultWidth = 16.0.dp, defaultHeight = 16.0.dp,
viewportWidth = 16.0f, viewportHeight = 16.0f).apply {
path(fill = SolidColor(Color(0xFF000000)), stroke = null, strokeLineWidth = 0.0f,
strokeLineCap = Butt, strokeLineJoin = Miter, strokeLineMiter = 4.0f,
pathFillType = NonZero) {
moveTo(2.0f, 6.0f)
arcToRelative(6.0f, 6.0f, 0.0f, true, true, 10.174f, 4.31f)
curveToRelative(-0.203f, 0.196f, -0.359f, 0.4f, -0.453f, 0.619f)
lineToRelative(-0.762f, 1.769f)
arcTo(0.5f, 0.5f, 0.0f, false, true, 10.5f, 13.0f)
horizontalLineToRelative(-5.0f)
arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.46f, -0.302f)
lineToRelative(-0.761f, -1.77f)
arcToRelative(1.964f, 1.964f, 0.0f, false, false, -0.453f, -0.618f)
arcTo(5.984f, 5.984f, 0.0f, false, true, 2.0f, 6.0f)
close()
moveTo(5.0f, 14.5f)
arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.5f, -0.5f)
horizontalLineToRelative(5.0f)
arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.0f, 1.0f)
lineToRelative(-0.224f, 0.447f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.894f, 0.553f)
lineTo(6.618f, 16.0f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.894f, -0.553f)
lineTo(5.5f, 15.0f)
arcToRelative(0.5f, 0.5f, 0.0f, false, true, -0.5f, -0.5f)
close()
}
}
.build()
return _lightbulb!!
}
private var _lightbulb: ImageVector? = null
| 47.849057 | 97 | 0.600552 |
ab60613d770ea0fe124bdf8e87b18cf0bc3072c9 | 1,822 | kt | Kotlin | app/src/main/java/com/ss/profilepercentageviewdemo/MainActivity.kt | smartSenseSolutions/ProfilePercentageView | d1a5af29e4b2042dbd5e28454fb08df1bc888fc6 | [
"Apache-2.0"
] | 19 | 2021-12-30T05:22:13.000Z | 2022-01-10T03:37:17.000Z | app/src/main/java/com/ss/profilepercentageviewdemo/MainActivity.kt | smartSenseSolutions/ProfilePercentageView | d1a5af29e4b2042dbd5e28454fb08df1bc888fc6 | [
"Apache-2.0"
] | null | null | null | app/src/main/java/com/ss/profilepercentageviewdemo/MainActivity.kt | smartSenseSolutions/ProfilePercentageView | d1a5af29e4b2042dbd5e28454fb08df1bc888fc6 | [
"Apache-2.0"
] | 2 | 2021-12-30T06:58:58.000Z | 2022-01-03T13:14:02.000Z | package com.ss.profilepercentageviewdemo
import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import android.util.TypedValue
import androidx.databinding.DataBindingUtil
import com.ss.profilepercentageviewdemo.databinding.ActivityMainBinding
class MainActivity : AppCompatActivity() {
private lateinit var activityMainBinding: ActivityMainBinding
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
activityMainBinding = DataBindingUtil.setContentView(this, R.layout.activity_main)
activityMainBinding.sliderImgBorderWidth.value = activityMainBinding.ppvProfile.borderWidth.toInt().toFloat()
activityMainBinding.sliderImgPadding.value = activityMainBinding.ppvProfile.imagePadding.toInt().toFloat()
activityMainBinding.sliderProgress.addOnChangeListener { slider, value, fromUser ->
activityMainBinding.ppvProfile.setValue(value.toInt())
}
activityMainBinding.sliderArcWidth.addOnChangeListener { slider, value, fromUser ->
activityMainBinding.ppvProfile.setArcWidth(value)
}
activityMainBinding.sliderImgBorderWidth.addOnChangeListener { slider, value, fromUser ->
activityMainBinding.ppvProfile.borderWidth = value
}
activityMainBinding.sliderImgPadding.addOnChangeListener { slider, value, fromUser ->
activityMainBinding.ppvProfile.imagePadding = value
}
activityMainBinding.chkDash.setOnCheckedChangeListener { buttonView, isChecked ->
activityMainBinding.ppvProfile.setDashEnable(isChecked)
}
activityMainBinding.chkRounded.setOnCheckedChangeListener { buttonView, isChecked ->
activityMainBinding.ppvProfile.setRounded(isChecked)
}
}
} | 39.608696 | 117 | 0.756312 |
d280712b4394818e6991d4b04e3f4bbf5eb6471a | 674 | php | PHP | plugins/mybbs.php | xoopscube/sitemap | dcdf4ab4b9cacd359900ea844a71325ecae10850 | [
"MIT"
] | null | null | null | plugins/mybbs.php | xoopscube/sitemap | dcdf4ab4b9cacd359900ea844a71325ecae10850 | [
"MIT"
] | null | null | null | plugins/mybbs.php | xoopscube/sitemap | dcdf4ab4b9cacd359900ea844a71325ecae10850 | [
"MIT"
] | null | null | null | <?php
// FILE :: mybbs.php
// AUTHOR :: suin <tms@s10.xrea.com>
// WEB :: AmethystBlue <http://www.suin.jp/>
// DATE :: 2005-02-15
function b_sitemap_mybbs(){
$db =& Database::getInstance();
$myts =& MyTextSanitizer::getInstance();
$sitemap = [];
$i = 0;
$url = "index.php?bbs_id=";
$sql = 'SELECT bbs_id, bbs_name FROM '.$db->prefix('mybbs_master').' WHERE status=1 ORDER BY sort_order';
$result = $db->query($sql);
while ( list($catid, $name) = $db->fetchRow($result) ) {
$sitemap['parent'][$i]['id'] = $catid;
$sitemap['parent'][$i]['title'] = $myts->makeTboxData4Show($name);
$sitemap['parent'][$i]['url'] = $url.$catid;
$i++;
}
return $sitemap;
}
| 29.304348 | 106 | 0.605341 |
82bf69fe1fdcabb5a147a0670b854bafc1a71b25 | 565 | asm | Assembly | lang/italian/fnam.asm | olifink/smsqe | c546d882b26566a46d71820d1539bed9ea8af108 | [
"BSD-2-Clause"
] | null | null | null | lang/italian/fnam.asm | olifink/smsqe | c546d882b26566a46d71820d1539bed9ea8af108 | [
"BSD-2-Clause"
] | null | null | null | lang/italian/fnam.asm | olifink/smsqe | c546d882b26566a46d71820d1539bed9ea8af108 | [
"BSD-2-Clause"
] | null | null | null | ; English texts for File Name Menu 1988 Tony Tebby QJUMP
section language
include 'dev8_mac_text'
mkiobl fnnf\
0,0,{This file cannot be found. Use Qram} \40
0,1,{FILES menu to check the directory.} ;40
mkiobl fniu\
0,0,{This file is in use. Use the Qram} \40
0,1,{CHANNELS menu to find the job using it.} ;40
mkiobl fner\
0,0,{This file open gives the system error} \40
0,1,err
end
| 28.25 | 67 | 0.497345 |
967bdada4096d8b58d41d398edaffcca508a9156 | 840 | php | PHP | plugins/kurtjensen/passage/models/UserGroupsKeys.php | vittron/october | 73249fb5c610215947e7c301c1d49b0136c767af | [
"MIT"
] | null | null | null | plugins/kurtjensen/passage/models/UserGroupsKeys.php | vittron/october | 73249fb5c610215947e7c301c1d49b0136c767af | [
"MIT"
] | 5 | 2019-05-31T08:46:25.000Z | 2022-02-26T11:16:17.000Z | plugins/kurtjensen/passage/models/UserGroupsKeys.php | vittron/october | 73249fb5c610215947e7c301c1d49b0136c767af | [
"MIT"
] | 4 | 2019-05-31T01:49:59.000Z | 2019-06-05T05:06:43.000Z | <?php namespace KurtJensen\Passage\Models;
use Model;
/**
* UserGroupsKeys Model
*/
class UserGroupsKeys extends Model
{
/**
* @var string The database table used by the model.
*/
public $table = 'kurtjensen_passage_groups_keys';
/**
* @var array Guarded fields
*/
protected $guarded = [];
/**
* @var array Fillable fields
*/
protected $fillable = ['*'];
/**
* @var array Relations
*/
public $hasOne = [
'key' => ['KurtJensen\Passage\Models\Key',
'table' => 'kurtjensen_passage_keys',
'key' => 'key_id',
'otherkey' => 'id',
],
'group' => ['RainLab\User\Models\UserGroup',
'table' => 'user_groups',
'key' => 'user_group_id',
'otherkey' => 'id',
],
];
}
| 20 | 56 | 0.508333 |
38a59798c7a88ae32297ba11053caa456d9dbd19 | 8,771 | h | C | android/android_9/device/google/cuttlefish_common/guest/hals/camera/CallbackNotifier.h | yakuizhao/intel-vaapi-driver | b2bb0383352694941826543a171b557efac2219b | [
"MIT"
] | 2 | 2021-07-28T21:29:40.000Z | 2021-11-17T11:02:19.000Z | android/android_9/device/google/cuttlefish_common/guest/hals/camera/CallbackNotifier.h | yakuizhao/intel-vaapi-driver | b2bb0383352694941826543a171b557efac2219b | [
"MIT"
] | null | null | null | android/android_9/device/google/cuttlefish_common/guest/hals/camera/CallbackNotifier.h | yakuizhao/intel-vaapi-driver | b2bb0383352694941826543a171b557efac2219b | [
"MIT"
] | null | null | null | /*
* Copyright (C) 2011 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef HW_EMULATOR_CAMERA_CALLBACK_NOTIFIER_H
#define HW_EMULATOR_CAMERA_CALLBACK_NOTIFIER_H
/*
* Contains declaration of a class CallbackNotifier that manages callbacks set
* via set_callbacks, enable_msg_type, and disable_msg_type camera HAL API.
*/
#include <hardware/camera.h>
#include <utils/List.h>
#include <utils/Mutex.h>
#include <utils/Timers.h>
namespace android {
class EmulatedCameraDevice;
/* Manages callbacks set via set_callbacks, enable_msg_type, and
* disable_msg_type camera HAL API.
*
* Objects of this class are contained in EmulatedCamera objects, and handle
* relevant camera API callbacks.
* Locking considerations. Apparently, it's not allowed to call callbacks
* registered in this class, while holding a lock: recursion is quite possible,
* which will cause a deadlock.
*/
class CallbackNotifier {
public:
/* Constructs CallbackNotifier instance. */
CallbackNotifier();
/* Destructs CallbackNotifier instance. */
~CallbackNotifier();
/****************************************************************************
* Camera API
***************************************************************************/
public:
/* Actual handler for camera_device_ops_t::set_callbacks callback.
* This method is called by the containing emulated camera object when it is
* handing the camera_device_ops_t::set_callbacks callback.
*/
void setCallbacks(camera_notify_callback notify_cb,
camera_data_callback data_cb,
camera_data_timestamp_callback data_cb_timestamp,
camera_request_memory get_memory, void* user);
/* Actual handler for camera_device_ops_t::enable_msg_type callback.
* This method is called by the containing emulated camera object when it is
* handing the camera_device_ops_t::enable_msg_type callback.
*/
void enableMessage(uint msg_type);
/* Actual handler for camera_device_ops_t::disable_msg_type callback.
* This method is called by the containing emulated camera object when it is
* handing the camera_device_ops_t::disable_msg_type callback.
*/
void disableMessage(uint msg_type);
/* Actual handler for camera_device_ops_t::store_meta_data_in_buffers
* callback. This method is called by the containing emulated camera object
* when it is handing the camera_device_ops_t::store_meta_data_in_buffers
* callback.
* Return:
* NO_ERROR on success, or an appropriate error status.
*/
status_t storeMetaDataInBuffers(bool enable);
/* Enables video recording.
* This method is called by the containing emulated camera object when it is
* handing the camera_device_ops_t::start_recording callback.
* Param:
* fps - Video frame frequency. This parameter determins when a frame
* received via onNextFrameAvailable call will be pushed through the
* callback.
* Return:
* NO_ERROR on success, or an appropriate error status.
*/
status_t enableVideoRecording(int fps);
/* Disables video recording.
* This method is called by the containing emulated camera object when it is
* handing the camera_device_ops_t::stop_recording callback.
*/
void disableVideoRecording();
/* Releases video frame, sent to the framework.
* This method is called by the containing emulated camera object when it is
* handing the camera_device_ops_t::release_recording_frame callback.
*/
void releaseRecordingFrame(const void* opaque);
/* Actual handler for camera_device_ops_t::msg_type_enabled callback.
* This method is called by the containing emulated camera object when it is
* handing the camera_device_ops_t::msg_type_enabled callback.
* Note: this method doesn't grab a lock while checking message status, since
* upon exit the status would be undefined anyway. So, grab a lock before
* calling this method if you care about persisting a defined message status.
* Return:
* 0 if message is disabled, or non-zero value, if message is enabled.
*/
inline int isMessageEnabled(uint msg_type) {
return mMessageEnabler & msg_type;
}
/* Checks id video recording is enabled.
* This method is called by the containing emulated camera object when it is
* handing the camera_device_ops_t::recording_enabled callback.
* Note: this method doesn't grab a lock while checking video recordin status,
* since upon exit the status would be undefined anyway. So, grab a lock
* before calling this method if you care about persisting of a defined video
* recording status.
* Return:
* true if video recording is enabled, or false if it is disabled.
*/
inline bool isVideoRecordingEnabled() { return mVideoRecEnabled; }
/****************************************************************************
* Public API
***************************************************************************/
public:
/* Resets the callback notifier. */
void cleanupCBNotifier();
/* Next frame is available in the camera device.
* This is a notification callback that is invoked by the camera device when
* a new frame is available.
* Note that most likely this method is called in context of a worker thread
* that camera device has created for frame capturing.
* Param:
* frame - Captured frame, or NULL if camera device didn't pull the frame
* yet. If NULL is passed in this parameter use GetCurrentFrame method
* of the camera device class to obtain the next frame. Also note that
* the size of the frame that is passed here (as well as the frame
* returned from the GetCurrentFrame method) is defined by the current
* frame settings (width + height + pixel format) for the camera device.
* timestamp - Frame's timestamp.
* camera_dev - Camera device instance that delivered the frame.
*/
void onNextFrameAvailable(const void* frame, nsecs_t timestamp,
EmulatedCameraDevice* camera_dev);
/* Entry point for notifications that occur in camera device.
* Param:
* err - CAMERA_ERROR_XXX error code.
*/
void onCameraDeviceError(int err);
/* Reports focus operation completion to camera client.
*/
void onCameraFocusAcquired();
/* Sets, or resets taking picture state.
* This state control whether or not to notify the framework about compressed
* image, shutter, and other picture related events.
*/
void setTakingPicture(bool taking) { mTakingPicture = taking; }
/* Sets JPEG quality used to compress frame during picture taking. */
void setJpegQuality(int jpeg_quality) { mJpegQuality = jpeg_quality; }
/****************************************************************************
* Private API
***************************************************************************/
protected:
/* Checks if it's time to push new video frame.
* Note that this method must be called while object is locked.
* Param:
* timestamp - Timestamp for the new frame. */
bool isNewVideoFrameTime(nsecs_t timestamp);
/****************************************************************************
* Data members
***************************************************************************/
protected:
/* Locks this instance for data change. */
Mutex mObjectLock;
/*
* Callbacks, registered in set_callbacks.
*/
camera_notify_callback mNotifyCB;
camera_data_callback mDataCB;
camera_data_timestamp_callback mDataCBTimestamp;
camera_request_memory mGetMemoryCB;
void* mCBOpaque;
/* video frame queue for the CameraHeapMemory destruction */
List<camera_memory_t*> mCameraMemoryTs;
/* Timestamp when last frame has been delivered to the framework. */
nsecs_t mLastFrameTimestamp;
/* Video frequency in nanosec. */
nsecs_t mFrameRefreshFreq;
/* Message enabler. */
uint32_t mMessageEnabler;
/* JPEG quality used to compress frame during picture taking. */
int mJpegQuality;
/* Video recording status. */
bool mVideoRecEnabled;
/* Picture taking status. */
bool mTakingPicture;
};
}; /* namespace android */
#endif /* HW_EMULATOR_CAMERA_CALLBACK_NOTIFIER_H */
| 37.482906 | 80 | 0.683388 |
396a7baf54ce5a13870b3e278dc38c848cfaa3d6 | 1,952 | html | HTML | views/user-confirm.html | Pingze-github/common-oauth2-server | 0b25a4efaa0e22086a7ed793f9508658469ee7ad | [
"MIT"
] | 42 | 2017-08-16T08:29:30.000Z | 2021-12-25T14:26:44.000Z | views/user-confirm.html | Pingze-github/common-oauth2-server | 0b25a4efaa0e22086a7ed793f9508658469ee7ad | [
"MIT"
] | 4 | 2017-11-27T18:49:12.000Z | 2020-05-20T15:25:49.000Z | views/user-confirm.html | Pingze-github/common-oauth2-server | 0b25a4efaa0e22086a7ed793f9508658469ee7ad | [
"MIT"
] | 22 | 2017-09-30T02:58:11.000Z | 2020-05-27T17:28:32.000Z | <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Confirm Authorization to: <%- clientName %></title>
</head>
<body>
<form id="confirm-form">
<h3>User Authorization</h3>
<div>
<p>Dear <%- username %>, application <%- clientName %> wants the following access to your data in the OAuth Protected Resource Server:</p>
<ul>
<% scopes.forEach(function(s){ %>
<li><%- s.desc %></li>
<% }) %>
</ul>
<p>Do you agree?</p>
</div>
<button id="agree-btn">Agree</button>
<button id="deny-btn">Deny</button>
<button id="logout-btn">Log out</button>
<input id="csrf-token-input" type="hidden" name="csrfToken" value="<%- csrfToken %>"/>
</form>
<input id="oauth-uri-input" type="hidden" name="oauth_uri" value="<%= oauthUri %>"/>
<script type="text/javascript">
var form = byId('confirm-form'),
oauthUri = byId('oauth-uri-input').value,
csrfToken = byId('csrf-token-input').value,
agreeBtn = byId('agree-btn'),
denyBtn = byId('deny-btn'),
logoutBtn = byId('logout-btn');
form.onsubmit = function(){
return false;
};
agreeBtn.onclick = function(){
window.location.href = oauthUri+'&agree=true&csrfToken='+encodeURIComponent(csrfToken);
};
denyBtn.onclick = function(){
window.location.href = oauthUri+'&deny=true&csrfToken='+encodeURIComponent(csrfToken);
};
logoutBtn.onclick = function(){
window.location.href = oauthUri+'&logout=true&csrfToken='+encodeURIComponent(csrfToken);
};
function byId(id){
return document.getElementById(id);
}
</script>
</body>
</html> | 36.148148 | 154 | 0.519467 |
0a251b43b7d50dd315d5abb6dd37e6e9715b8cde | 1,056 | ts | TypeScript | projects/smarti18n/src/lib/services/config/config.service.spec.ts | rafapaulin/smarti18n | 88ad335241add428db6c74f60cb8aa3351f95810 | [
"MIT"
] | 2 | 2018-07-18T20:18:17.000Z | 2018-08-16T14:29:08.000Z | projects/smarti18n/src/lib/services/config/config.service.spec.ts | rafapaulin/smarti18n | 88ad335241add428db6c74f60cb8aa3351f95810 | [
"MIT"
] | 5 | 2018-07-15T13:56:59.000Z | 2018-10-12T15:54:53.000Z | projects/smarti18n/src/lib/services/config/config.service.spec.ts | rafapaulin/smarti18n | 88ad335241add428db6c74f60cb8aa3351f95810 | [
"MIT"
] | null | null | null | import { TestBed, getTestBed } from '@angular/core/testing';
import { ConfigService } from './config.service';
describe('ConfigService', () => {
let service: ConfigService;
beforeEach(() => {
TestBed.configureTestingModule({
providers: [ConfigService]
});
service = getTestBed().get(ConfigService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
describe('when changes are applied', () => {
beforeEach(() => {
service.applyConfig({
defaultLocale: 'en-us'
});
});
it('should merge the changes', () => {
service.applyConfig({
locale: 'pt-br'
});
expect(service.config.defaultLocale).toBe('en-us');
expect(service.config.locale).toBe('pt-br');
});
it('should emit observable new config', () => {
service.onConfigChanged.subscribe(newConfig => {
expect(newConfig.config.defaultLocale).toBe('en-us');
expect(newConfig.changes.locale).toBe('pt-br');
});
service.applyConfig({
locale: 'pt-br'
});
});
});
});
| 23.466667 | 61 | 0.600379 |
b6d937c6bf167ae0e8646a47e76aaee72e16392d | 1,417 | swift | Swift | swift-sdk/CommerceItem.swift | brunosylvain/swift-sdk | 8c22e0390b47ff3fecf0ae6b2b71fefa180eb904 | [
"MIT"
] | null | null | null | swift-sdk/CommerceItem.swift | brunosylvain/swift-sdk | 8c22e0390b47ff3fecf0ae6b2b71fefa180eb904 | [
"MIT"
] | null | null | null | swift-sdk/CommerceItem.swift | brunosylvain/swift-sdk | 8c22e0390b47ff3fecf0ae6b2b71fefa180eb904 | [
"MIT"
] | null | null | null | //
// Created by Tapash Majumder on 6/6/18.
// Copyright © 2018 Iterable. All rights reserved.
//
import UIKit
/**
`CommerceItem` represents a product. These are used by the commerce API; see [IterableAPI trackPurchase:items:dataFields:]
*/
@objcMembers public class CommerceItem: NSObject {
/** id of this product */
public var id: String
/** name of this product */
public var name: String
/** price of this product */
public var price: NSNumber
/** quantity of this product */
public var quantity: UInt
/**
Creates a `CommerceItem` with the specified properties
- parameters:
- id: id of the product
- name: name of the product
- price: price of the product
- quantity: quantity of the product
- returns: an instance of `CommerceItem` with the specified properties
*/
public init(id: String, name: String, price: NSNumber, quantity: UInt) {
self.id = id
self.name = name
self.price = price
self.quantity = quantity
}
/**
A Dictionary respresentation of this item
- returns: An NSDictionary representing this item
*/
public func toDictionary() -> [AnyHashable: Any] {
return ["id": id,
"name": name,
"price": price,
"quantity": quantity]
}
}
| 26.240741 | 123 | 0.587862 |
8f66fabe0970cb1a944b255833a955e912bc14cd | 1,205 | swift | Swift | WeChatSwift/Discover/Shake/ShakeType.swift | InHisName/WeChatSwift | 3bbd4bf1abc741226aad5b05c333eb6db819bff9 | [
"MIT"
] | 132 | 2019-07-15T11:14:28.000Z | 2022-02-21T02:56:26.000Z | WeChatSwift/Discover/Shake/ShakeType.swift | InHisName/WeChatSwift | 3bbd4bf1abc741226aad5b05c333eb6db819bff9 | [
"MIT"
] | 6 | 2019-08-19T09:48:33.000Z | 2021-11-03T01:34:20.000Z | WeChatSwift/Discover/Shake/ShakeType.swift | InHisName/WeChatSwift | 3bbd4bf1abc741226aad5b05c333eb6db819bff9 | [
"MIT"
] | 33 | 2019-08-04T15:16:47.000Z | 2022-01-07T07:06:04.000Z | //
// ShakeType.swift
// WeChatSwift
//
// Created by xu.shuifeng on 2019/8/8.
// Copyright © 2019 alexiscn. All rights reserved.
//
import UIKit
enum ShakeType: String {
case people
case music
case tv
var image: UIImage? {
let name = "Shake_icon_\(self.rawValue)_38x34_"
return UIImage(named: name)
}
var highlightImage: UIImage? {
let name = "Shake_icon_\(self.rawValue)HL_38x34_"
return UIImage(named: name)
}
var title: String {
switch self {
case .people:
return "人"
case .music:
return "歌曲"
case .tv:
return "电视"
}
}
func attributedStringForTitleNormal() -> NSAttributedString {
return NSAttributedString(string: title, attributes: [
.font: UIFont.systemFont(ofSize: 12),
.foregroundColor: UIColor(hexString: "#B2B2B2")
])
}
func attributedStringForTitleSelected() -> NSAttributedString {
return NSAttributedString(string: title, attributes: [
.font: UIFont.systemFont(ofSize: 12),
.foregroundColor: Colors.Brand
])
}
}
| 23.627451 | 67 | 0.573444 |
403ed8c759891b08ee51690d9702e340ed6f4833 | 2,620 | py | Python | instascrape/exceptions.py | tnychn/instascrape | 7aaf3c1a1786bbe80059ed6e0d93442a19a6f475 | [
"MIT"
] | 80 | 2020-05-28T17:22:14.000Z | 2022-03-25T07:15:51.000Z | instascrape/exceptions.py | AlphaXenon/InstaScrape | 7aaf3c1a1786bbe80059ed6e0d93442a19a6f475 | [
"MIT"
] | 23 | 2020-05-25T12:45:40.000Z | 2022-03-06T05:44:41.000Z | instascrape/exceptions.py | AlphaXenon/InstaScrape | 7aaf3c1a1786bbe80059ed6e0d93442a19a6f475 | [
"MIT"
] | 14 | 2020-06-28T05:52:28.000Z | 2022-03-28T04:27:50.000Z | class InstascrapeError(Exception):
"""Base exception class for all of the exceptions raised by Instascrape."""
class ExtractionError(InstascrapeError):
"""Raised when Instascrape fails to extract specified data from HTTP response."""
def __init__(self, message: str):
super().__init__("Failed to extract data from response. (message: '{0}')".format(message))
class PrivateAccessError(InstascrapeError):
"""Raised when user does not have permission to access specified data, i.e. private profile which the user is not following."""
def __init__(self):
super().__init__("The user profile is private and not being followed by you.")
class RateLimitedError(InstascrapeError):
"""Raised when Instascrape receives a 429 TooManyRequests from Instagram."""
def __init__(self):
super().__init__("(429) Too many requests. Failed to query data. Rate limited by Instagram.")
class NotFoundError(InstascrapeError):
"""Raised when Instascrape receives a 404 Not Found from Instagram."""
def __init__(self, message: str = None):
super().__init__(message or "(404) Nothing found.")
class ConnectionError(InstascrapeError):
"""Raised when Instascrape fails to connect to Instagram server."""
def __init__(self, url: str):
super().__init__("Failed to connect to '{0}'.".format(url))
class LoginError(InstascrapeError):
"""Raised when Instascrape fails to perform authentication, e.g. wrong credentials."""
def __init__(self, message: str):
super().__init__("Failed to log into Instagram. (message: '{0}')".format(message))
class TwoFactorAuthRequired(LoginError):
"""Raised when Instascrape fails to perform authentication due to two-factor authenticattion."""
def __init__(self):
super().__init__("two-factor authentication is required")
class CheckpointChallengeRequired(LoginError):
"""Raised when Instascrape fails to perform authentication due to checkpoint challenge."""
def __init__(self):
super().__init__("checkpoint challenge solving is required")
class AuthenticationRequired(InstascrapeError):
"""Raised when anonymous/unauthenticated (guest) user tries to perform actions that require authentication."""
def __init__(self):
super().__init__("Login is required in order to perform this action.")
class DownloadError(InstascrapeError):
"""Raised when Instascrape fails to download data from Instagram server."""
def __init__(self, message: str, url: str):
super().__init__("Download Failed -> {0} (url: '{1}')".format(message, url))
| 35.890411 | 131 | 0.719084 |
b993f45f6a9f937a4388acc8d42ab23fdbb386d1 | 1,332 | h | C | Sources/Samples/Stealth/AIController.h | jdelezenne/Sonata | fb1b1b64a78874a0ab2809995be4b6f14f9e4d56 | [
"MIT"
] | null | null | null | Sources/Samples/Stealth/AIController.h | jdelezenne/Sonata | fb1b1b64a78874a0ab2809995be4b6f14f9e4d56 | [
"MIT"
] | null | null | null | Sources/Samples/Stealth/AIController.h | jdelezenne/Sonata | fb1b1b64a78874a0ab2809995be4b6f14f9e4d56 | [
"MIT"
] | null | null | null | /*=============================================================================
AIController.h
Project: Sonata Engine
Copyright �by7
Julien Delezenne
=============================================================================*/
#ifndef _SE_AICONTROLLER_H_
#define _SE_AICONTROLLER_H_
#include "Common.h"
#include "GameController.h"
class CharacterActorState;
class AIController : public GameController
{
SE_DECLARE_ABSTRACT(AIController, GameController);
SE_BEGIN_REFLECTION(AIController);
SE_END_REFLECTION(AIController);
public:
AIController();
virtual ~AIController();
CharacterActorState* GetCharacterActorState() const { return _CharacterActorState; }
CharacterActorState* GetNextActorState() const { return _NextActorState; }
void SetCharacterActorState(const String& value);
virtual void Update(real64 elapsed);
virtual void Draw();
void OnPlayerKilled();
protected:
Mesh* CreateLOSMesh(real32 viewConeAngle, real32 viewDistance);
void SetLOSMeshColor(const Color32& color);
bool CheckLineOfSight();
void ChangeActorState();
public:
bool _TargetVisible;
Vector3 _TargetLastVisiblePosition;
real64 _TargetLostTime;
protected:
CharacterActorState* _CharacterActorState;
CharacterActorState* _NextActorState;
String _NextActorStateName;
MeshPtr _LOSMesh;
real64 _LastLOSCheck;
};
#endif
| 22.965517 | 85 | 0.713213 |
245669d5bef444836dd48fa69213d4f5975d1bd7 | 761 | sql | SQL | sql_metadb/derived_tables/instance_languages.sql | eliana-flo/folio-analytics | 9734eb0500467fbaf0d83c72d8bde926efb277ac | [
"Apache-2.0"
] | 2 | 2019-07-22T17:36:11.000Z | 2019-11-11T17:46:45.000Z | sql_metadb/derived_tables/instance_languages.sql | eliana-flo/folio-analytics | 9734eb0500467fbaf0d83c72d8bde926efb277ac | [
"Apache-2.0"
] | 8 | 2019-03-25T13:01:12.000Z | 2019-12-13T20:38:27.000Z | sql_metadb/derived_tables/instance_languages.sql | eliana-flo/folio-analytics | 9734eb0500467fbaf0d83c72d8bde926efb277ac | [
"Apache-2.0"
] | 13 | 2019-08-09T21:59:13.000Z | 2020-03-10T14:35:54.000Z | -- Create derived table for Instance languages
DROP TABLE IF EXISTS instance_languages;
CREATE TABLE instance_languages AS
SELECT
instances.id AS instance_id,
jsonb_extract_path_text(instances.jsonb, 'hrid') AS instance_hrid,
languages.jsonb #>> '{}' AS instance_language,
languages.ordinality AS language_ordinality
FROM
folio_inventory.instance AS instances
CROSS JOIN LATERAL jsonb_array_elements(jsonb_extract_path(jsonb, 'languages')) WITH ORDINALITY AS languages (jsonb);
CREATE INDEX ON instance_languages (instance_id);
CREATE INDEX ON instance_languages (instance_hrid);
CREATE INDEX ON instance_languages (instance_language);
CREATE INDEX ON instance_languages (language_ordinality);
VACUUM ANALYZE instance_languages;
| 30.44 | 121 | 0.806833 |
0187ac8a31342e2aa3e96a82c3c5b17a37b25d38 | 622 | rs | Rust | src/models/game_play_coordinates.rs | tarkah/rust-nhl-stats-api | 2ca5165af8b3513b5574895f4397b2f7e7a8a1be | [
"MIT"
] | 4 | 2019-08-08T02:12:04.000Z | 2020-12-01T07:30:44.000Z | src/models/game_play_coordinates.rs | tarkah/rust-nhl-stats-api | 2ca5165af8b3513b5574895f4397b2f7e7a8a1be | [
"MIT"
] | null | null | null | src/models/game_play_coordinates.rs | tarkah/rust-nhl-stats-api | 2ca5165af8b3513b5574895f4397b2f7e7a8a1be | [
"MIT"
] | 1 | 2022-01-12T02:19:21.000Z | 2022-01-12T02:19:21.000Z | /*
* NHL API
*
* Documenting the publicly accessible portions of the NHL API.
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
*/
#[derive(Debug, PartialEq, Serialize, Deserialize)]
pub struct GamePlayCoordinates {
#[serde(rename = "x", skip_serializing_if = "Option::is_none")]
pub x: Option<f32>,
#[serde(rename = "y", skip_serializing_if = "Option::is_none")]
pub y: Option<f32>,
}
impl GamePlayCoordinates {
pub fn new() -> GamePlayCoordinates {
GamePlayCoordinates {
x: None,
y: None,
}
}
}
| 20.064516 | 67 | 0.622186 |
f745b5f03770ee0202111348d9bd523106e66e6a | 3,560 | h | C | bsp/intel/peripheral/libupm/src/stepmotor/stepmotor.h | OpenSource-Infinix/android_hardware | 9a8a025f7c9471444c9e271bbe7f48182741d710 | [
"Unlicense"
] | 1 | 2017-09-22T01:41:30.000Z | 2017-09-22T01:41:30.000Z | bsp/intel/peripheral/libupm/src/stepmotor/stepmotor.h | Keneral/ahardware | 9a8a025f7c9471444c9e271bbe7f48182741d710 | [
"Unlicense"
] | null | null | null | bsp/intel/peripheral/libupm/src/stepmotor/stepmotor.h | Keneral/ahardware | 9a8a025f7c9471444c9e271bbe7f48182741d710 | [
"Unlicense"
] | 1 | 2018-02-24T19:09:04.000Z | 2018-02-24T19:09:04.000Z | /*
* Author: Yevgeniy Kiveisha <yevgeniy.kiveisha@intel.com>
* Copyright (c) 2014 Intel Corporation.
*
* Credits to Adafruit.
* Based on Adafruit BMP085 library.
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#pragma once
#include <string>
#include <math.h>
#include <mraa/pwm.hpp>
#include <mraa/aio.hpp>
#include <mraa/common.hpp>
#include <mraa/gpio.hpp>
#define MIN_PERIOD 500
#define MAX_PERIOD 1000
#define PULSEWIDTH 480
#define HIGH 1
#define LOW 0
namespace upm {
/**
* @brief Stepper Motor library
* @defgroup stepper libupm-stepper
* @ingroup seeed sparkfun pwm gpio motor
*/
/**
* @library stepmotor
* @sensor stepmotor
* @comname Stepper Motor
* @altname EasyDriver Stepper Motor Driver
* @type motor
* @man seeed sparkfun
* @web http://www.schmalzhaus.com/EasyDriver/index.html
* @con pwm gpio
*
* @brief API for the Stepper Motor
*
* This module defines the Stepper Motor interface. It is compatible with stepper
* motor drivers that use 2 pins to control the motor, like an Easy Driver
* from Brian Schmalz.
*
* @image html stepmotor.jpg
* @snippet stepmotor.cxx Interesting
*/
class StepMotor {
public:
/**
* Instantiates a StepMotor object
*
* @param dirPin Direction GPIO pin
* @param stePin Stepper pulse PWM pin
*/
StepMotor (int dirPin, int stePin);
/**
* StepMotor object destructor
* no need for the destructor; all the connections will be
* closed when m_dirPinCtx and m_pwmStepContext go out of
* scope
* ~StepMotor ();
**/
/**
* Sets the rotation speed
*
* @param speed Rotation speed
*/
void setSpeed (int speed);
/**
* Rotates the motor forward
*
* @param ticks Number of ticks the motor moves
*/
mraa::Result stepForward (int ticks);
/**
* Rotates the motor backward
*
* @param ticks Number of ticks the motor moves
*/
mraa::Result stepBackwards (int ticks);
private:
std::string m_name;
int m_dirPin;
int m_stePin;
int m_speed;
mraa::Gpio m_dirPinCtx;
mraa::Pwm m_pwmStepContext;
mraa::Result move (int ticks);
mraa::Result dirForward ();
mraa::Result dirBackwards ();
};
}
| 28.943089 | 81 | 0.63764 |
c7c0ddf187a121fa94e350a87f3a1a34fe08c11c | 10,107 | py | Python | ball.py | adata111/brick-carnival | 38dcb03764e00b84010eaa61dbec79c087dc9295 | [
"BSD-2-Clause"
] | null | null | null | ball.py | adata111/brick-carnival | 38dcb03764e00b84010eaa61dbec79c087dc9295 | [
"BSD-2-Clause"
] | null | null | null | ball.py | adata111/brick-carnival | 38dcb03764e00b84010eaa61dbec79c087dc9295 | [
"BSD-2-Clause"
] | null | null | null | from headers import *
import globalVar
from globalVar import TOP, BOTTOM, LIVES, HT, WIDTH, LEFT, RIGHT, obj_bricks, paddle, ALT_LIVES
rows = HT
cols = WIDTH
class Ball:
"""docstring for Ball
contains all methods that can modify state of the ball.
"""
def __init__(self, x, y, vx, vy, m):
super().__init__()
self.width = 1
self.height = 1
self.x = x
self.y = y
self.v_x = vx
self.v_y = -1
self.moving = m
self.thru = 0
self.dead = 0
self.fast = 0
self.fire = 0
def move(self,v=1):
paddle=globalVar.paddle
temp = self.v_x
if(self.moving == 0): # movement with paddle
if(paddle.x+paddle.width>=RIGHT and v>0):
v = 0
elif(paddle.x<=LEFT and v<0):
v = 0
self.x += v*paddle.v
return
self.x += self.v_x
if(self.x+self.width>=RIGHT and self.v_x>0):
self.v_x = -self.v_x
elif(self.x<=LEFT and self.v_x<0):
self.v_x = -self.v_x
elif(self.x+self.v_x+self.width>RIGHT):
self.x = RIGHT-self.v_x-self.width
elif(self.x+self.v_x<LEFT):
self.x = LEFT-self.v_x
if(self.v_x!=temp):
os.system('aplay -q ./sounds/ball_wall.wav&')
self.y += self.v_y
temp = self.v_y
if(self.y+self.height>=BOTTOM and self.v_y>0): # v_y>0 means it will go down
self.kill_ball()
return
elif(self.y<=TOP and self.v_y<0):
self.v_y = -self.v_y
if(self.y+self.v_y>BOTTOM):
self.y = BOTTOM-self.height
# self.kill_ball()
return
elif(self.y+self.v_y<TOP):
# self.v_y = -self.v_y
self.y = TOP-self.v_y
if(self.v_y!=temp):
os.system('aplay -q ./sounds/ball_wall.wav&')
def check_paddle_collision(self):
paddle = globalVar.paddle
check =0
if(self.x+self.width > paddle.x and self.x<paddle.x+paddle.width): # ball is within x coordinates of paddle
if(self.y+self.height==paddle.y):
self.set_vel(- self.v_y)
if(paddle.is_sticky()):
self.moving = 0
os.system('aplay -q ./sounds/ball_paddle.wav&')
return 1
if(self.x+self.width<paddle.x+paddle.width and self.x+self.v_x+self.width>paddle.x and self.v_x>=0): # top-left collision possible
if(self.y+self.height<paddle.y and self.y+self.v_y+self.height>paddle.y):
# top-left collision
self.y = paddle.y-self.height - self.v_y
check=1
elif(self.x>(paddle.x) and self.x+self.v_x<paddle.width+paddle.x and self.v_x<=0): # top-right collision possible
if(self.y+self.height<paddle.y and self.v_y+self.y+self.height>paddle.y):
# top-right collision
# self.set_vel(-self.v_y)
self.y = paddle.y-self.height - self.v_y
check=1
return check
def check_brick_collision(self):
check = 0
v_x=self.v_x
v_y=self.v_y
for brick in reversed(globalVar.obj_bricks):
if(brick.is_broken()):
continue
if((self.x>=brick.getx() and self.x+self.width<=brick.getx()+brick.width) and ((self.y<=brick.gety()+brick.height and self.y+self.height>=brick.gety() and self.v_y<0) or (self.y+self.height>=brick.gety() and self.y<=brick.gety()+brick.height and self.v_y>0)) ):
if(self.v_y==0): #not possible, but okay
continue
# collision with top or bottom brick surface
v_y = -self.v_y
check = 1
elif(((self.x+self.width==brick.getx() and self.v_x>0) or (self.x==brick.getx()+brick.width and self.v_x<0)) and (self.y+self.height<=brick.gety()+brick.height and self.y>=brick.gety())):
if(self.v_x==0):
continue
# collision with left or right edge of brick
v_x = -self.v_x
check = 1
if(check):
if(self.thru==0):
self.v_y = v_y
self.v_x = v_x
else:
if(brick.strength == 100): # exploding
brick.reduce_strength(self.v_x, self.v_y)
break
if(self.fire==0):
brick.break_it(self.v_x, self.v_y)
else:
brick.fire(self.v_x, self.v_y)
break
if(brick.strength != -1):
if(self.fire):
brick.fire(self.v_x, self.v_y)
else:
brick.reduce_strength(self.v_x, self.v_y)
else:
if(self.fire):
brick.fire(self.v_x, self.v_y)
break
if(check):
os.system('aplay -q ./sounds/ball_brick.wav&')
return
check=0
for brick in globalVar.obj_bricks:
if(brick.is_broken()):
continue
if((self.x+self.width)==brick.getx() and self.v_x>0): # top-left or bottom-left collision possible
if(self.y==brick.gety()+brick.height and self.v_y<0):
# bottom-left collision
v_y = -self.v_y
v_x = -self.v_x
# self.v_x = -self.v_x
check = 1
elif(self.y+self.height==brick.gety() and self.v_y>0):
# top-left collision
# self.v_y = -self.v_y
v_x = -self.v_x
v_y = -self.v_y
check = 1
elif(self.x==(brick.getx()+brick.width) and self.v_x<0): # top-right or bottom-right collision possible
if(self.y==brick.gety()+brick.height and self.v_y<0):
# bottom-right collision
v_y = -self.v_y
v_x = -self.v_x
# self.v_x = -self.v_x
check = 1
elif(self.y+self.height==brick.gety() and self.v_y>0):
# top-right collision
# self.v_y = -self.v_y
v_x = -self.v_x
v_y = -self.v_y
check = 1
if(check):
# ball-brick collision occurred, reduce brick strength now
os.system('aplay -q ./sounds/ball_brick.wav&')
if(self.thru==0):
self.v_y = v_y
self.v_x = v_x
else:
# if thru ball power up is activated, destroy bricks
if(brick.strength == 100): # exploding brick
brick.reduce_strength(self.v_x, self.v_y)
break
if(self.fire==0):
brick.break_it(self.v_x, self.v_y)
else:
# if fire ball power up is activated, destroy bricks exploding bricks style
brick.fire(self.v_x, self.v_y)
break
if(brick.strength != -1):
if(self.fire):
brick.fire(self.v_x, self.v_y)
else:
brick.reduce_strength(self.v_x, self.v_y)
else:
# unbreakable brick breaks only if the ball is fireball
if(self.fire):
brick.fire(self.v_x, self.v_y)
break
if(check):
return
check=0
for brick in globalVar.obj_bricks:
if(brick.is_broken()):
continue
if(self.x+self.width<brick.getx() or self.x>brick.getx()+brick.width or self.y+self.height<brick.gety() or self.y>brick.gety()+brick.height):
x = self.x+self.v_x
y = self.y + self.v_y
for b_x in range(brick.getx(),brick.getx()+brick.width):
for b_y in range(brick.gety(),brick.gety()+brick.height):
if(x==b_x and y==b_y):
if(self.v_x>0 and self.v_y>0): # approaching from north west
if(x-brick.getx()<y-brick.gety()):
v_x = -self.v_x
elif(x-brick.getx()==y-brick.gety()):
v_x = -self.v_x
v_y = -self.v_y
else:
v_y = -self.v_y
elif(self.v_x<0 and self.v_y>0): # approaching from north east
if(brick.getx()+brick.width-x<y-brick.gety()):
v_x = -self.v_x
elif(brick.getx()+brick.width-x==y-brick.gety()):
v_x = -self.v_x
v_y = -self.v_y
else:
v_y = -self.v_y
elif(self.v_x>0 and self.v_y<0): # approaching from south west
if(x-brick.getx()<brick.gety()+brick.height-y):
v_x = -self.v_x
elif(x-brick.getx()==brick.gety()+brick.height-y):
v_x = -self.v_x
v_y = -self.v_y
else:
v_y = -self.v_y
elif(self.v_x<0 and self.v_y<0): # approaching from south east
if(brick.getx()+brick.width-x<brick.gety()+brick.height-y):
v_x = -self.v_x
elif(brick.getx()+brick.width-x==brick.gety()+brick.height-y):
v_x = -self.v_x
v_y = -self.v_y
else:
v_y = -self.v_y
check = 1
break
if(check==1):
break
if(check):
os.system('aplay -q ./sounds/ball_brick.wav&')
if(self.thru==0):
self.x += self.v_x
self.y += self.v_y
self.v_y = v_y
self.v_x = v_x
else:
if(brick.strength == 100):
brick.reduce_strength(self.v_x, self.v_y)
break
if(self.fire==0):
brick.break_it(self.v_x, self.v_y)
else:
brick.fire(self.v_x, self.v_y)
break
if(brick.strength != -1):
if(self.fire):
brick.fire(self.v_x, self.v_y)
else:
brick.reduce_strength(self.v_x, self.v_y)
else:
if(self.fire):
brick.fire(self.v_x, self.v_y)
break
def kill_ball(self):
p = globalVar.paddle
if(p==None):
return
os.system('aplay -q ./sounds/lose_life.wav&')
if(globalVar.ALT_LIVES>0):
globalVar.ALT_LIVES -= 1
self.dead = 1
else:
l = globalVar.LIVES
globalVar.LIVES = l-1
for power_up in globalVar.power_ups:
if(power_up.is_activated()):
power_up.deactivate_power_up()
self.x = random.randint(p.x, p.x+p.width-self.width)
self.y = p.y-self.height
self.moving = 0
self.v_y = -2
self.v_x = 0
self.thru = 0
self.fast = 0
self.fire = 0
def set_props(self, x, y, vx, vy):
self.x = x
self.y = y
self.v_x = vx
self.v_y = vy
def is_moving(self):
return self.moving
def set_moving(self):
self.moving = 1
if(not globalVar.paddle.is_sticky()):
self.set_vel()
def set_vel(self, vy=-1):
paddle = globalVar.paddle
cen = paddle.width//2
p1 = cen//2
p3 = cen+p1
if(self.x - paddle.x<=p1):
self.v_x = self.v_x - 2
elif(self.x - paddle.x<cen):
self.v_x = self.v_x - 1
elif(self.x - paddle.x==cen):
self.v_x = self.v_x
elif(self.x - paddle.x<=p3):
self.v_x += 1
elif(self.x - paddle.x>p3):
self.v_x += 2
self.v_y = vy
def incr_vel(self):
if(self.fast):
return
self.fast = 1
if(self.v_y > 0):
self.v_y += 1
elif(self.v_y < 0 or not (self.is_moving())):
self.v_y -= 1
def decr_vel(self):
if(self.fast):
self.fast =0
if(self.v_y > 0):
self.v_y -= 1
elif(self.v_y < 0):
self.v_y += 1
def getArr(self, colour, symbol, arr):
y = self.y
h = self.height
w = self.width
x = self.x
for i in range(y, y+h):
for j in range(x,x+w):
arr[i][j] = (colour +symbol + Style.RESET_ALL)
return arr
def set_thru(self):
self.thru = 1
def unset_thru(self):
self.thru = 0
def set_fire(self):
self.fire = 1
def unset_fire(self):
self.fire = 0 | 27.464674 | 264 | 0.610567 |
844035736fcfaf5b541d812e2981b13087aae9a3 | 210,006 | html | HTML | practices/ref/Asynchronous-programming-scenarios.html | yelu/cppnotes | 9756f1655e8e8d0695552904b3a54dac119e7554 | [
"BSD-3-Clause"
] | 2 | 2020-07-31T08:13:23.000Z | 2020-07-31T08:14:36.000Z | practices/ref/Asynchronous-programming-scenarios.html | yelu/cppnotes | 9756f1655e8e8d0695552904b3a54dac119e7554 | [
"BSD-3-Clause"
] | null | null | null | practices/ref/Asynchronous-programming-scenarios.html | yelu/cppnotes | 9756f1655e8e8d0695552904b3a54dac119e7554 | [
"BSD-3-Clause"
] | null | null | null | <!DOCTYPE html> <html class="hasSidebar hasPageActions hasBreadcrumb conceptual has-default-focus js-focus-visible theme-dark mathjax-complete" lang=en-us dir=ltr data-css-variable-support=true data-authenticated=false data-auth-status-determined=true data-target=docs x-ms-format-detection=none data-js-focus-visible style><!--
Page saved with SingleFile
url: https://docs.microsoft.com/en-us/dotnet/csharp/async
saved date: Mon Jun 14 2021 12:45:00 GMT+0800 (China Standard Time)
--><meta charset=utf-8>
<meta name=viewport content="width=device-width, initial-scale=1.0">
<meta property=og:title content="Asynchronous programming - C#">
<meta property=og:type content=website>
<meta property=og:url content=https://docs.microsoft.com/en-us/dotnet/csharp/async>
<meta property=og:description content="Learn about the C# language-level asynchronous programming model provided by .NET Core.">
<meta property=og:image content=https://docs.microsoft.com/en-us/media/logos/logo-ms-social.png>
<meta property=og:image:alt content="Microsoft Logo">
<meta name=twitter:card content=summary>
<meta name=twitter:site content=@docsmsft>
<meta name=color-scheme content="light dark">
<meta name=apiPlatform content=dotnet>
<meta name=author content=cartermp>
<meta name=breadcrumb_path content=/dotnet/breadcrumb/toc.json>
<meta name=depot_name content=VS.core-docs>
<meta name=description content="Learn about the C# language-level asynchronous programming model provided by .NET Core.">
<meta name=document_id content=07ed82a3-99c1-0893-4e81-d095b4757ecc>
<meta name=document_version_independent_id content=3765200b-43e5-441c-b290-709c34dd2f6d>
<meta name=gitcommit content=https://github.com/dotnet/docs/blob/637ca200e94a08aa0526ae665dbc3ec3e1cfee8f/docs/csharp/async.md>
<meta name=locale content=en-us>
<meta name=ms.assetid content=b878c34c-a78f-419e-a594-a2b44fa521a4>
<meta name=ms.author content=wiwagn>
<meta name=ms.date content=05/20/2020>
<meta name=ms.devlang content=csharp>
<meta name=ms.prod content=dotnet-csharp>
<meta name=ms.technology content=csharp-async>
<meta name=ms.topic content=conceptual>
<meta name=original_content_git_url content=https://github.com/dotnet/docs/blob/live/docs/csharp/async.md>
<meta name=recommendations content=true>
<meta name=schema content=Conceptual>
<meta name=search.ms_docsetname content=core-docs>
<meta name=search.ms_product content=VS>
<meta name=search.ms_sitename content=Docs>
<meta name=show_latex content=true>
<meta name=site_name content=Docs>
<meta name=uhfHeaderId content=MSDocsHeader-DotNet>
<meta name=updated_at content="2021-03-27 11:33 AM">
<meta name=page_type content=conceptual>
<meta name=toc_rel content=toc.json>
<meta name=pdf_url_template content=https://docs.microsoft.com/pdfstore/en-us/VS.core-docs/{branchName}{pdfName}>
<meta name=search.mshattr.devlang content=csharp>
<meta name=word_count content=2141>
<meta name=scope content=.NET>
<link href=https://docs.microsoft.com/en-us/dotnet/csharp/async rel=canonical>
<title>Asynchronous programming - C# | Microsoft Docs</title>
<style>html{line-height:1.15}main{display:block}hr{overflow:visible}a{background-color:transparent}code{font-size:1em}img{border-style:none}button,input{font-family:inherit;font-size:100%;line-height:1.15}button,input{overflow:visible}button{text-transform:none}[type=button],[type=submit],button{-webkit-appearance:button}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}body,h1,h2,h3,hr,html,li,ol,p,ul{margin:0;padding:0}h3{font-size:100%}ul{list-style:none}button,input{margin:0}*,:after,:before{box-sizing:inherit}table{border-collapse:collapse;border-spacing:0}td:not([align]),th:not([align]){text-align:left}@-moz-keyframes blink{50%{background-color:transparent}}@-webkit-keyframes blink{50%{background-color:transparent}}@keyframes blink{50%{background-color:transparent}}.has-default-focus .focus-visible,.input:active{outline-color:inherit;outline-offset:.125rem;outline-style:dashed;outline-width:.125rem}.box:not(:last-child),.level:not(:last-child),.progress:not(:last-child),.subtitle:not(:last-child),.tabs:not(:last-child),.title:not(:last-child){margin-bottom:1.5rem}.button,.nav-bar-button{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.card .card-content .card-content-title,.card .card-content p.card-content-description{display:-webkit-box;-webkit-box-orient:vertical;overflow:hidden}.content a:not(.button):not(.nav-bar-button)[href*="//"]:not([href*="docs.microsoft.com"]):not([href*="docs.azure.cn"]):not([href*="startups.microsoft.com"]):not([href*="rd.microsoft.com"]):not([href*="developer.microsoft.com"]):not([href*="localhost:"]):not([class]):after,.content a[class=""]:not(.button):not(.nav-bar-button)[href*="//"]:not([href*="docs.microsoft.com"]):not([href*="docs.azure.cn"]):not([href*="startups.microsoft.com"]):not([href*="rd.microsoft.com"]):not([href*="developer.microsoft.com"]):not([href*="localhost:"]):after,.content a[class=focus-visible]:not(.button):not(.nav-bar-button)[href*="//"]:not([href*="docs.microsoft.com"]):not([href*="docs.azure.cn"]):not([href*="startups.microsoft.com"]):not([href*="rd.microsoft.com"]):not([href*="developer.microsoft.com"]):not([href*="localhost:"]):after,[href*="//"].button.has-external-link-indicator:not([href*="docs.microsoft.com"]):not([href*="docs.azure.cn"]):not([href*="startups.microsoft.com"]):not([href*="rd.microsoft.com"]):not([href*="developer.microsoft.com"]):not([href*="localhost:"]):after,[href*="//"].nav-bar-button.has-external-link-indicator:not([href*="docs.microsoft.com"]):not([href*="docs.azure.cn"]):not([href*="startups.microsoft.com"]):not([href*="rd.microsoft.com"]):not([href*="developer.microsoft.com"]):not([href*="localhost:"]):after,a.has-external-link-indicator:not(.button):not(.nav-bar-button)[href*="//"]:not([href*="docs.microsoft.com"]):not([href*="docs.azure.cn"]):not([href*="startups.microsoft.com"]):not([href*="rd.microsoft.com"]):not([href*="developer.microsoft.com"]):not([href*="localhost:"]):after{-webkit-mask-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2048 2048'%3E%3Cpath d='M1792 256v640h-128V475l-851 850-90-90 850-851h-421V256h640zm-512 1007h128v529H256V640h529v128H384v896h896v-401z'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2048 2048'%3E%3Cpath d='M1792 256v640h-128V475l-851 850-90-90 850-851h-421V256h640zm-512 1007h128v529H256V640h529v128H384v896h896v-401z'/%3E%3C/svg%3E");background-color:currentColor!important;content:"";-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center}.content a:not(.button):not(.nav-bar-button)[href*="//"]:not([href*="docs.microsoft.com"]):not([href*="docs.azure.cn"]):not([href*="startups.microsoft.com"]):not([href*="rd.microsoft.com"]):not([href*="developer.microsoft.com"]):not([href*="localhost:"]):not([class]):after,.content a[class=""]:not(.button):not(.nav-bar-button)[href*="//"]:not([href*="docs.microsoft.com"]):not([href*="docs.azure.cn"]):not([href*="startups.microsoft.com"]):not([href*="rd.microsoft.com"]):not([href*="developer.microsoft.com"]):not([href*="localhost:"]):after,.content a[class=focus-visible]:not(.button):not(.nav-bar-button)[href*="//"]:not([href*="docs.microsoft.com"]):not([href*="docs.azure.cn"]):not([href*="startups.microsoft.com"]):not([href*="rd.microsoft.com"]):not([href*="developer.microsoft.com"]):not([href*="localhost:"]):after,a.has-external-link-indicator:not(.button):not(.nav-bar-button)[href*="//"]:not([href*="docs.microsoft.com"]):not([href*="docs.azure.cn"]):not([href*="startups.microsoft.com"]):not([href*="rd.microsoft.com"]):not([href*="developer.microsoft.com"]):not([href*="localhost:"]):after{padding:0 .4375em;margin:0 .125rem;-webkit-clip-path:padding-box inset(.28125em 0);clip-path:padding-box inset(.28125em 0)}@supports (-webkit-touch-callout:none){.content a:not(.button):not(.nav-bar-button)[href*="//"]:not([href*="docs.microsoft.com"]):not([href*="docs.azure.cn"]):not([href*="startups.microsoft.com"]):not([href*="rd.microsoft.com"]):not([href*="developer.microsoft.com"]):not([href*="localhost:"]):not([class]):after,.content a[class=""]:not(.button):not(.nav-bar-button)[href*="//"]:not([href*="docs.microsoft.com"]):not([href*="docs.azure.cn"]):not([href*="startups.microsoft.com"]):not([href*="rd.microsoft.com"]):not([href*="developer.microsoft.com"]):not([href*="localhost:"]):after,.content a[class=focus-visible]:not(.button):not(.nav-bar-button)[href*="//"]:not([href*="docs.microsoft.com"]):not([href*="docs.azure.cn"]):not([href*="startups.microsoft.com"]):not([href*="rd.microsoft.com"]):not([href*="developer.microsoft.com"]):not([href*="localhost:"]):after,a.has-external-link-indicator:not(.button):not(.nav-bar-button)[href*="//"]:not([href*="docs.microsoft.com"]):not([href*="docs.azure.cn"]):not([href*="startups.microsoft.com"]):not([href*="rd.microsoft.com"]):not([href*="developer.microsoft.com"]):not([href*="localhost:"]):after{-webkit-clip-path:border-box inset(.4em 0)!important;clip-path:border-box inset(.4em 0)!important}}[href*="//"].button.has-external-link-indicator:not([href*="docs.microsoft.com"]):not([href*="docs.azure.cn"]):not([href*="startups.microsoft.com"]):not([href*="rd.microsoft.com"]):not([href*="developer.microsoft.com"]):not([href*="localhost:"]):after,[href*="//"].nav-bar-button.has-external-link-indicator:not([href*="docs.microsoft.com"]):not([href*="docs.azure.cn"]):not([href*="startups.microsoft.com"]):not([href*="rd.microsoft.com"]):not([href*="developer.microsoft.com"]):not([href*="localhost:"]):after{width:1em;height:1em;margin-left:.25em}.button,.input{-webkit-appearance:none;-moz-appearance:none;appearance:none;align-items:center;border:1px solid transparent;box-shadow:none;display:inline-flex;font-size:1rem;height:2.25em;justify-content:flex-start;line-height:1.5;padding-bottom:calc(.375em - 1px);padding-top:calc(.375em - 1px);position:relative;vertical-align:top}body,html{font-family:Segoe UI,SegoeUI,Helvetica Neue,Helvetica,Arial,sans-serif;-webkit-font-smoothing:antialiased;font-weight:400;text-rendering:optimizeLegibility}pre{font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,Courier,monospace!important;-moz-osx-font-smoothing:auto;-webkit-font-smoothing:auto}code{direction:ltr;font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,Courier,monospace}.js-focus-visible .has-default-focus :focus:not(.focus-visible){outline:none}.has-default-focus .focus-visible.has-inner-focus{outline-color:currentColor;outline-offset:-.125rem}.border-top{border-top:1px solid #e6e6e6!important;border-top:1px solid var(--theme-border)!important}.border-bottom{border-bottom:1px solid #e6e6e6!important;border-bottom:1px solid var(--theme-border)!important}.border-bottom-none{border-bottom:0!important}.display-flex{display:flex!important}.justify-content-flex-start{justify-content:flex-start!important}.justify-content-flex-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-space-between{justify-content:space-between!important}.align-items-center{align-items:center!important}.flex-direction-column{flex-direction:column!important}.flex-wrap-wrap{flex-wrap:wrap!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-grow-1{flex-grow:1!important}.position-fixed{position:fixed!important}.position-absolute{position:absolute!important}.position-relative{position:relative!important}.top-0{top:0}.right-0{right:0}.bottom-0{bottom:0}.left-0{left:0}.margin-inline-xs{margin-inline:1rem!important}.margin-top-xs{margin-top:1rem!important}.padding-xs{padding:1rem!important}.font-size-l{font-size:1.125rem!important}.font-size-s{font-size:.875rem!important}.font-size-xs{font-size:.75rem!important}.font-weight-semibold{font-weight:600!important}.has-text-primary{color:#0078d4!important;color:var(--theme-primary-base)!important}.has-text-success-invert{color:#ffffff!important;color:var(--theme-success-invert)!important}.has-background-success{background-color:#107c10!important;background-color:var(--theme-success-base)!important;outline-color:var(--theme-success-invert)}.has-body-background{background-color:#ffffff!important;background-color:var(--theme-body-background)!important}.has-fill-current-color{fill:currentColor!important}.has-outline-color-text{outline-color:#171717!important;outline-color:var(--theme-text)!important}.is-block{display:block!important}@media screen and (-webkit-min-device-pixel-ratio:1.25) and (max-width:767.9px),screen and (max-width:767px),screen and (min-resolution:120dpi) and (max-width:767.9px){.is-hidden-mobile{display:none!important}}@media screen and (-webkit-min-device-pixel-ratio:1.25) and (max-width:767.9px) and (-webkit-min-device-pixel-ratio:1.25) and (max-aspect-ratio:1/1),screen and (-webkit-min-device-pixel-ratio:1.25) and (max-width:767.9px) and (max-aspect-ratio:1/1),screen and (max-width:767px) and (-webkit-min-device-pixel-ratio:1.25) and (max-aspect-ratio:1/1),screen and (max-width:767px) and (max-aspect-ratio:1/1),screen and (max-width:767px) and (min-resolution:120dpi) and (max-aspect-ratio:1/1),screen and (min-resolution:120dpi) and (max-width:767.9px) and (max-aspect-ratio:1/1),screen and (min-resolution:120dpi) and (max-width:767.9px) and (min-resolution:120dpi) and (max-aspect-ratio:1/1){.is-hidden-portrait{display:none!important}}@media screen and (-webkit-min-device-pixel-ratio:1.25) and (min-width:768px) and (max-width:1087.9px),screen and (min-resolution:120dpi) and (min-width:768px) and (max-width:1087.9px),screen and (min-width:768px) and (max-width:1087px){.is-hidden-tablet-only{display:none!important}}.is-invisible{visibility:hidden!important}.visually-hidden,.visually-hidden-until-focused:not(:focus){border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal}@media screen and (-webkit-min-device-pixel-ratio:1.25) and (max-width:1087.9px),screen and (max-width:1087px),screen and (min-resolution:120dpi) and (max-width:1087.9px){.is-visually-hidden-touch{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal}}.is-full-height{height:100%}.is-unstyled{list-style-type:none!important}.is-vertically-scrollable{overflow-x:hidden;overflow-y:auto;-webkit-overflow-scrolling:touch}.is-full-width{width:100%!important}.expanded-indicator{transition:transform .15s}.has-overflow-hidden{overflow:hidden!important}.has-background-linethrough{position:relative;z-index:1}.has-background-linethrough:before{border-top:1px solid #e6e6e6;border-top:1px solid var(--theme-border);content:"";margin:0 auto;position:absolute;top:50%;left:0;right:0;bottom:0;width:100%;z-index:-1}.has-text-subtle{color:#505050!important;color:var(--theme-text-subtle)!important}.has-text-centered{text-align:center!important}.has-padding-none{padding:0!important}.has-padding-right-extra-small{padding-right:.25rem!important}.has-margin-top-small{margin-top:.5rem!important}.has-margin-right-small{margin-right:.5rem!important}.has-margin-bottom-small{margin-bottom:.5rem!important}.has-padding-bottom-small{padding-bottom:.5rem!important}.has-margin-top-large{margin-top:1.5rem!important}.has-margin-bottom-large{margin-bottom:1.5rem!important}.has-margin-top-none{margin-top:0!important}.has-margin-bottom-none{margin-bottom:0!important}.has-margin-left-none{margin-left:0!important}@media print,screen and (min-width:768px){.has-padding-none-tablet{padding:0!important}.has-padding-right-medium-tablet{padding-right:1rem!important}.has-padding-left-medium-tablet{padding-left:1rem!important}}@media print,screen and (min-width:860px){.has-padding-left-none-uhf-tablet{padding-left:0!important}}@media screen and (min-width:1088px){.has-padding-none-desktop{padding:0!important}.has-padding-right-extra-large-desktop{padding-right:3rem!important}}.has-three-lines{-webkit-line-clamp:3!important}@media print,screen and (min-width:768px){.has-flex-justify-content-end-tablet{justify-content:flex-end!important}}.theme-light,:root{--theme-text:#171717;--theme-text-subtle:#505050;--theme-text-invert:#fff;--theme-text-glow-high-contrast:#171717;--theme-box-shadow-light:rgba(0,0,0,0.11);--theme-box-shadow-medium:rgba(0,0,0,0.13);--theme-box-shadow-heavy:rgba(0,0,0,0.18);--theme-box-shadow-extra-heavy:rgba(0,0,0,0.22);--theme-overlay:rgba(0,0,0,0.7);--theme-overlay-invert:#fff;--theme-body-background:#fff;--theme-body-background-medium:#f2f2f2;--theme-alternate-background:#171717;--theme-alternate-background-medium:#2f2f2f;--theme-border:#e6e6e6;--theme-table-header:#e6e6e6;--theme-table-row-header:#fafafa;--theme-table-border-dark:#d2d2d2;--theme-hover-base:#2f2f2f;--theme-hover-invert:#fafafa;--theme-border-white-high-contrast:rgba(255,255,255,0);--theme-border-yellow-high-contrast:rgba(0,0,0,0);--theme-code-header:#e6e6e6;--theme-code-block:#f2f2f2;--theme-inline-code:#e6e6e6;--theme-code-highlight-background:#fff4ce;--theme-visited:#624991;--theme-score-low-off:rgba(168,0,0,0.3);--theme-score-low:#b62626;--theme-score-medium-off:rgba(255,187,0,0.3);--theme-score-medium:#ffb900;--theme-score-high-off:rgba(72,157,72,0.3);--theme-score-high:#2a8b2a;--theme-hyperlink:#0065b3;--theme-primary-base:#0078d4;--theme-primary-background:#d7eaf8;--theme-primary-background-glow-high-contrast:#d7eaf8;--theme-primary-dark:#004173;--theme-primary-hover:#0065b3;--theme-primary-active:#00579a;--theme-primary-box-shadow:rgba(0,101,179,0.3);--theme-primary-invert:#fff;--theme-secondary-base:#a2a2a2;--theme-secondary-background:#e6e6e6;--theme-secondary-background-glow-high-contrast:#e6e6e6;--theme-secondary-dark:#2f2f2f;--theme-secondary-hover:#d2d2d2;--theme-secondary-active:#d2d2d2;--theme-secondary-box-shadow:rgba(0,0,0,0.3);--theme-secondary-invert:#000;--theme-tertiary-base:#243a5e;--theme-tertiary-background:#061329;--theme-tertiary-background-glow-high-contrast:#061329;--theme-tertiary-dark:#a4b2c9;--theme-tertiary-hover:#14294c;--theme-tertiary-active:#70819f;--theme-tertiary-box-shadow:rgba(38,23,63,0.3);--theme-tertiary-invert:#fff;--theme-success-base:#107c10;--theme-success-background:#dff6dd;--theme-success-background-glow-high-contrast:#dff6dd;--theme-success-dark:#054b16;--theme-success-hover:#0b6413;--theme-success-active:#054b16;--theme-success-box-shadow:rgba(72,157,72,0.3);--theme-success-invert:#fff;--theme-info-base:#8661c5;--theme-info-background:#efd9fd;--theme-info-background-glow-high-contrast:#efd9fd;--theme-info-dark:#3b2e58;--theme-info-hover:#8661c5;--theme-info-active:#624991;--theme-info-box-shadow:rgba(32,24,67,0.3);--theme-info-invert:#fff;--theme-warning-base:#ffb900;--theme-warning-background:#fff4ce;--theme-warning-background-glow-high-contrast:#fff4ce;--theme-warning-dark:#6a4b16;--theme-warning-hover:#d19501;--theme-warning-active:#966802;--theme-warning-box-shadow:rgba(255,187,0,0.3);--theme-warning-invert:#000;--theme-danger-base:#a80000;--theme-danger-background:#fde7e9;--theme-danger-background-glow-high-contrast:#fde7e9;--theme-danger-dark:#470001;--theme-danger-hover:#870000;--theme-danger-active:#630001;--theme-danger-box-shadow:rgba(168,0,0,0.3);--theme-danger-invert:#fff;--theme-facepile-red:#a80000;--theme-facepile-teal:#328e9f;--theme-facepile-blue:#0078d4;color-scheme:light}@media not print{.theme-dark{--theme-text:#e6e6e6;--theme-text-subtle:#d2d2d2;--theme-text-invert:#2f2f2f;--theme-text-glow-high-contrast:#e6e6e6;--theme-box-shadow-light:rgba(255,255,255,0.11);--theme-box-shadow-medium:rgba(255,255,255,0.13);--theme-box-shadow-heavy:rgba(255,255,255,0.18);--theme-box-shadow-extra-heavy:rgba(255,255,255,0.22);--theme-overlay:rgba(0,0,0,0.7);--theme-overlay-invert:#fff;--theme-body-background:#171717;--theme-body-background-medium:#2f2f2f;--theme-alternate-background:#f2f2f2;--theme-alternate-background-medium:#fafafa;--theme-border:#404040;--theme-table-header:#404040;--theme-table-row-header:#2f2f2f;--theme-table-border-dark:#505050;--theme-hover-base:#d2d2d2;--theme-hover-invert:#2f2f2f;--theme-border-white-high-contrast:rgba(255,255,255,0);--theme-border-yellow-high-contrast:rgba(0,0,0,0);--theme-code-header:#404040;--theme-code-block:#2f2f2f;--theme-inline-code:#404040;--theme-code-highlight-background:#0b6413;--theme-visited:#ac7ee1;--theme-score-low-off:rgba(168,0,0,0.7);--theme-score-low:#b62626;--theme-score-medium-off:rgba(255,187,0,0.3);--theme-score-medium:#ffcb3f;--theme-score-high-off:rgba(72,157,72,0.7);--theme-score-high:#489d48;--theme-hyperlink:#75b6e7;--theme-primary-base:#75b6e7;--theme-primary-background:#004173;--theme-primary-background-glow-high-contrast:#004173;--theme-primary-dark:#9ccbee;--theme-primary-hover:#278cda;--theme-primary-active:#0078d4;--theme-primary-box-shadow:rgba(0,101,179,0.3);--theme-primary-invert:#000;--theme-secondary-base:#757575;--theme-secondary-background:#404040;--theme-secondary-background-glow-high-contrast:#404040;--theme-secondary-dark:#e6e6e6;--theme-secondary-hover:#8e8e8e;--theme-secondary-active:#a2a2a2;--theme-secondary-box-shadow:rgba(0,0,0,0.7);--theme-secondary-invert:#fff;--theme-tertiary-base:#404040;--theme-tertiary-background:#171717;--theme-tertiary-background-glow-high-contrast:#171717;--theme-tertiary-dark:#e6e6e6;--theme-tertiary-hover:#505050;--theme-tertiary-active:#757575;--theme-tertiary-box-shadow:rgba(0,101,179,0.3);--theme-tertiary-invert:#fff;--theme-success-base:#489d48;--theme-success-background:#054b16;--theme-success-background-glow-high-contrast:#054b16;--theme-success-dark:#dff6dd;--theme-success-hover:#489d48;--theme-success-active:#7cbb7b;--theme-success-box-shadow:rgba(72,157,72,0.7);--theme-success-invert:#000;--theme-info-base:#9970d3;--theme-info-background:#3b2e58;--theme-info-background-glow-high-contrast:#3b2e58;--theme-info-dark:#efd9fd;--theme-info-hover:#ac7ee1;--theme-info-active:#d59dff;--theme-info-box-shadow:rgba(32,24,67,0.7);--theme-info-invert:#000;--theme-warning-base:#ffb900;--theme-warning-background:#6a4b16;--theme-warning-background-glow-high-contrast:#6a4b16;--theme-warning-dark:#fff4ce;--theme-warning-hover:#ffcb3f;--theme-warning-active:#ffdf84;--theme-warning-box-shadow:rgba(255,187,0,0.7);--theme-warning-invert:#000;--theme-danger-base:#b62626;--theme-danger-background:#630001;--theme-danger-background-glow-high-contrast:#630001;--theme-danger-dark:#fde7e9;--theme-danger-hover:#c54f4f;--theme-danger-active:#d4797a;--theme-danger-box-shadow:rgba(168,0,0,0.7);--theme-danger-invert:#fff;--theme-facepile-red:#c54f4f;--theme-facepile-teal:#50e6ff;--theme-facepile-blue:#278cda}.theme-dark{color-scheme:dark}}.theme-dark{color:var(--theme-text);background-color:var(--theme-body-background);outline-color:var(--theme-text)}h1,h2,h3{font-weight:600}.docon{font-family:docons;font-size:inherit;speak:none;display:inline-block;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;text-align:center;direction:ltr;line-height:16px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@font-face{font-family:docons;src:url(data:application/font-woff2;base64,d09GMgABAAAAADEYAAsAAAAAYrQAADDGAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHFQGVgCVBgqBkSj0HAE2AiQDhBwLghAABCAFhHkHj3cbUVIHxjFHcTuAqOLlhaIoj6si+/8/IekYw4G6IY9M66AQMzPiB5prpmWECjRxJ2kDIa2HirnoEkwTK2waydUUtojCyTT15pn2/mbYo0KQ2LHNxIvE58bXUl6o+3F3j4e0dNi42amGY8kr0HmtWg/osTTK1bC+v5z/yLobNVIdW03LI+hF96GUPA/MVb4cAe4BAFeKKl8hMwuUKfC3f7Z59x2xxqMRaZQkk1bWhsCAo3a2KkFPHniO5b9MoaPDwkiQ3eF8DVaBx4vG0Z5HATZNKGp43m091giZgvKFD7hAUxQV3LgmKGBWlqiBNiUtNa8Om+JpU8u0oU0cDbu6kVRi0s3s8naDtCtr21peBMCirkpKOinpBg5h4AhAsnc3zc7l/qdp7dZuA0c0t89UApYU/1YuNUFMAP3bhh7eaBo/Syv/RWVVXdDCuwg9DYgGDt3f8hWEHAlh3uT+GFOovgpb43QH55UcB6bF+RAG54U84iD2dfamcLWmDLv2v63GFkYPYTmSOEIEzJvTemn3Jr29CQK7HGqyBGAY+Nx9P5erfbWvthQoDNgcKAfbDkNgVO++21GJhCGd5hrF4aK/5HZ7cAmGjWlYOyzddCfZ8emsxLJCskO2H6L4wbLDH0L3gXlqWQrgg+3Pg/PQuAS0ES1Dx64/bwVa5r0EzYk61LZG1p0QojxPIE2f4sfwY0zI+Wk7SLVhrhV/26RhCG2QS0mi1e2noZlpinoiCIKUv9z9+6MAfZx6BbZPe4+KnZan92UKps9egFOwmNYbl4SfeBagLlRC+GwzMGjbIlC0Pw+zHn/gvwCWe7rwENB36eD1bVf1lzlHXNC/8Guws4GWR1fQwE9St7Kvo2spyEYNGLd+fxbBwWle6hcCTlHSO/cO6gRdUBfX5dyvuN94f+v94QduD16/7cGuB7sf3H5IeHhD/cOLjxRjw+OEJ/VPmp+y1nS7KV2H+PnC5yc6D1QBL/dV56q7dcqrmVf2X9e8C36neBfzbsl70vuY93Gu4OSMwpLKjolmV5Yxl0yJsRecF+0vMj+iNdHHVXfOP6Qi9kawqVnFZdX9qdMrh55uLfwN4u2CH9FfF/0TuRy9qlo//6Zq29/x+cU1cIBfwF3wFoFHUAC8ho9tqTwJyvwZmtcjzZNJCx4s+j8yZ8mKKc+uDPtV0ezMhUsnTpX/FbwpQX7u1Ps38OrajRG/JyxrsirDo3y9+gwYVCVZjhJdOmXLFWH06NemXbwhLUK1DuXCGXGpFOfWIQStkiRKkaVbqp+MTZTerlCRYmG+Zsxas2HTlm07du05dGTfumP3Drz79OVbtRq1GjWo80ERBTB/P6DHCIz8rqSjDbymdMdLSi5mUEKYSCnAYMqZmEkZhC/KOJygzMFBygqso2zESMqteE45jN3UKDhEzQ1PqXnhMLVt+K62Cyep7cYBahM4Qu02jtFIwB4a2XhBYz3u03gRW2lS4JOmBiynOQFLaanHbVqacZdWFu7R6sJN2gBu0abDVx1i3KFjIbpCx3E8ouMEHtN5AAupAvBNtQ+7qM7hFdUdPKC6i4fUKdhGPQef1YdwnLodR/l1DZbwRzBO8YcCo/kjBs/4Ywkm8ScR6/mThA38OQOb+NMNmwnAXILAMILEeILCdILGGoLFaoLDOILHBEJo1hAxAELCTkLGRjIDKwgFK4nbbhDBFkLDMkJHDwgDfSBMzCbumEXY6AXhoBvEA10gXGwnEOYQLwyE8LCD8LGKwOgOEaCACE/ZXd4AQ4kPhhA/DCf+GEvEWEskGEEC8VFmoj8kCGNIMPpCpOgHCcFkEnri75IBTCVhmEbC0RMSgb1Ejn1Egf0kEqeJEmdJAs6RRJwnSbhAknGRpOASScVlkoZrJB3XSQauEDXOkDzcIPl4QjS4SrR4Q3R4RwrwnszCB1KIBjIb84ge80kJFpNSLCJlWECMf7wFP1Bkla8HMPJn45ayW9fpuzDeRpn1UbQJZLE8BIY7yFpwD5gSKY1fJ5oePENRjoTVMo5IST2V0SukVh2uzaJqujACSrLrWQbLRI9ilJUZhRURwpnBR+c0/MpLlUYJ5xlkIaDLnrS37qoUgHMSeIHIhLC7EqYtKUSvkVepUm4ZgESUFjCLhObwS2+eYiyJMdfUocoRJdjJ9WpS/bffF6DIuTyWV0dkqBhnEswdd9+KZAZZiqRYitNNlTGHeHY/cAbAWa4k4lKMPntBLeamsjFUiGrmMHexCClNqwqzQXOdhW10gRywlFZPmYqF/xhmZAZafqGiK6XdfnfYHxDowEkOZKN8uNUqgLyRLxVqTqGCNaIN1tjUtLgCq6MYpIoIQjXXaGUVUgCfEx+gGgn8qD7WuhwEopY4aFNmXBkAjG+u15QnpYhBzosDaHY0MgvOkKQtCX8XqbtT2w7xs3uK/jm6nKMA0U9C9Rq6lBzdnlvNdGDsUHKLuRmrjGyRJ5TeH02zybuMWcL4TpHcBXcU00lWzOULSsCAOivCbGbM5/ZyaS4WJ6xSMpdLez43ZrPTSoIgGRB9MqueTU69sa+zaLDAltWqnBioZYY5ZIB6mo7EDFSGVsemzFJaEdkA3wK7t6WbPZhZi0cL6L/69COEDIS/z0BiQUC/+LA2mteRoYQhR6MklPJtmreey8DTD6wKvC922nIJ/d92Fmc1e1seJavYudNv7dgg9bg/irvrxlonGu6hcKuqVJYwuf7BDvSb/XQyOBknx32zdzS2htOO0T0c/YGUCntLDMNdTjNCnBDwJdSFdZGVmKkd6x8sEFTBJgH7hX7k+KblYpI8LQkICRkZ2HIhhRATJlLqRDqmSZbGBqpjEXJMDoBlfQczqAUYws4FQ1vyy53Zmt64gsLi3qVny82Ld2/ieL3Iwnnz3KmP16wrw2kGAyHD4+Pb1+2rNw+3z65KWkKGRW5sy76eA9Ygm9WgX36UqxtPVTup9rhtpaIy0kKB93YuS/MpCBAanGSgwGjL5ZtcgxQzJYe8mpxjsaPzgqFyTZAcXZRck5U2dcm49GlTKMZyYgw3xpYt/T8H6XQcAi0mlbd2KUJTyDN4DHgdSDU/LNu32br6FaXt6oFatKUpVFHEi8X4ZilogfWzUnowtMa5QveufX8VRD9uAteIPEQhSFrQt9MQI4W9aM1Yj/dx+TNIN82N5AAJxjBtQ99KgmgyXtQArhn7GOq0B8mGuZkOuP24zblFe6gcQ5t3zU24cmNYIajz/ePJdYwqNlieR7xh1MlMlpjBGugIvs/edgREzwa1CfRVyds5FIhTCKwEyASiB1mXRsCtxO84GYcFOSZ8xMqh1DUo09MvA+ewg4aCBRz7tOWAxLmYpdDNH+NYBOweEwAsBBwlTL1AJbjXt37+G4Vfaxxv14KjnF8OLkGc4bc9M384/0ZA358UKYeG5bXK7WOkM3y6nD/jAugQPmIb7wbeGrAJSOkpn+gaaWtRvUHKYoSykKTRuxQr6UM/z3USQ8EhwLmUJ4AYw4mZy5L7Iyq2C8A5iLAIVwpetJYRLzrbANKr9vVymG7KbU6ulZQCy/8ci3jmx9TNNo1McU4kqDTPKtGJSFgL4iMzDx9zmUZShkt/hOEDLozsyePe3VgJR+axfWhMdecFUFrE/yJDhkoUAx0vMlKbSjO6M4ubtVrKjERbqaIrPcuu1GUEfNzDLhm0NZvU6iaT5klmHSEvA8YdjYCobKEilWs0Otg9r8HiS2BYu2DKpSTQjPxTyHlXjeeffuZs1o2pr6r9v5zrFtsvteGaV/9BnRKIJyAjCYNliyJ0CwlzG0TyJi+lwRxdWG0kNmTAkcDTjiic7ESevOhEnof6cChuSQiChJVDK/i4eL9rdCpV2boFhqrWrkQrSc/s1/771Jh5cenmqfhGwmrx/6po7R63Hp9GLsxl7XRvQQ8vxa1rt452zpnnd3sRryffbZ0zxtnB9dNe1fO8i1YsQ3t4+UpMzmTLzbG6qUxy6Vn85IJWlwg3cQktXnwGPb+sOrLosfkXvXrVv6t1nq9e3lfwAyOLHpkqv3wluKf2X8IP7pweA/IBt1WJOhXDUoVN2quOBNkSIrG6i+3j/pggdLP6R2uWgO1A7UikHVTAcb5S6y0Ql3ngsRczVAzF9P0mn5WAVUZPi0W6rA6MjEXkT0YjodRcPl7a84cMPr//QZ9ijjEAFyEKiU4qqE/eH1ofjp8VbZ+xmqt6zMgJ2yNPUsLI04/lYjpvTRFX4ldi4D5Wa+AcgoKA5icU7r3aM2vpR+nJWJPcp0qhrwqWG6BQ8Dock+1R+Fibfmh2XaZJaVQK4IQgTwuQc4B7WNSxyTGzozLSjUcV0gvg1F1XuzMceQv6y8tfbbdnNiqDs2g4//WXPrq5YFyc41jmHzyb5lPNn8HHRGz7t9q2Ak9IHo7WM44jlLCoJrCClD5KB3HG4Sb89ioOyqX727P3bwxbR7dmNzrrhzeXt/ta1XB5eHM7QAj5pgwF27hxq9e/fbWrNZ7T9MN2qywcx3WlFHooBTke3fLtiV30B5IDioZaIF7GMWiz6Ns8zEuTtUpCY6Bkkj6vjG8PFu4Oby0i6xDitjNev328Ozhtyr85OuyeBd0iPUfVDuEJ/U7vqLTu7bxzoxDPx/jHSPnOfEpIiT12vKJZVhmd/FTvVBbTGpPrrU2paxBFa+P0XOUwJgQ/3UoPwVUlRDiDkQgOQPE6IWcEPEG3dg/T45Iqucjp+TquVgcjQNiwxNYx47IElS7jdCliSxkE/myVBGyjSymxhGDMIsRELX/HpoRYTEq9p0BqSAtxjMmrpZyBunNxMDnOs2I0D3ueMW6azBKMLwEciPqdktoE7PdQcerVNmdcyJAOzvJlDDI2EUc8oY95AIRx9p4QCPtvD1DY24sIf5yL45DGcrgUKKcWcsNjEudUhNACIJMFpNDrUpMQA0bkrwjAgUagTpdZVgSJ4dqSk8hYTr12UgJ1vuyBYJm+Lq0ouAZIU5g5g0gWRUqlxN3NRliO0pQR1TjQOfIOGZYcveggLt6V668aI6Ji1dgaQdXKZK5YY60b1sS7ngxMQqmM7JSSQQ6nE3/l8UHCxEgajNzP/BIaQlYEhnPYaknUnelw6Piod65lkNgGk7Q/Dkh6yfjA2lu2ALCCu/FoPzKjz7XgAWrw0NPp+I7rYwYKHlEqJ8fZvs1lqNxD2VcK8YTCuwGi4NxnGhWvjBmqRoM4DeBcG6y/5CHmZJiyCpDxRYuHe1ewtCPHMAFKOIxL8kSiRtlMm3NTIMK2nYQdemF9YjKNLpD4jp8QX5fnLzsyWNsj5cTebHOpW+pSjjQQLZj6Nn+5ORBm/gyoE3cBRoWTK78AjkNhoKmHTcLQmwjAnaejnUnZAGHDcPUfpQkhG57VFKOAx9hy9yfki8D6ppeHvsRgfwnio7wsgoY4FDxcI+56BjgXK9ZcMvhok4uNSKJAuNT1bKlIQecNgIcZ79QERiNnGUd0Y3bdxtNmWlYpOADaE4x3/5AVZDBkZiu4DUOf4rasDIa8WsPDAa1Vla7tlaGY7IMhGJ73eC+HbJJhboBxFSEHi4TUiObMQEAzWiqawL3WgsXOJVRHX4wwtcF0ee6XnwfdvOK59aeSizHDWUdQw0L6c5JO8a5KQkslSkUEMnKQ1jbHeE+pGBCgg+ogg9xBmgl1KkswhpBBa8At15HN6NRo8Ek9m2krQqciCJZzH1dSNCvkdoldsgIynK9disbZUOD6NYQ5mG4/fQ9j56v3k3cR8NfarEh5WAZvKkmptRBJiVQsfHCt8MNcFc5Z+6zMinYNiEGF94wVYEow+NjMQZVDuz7T6e0CBzF9Z7LNoLRtTh2v3hQ8+0R+r4hTCq4UiNr/MN+Gz/J/tUNyf/2Hj50I1adPf/pXpcsd+2E5jDONyq+VQVco7rdmEtRxH0q/mGMhahgapsEBJhFNMOwl19O5hmmotQvgzdQ4LNYciwVJe/hBpE392IgKqgQCl47NoxL0ElsZ7fttWodw1Yi53djk7kgyvX/Usb19a2hbk2liN0up4+381fI3/tG7kICShzFmDLVHWenfPn5VLAr2oQaE844iL8ism7iITSMg8psKAq4TgWtq9v79d0BNV3ts0QviFd5u3bsyBY7uvd1+e6L+O+DBIeZ4DPHrIl5b9UpCbFMzYdra1Xiwulp5jlXVWRgI3so7+n8a5G/LzdHgOP9eOyCqllIvcY5e/J3H5xm3rBIc+jR7lPQD1yDvO0KHDMusqgiePtVOlNA0MZIqJVa3fxxGSlqy0lr3hIwjZBgAm24fkipDbQkXetRU8kQ4Pm16Vk5tdWTe5GOg04PVQMPTJyi4qc48Binw/XyUIoMgs+XFgacAY4K08UDtBgAs2NloNp0JhAtkynHZ7E/KoiWgmtPB+jcNuMZitCdleIAaPITVGeHfA04yZrCuR3FJgAxNQBinCmRqSYi2wWo/rqiOVUeqKXHYiJe9taOkdkd0M3BULJnhdOl2ojwu5mSf7DndrMtkS+980p683iuhLLcrdqrWILuIUhsbKmSLRRGmhZHlv2gEJWGYBo8kB3494j6VAzxzxnhSTjj69MkmQHPciMuKoZQmOyPk6/X7T3S6knF8chDFNGInZR6oYxQccYG2hcA1qZpqNjWGsk4IQTizub4qmioiUzhl3ZhuGduHN+1ZrcTcObqlwM9yWNZxswmoUZcEXIe4SpFvt1MuevsoYJJIlAS90zLFjpIDRjereGB9XNXJMpy91HCj/9F7Vh84flit+mz/hWnWjYrj0hVX8jaXtg8ccQjxyLhm55KHKyW4idBiZMR2aib1n9+e1bqvG5989+179muJQPlB++bbxvM5Hf76nat1l19NJzv0ABgffjB+pmuV//NzM3rbY0lBQCCRmvA7vTLgKhDO8XmirA4S9Dyg0yypLg33eURpihOuFCAax2tZMPSs2R1w2ytutpmF7Fkr11pJdbV72765DVwlyjQyDuDxwMbTXbgeLbaaXjYv3bPurNDQyrafkYUDcNJCi9GCsXXDurVTF132MDhWWLNydmMtddsNs6OzQMBs300UGP06G9lr8TEAiFFKHJpBvqXNDMPRTxmL6MDW+3FwLkVLhIgeJckBRVZERH/SBO+8oShjljDEXQI8U21PkNIh5JhgBgx3Vy8szV7Gz6rUE4uYba4DGmbQeCODJGwICLPvjy7ubmmRoa61rW0626CVda1tawHogte1tRkGdXlDWxvQpIWFQWg+Xxb/0KCPWb3iZxgB4F9WrgDj5rVtrbo4gdl0ba1rwd74zst7dn8RulvmpoEbYFgU/FasKJbLi00rq1husovIzVJ1UJBaT5Y6SA+yo9AarZEOpWp0cAGB3+KpM1xwd5r1FwMeJmA36DLRVNDU5NKlpAKzSwkr9YhQuoAdMbq9e8zp9lh6u0dQzAdACcN2Owybh+CMUslnwA1gqCsAzr2cCxfE58twbkDG2UvfGuDubnghM7ZIHhqi0YQsKHJefaGBvtniyDUz54BUvqC4+Ki+QQ/fN+cVFs7uKtbD9a45rvgJWN/QAHoX6uJ0gAuJWloEXoLRTH83fquRnh42msTPczptt5wrpsSj4NfByzZRo+gc8DGz6hm20KMSa4hNtIjFpSX098vItWRZOZhUiOXTFpPt+QctNiyW9kcY/lzBp7NKZbfy40a+Mqz1HtCTiJ+TliZc3XA36Apm2vwNz9Dc0SyeBK7EEElhCS/LR9+3bGYsnLk6PX11Jhw7cxkYP/nn1r4/vx1vF9gFoMssJv05G1j/gWTWNJvhIxfkzoBPXLdkscpit2gPaOJQQMVVWBSKqxWnmrZMN/yrJH5I3wB3N4ARN6hOpZLNmvWJwX8/3Oi1le+bzP5qb6t1q8z3jIDr9b1351jEWHNir5e8+Gb62QTIZIJiHnV6nYzdClmG34PiLtdQA+gaUjYowVgZ9DuU0dc5pVCFSPxTU/21IadTiVSuvtqRlDg/MlSany9dAIlfoVGJ80AXeddOZ8XCBw+dYPZDXaUupyucnV2ph/WueHsdze9qKAqGyqRW64BpoHOkh7gW/ErrVnTjO/ha29uPoWD6+vrrrYOdg2qKuq9v0FrffwGfuP7e2L4+4E/SxlvCsr579Ht9y+hYaMy0M8zRPg4VCAfjgejtvjQiJwMpGMcPDhYc1m0FoKar74C/IwxgPMLnfOlO6z9kF8dIaXazi5g1sdFGY3R9yEmsh9x0WPWaZBWb3IkV6jOQUXXh5/+j/v/5AuJe9j2g+gei/a2/zqD0CjspJkqnsJfCuKb/hwZRmHGdL8V3eoNZJoXrqAx5LZRcCwbIgm1aNQea5nCboUyfCzKIO9YcetaLq+3Q/WGNkN0Tkw/74bpQMrmGEwgF6pRfqEAw1CH11aXEXVhuxMZ6PfmzjBglqvAnospwhMNvAo5GHQ14cwaPq2YQ/StEUR+r/+oRvb2adyk8ZcFGIkaK2RialFKY6RthaL+ISvbFGkwXUuJ8ddJqCRHgmElO0hbiLdLfJ6KSokID/veDQ2JFzLoCWkASPjHqRBXpFnHL/V9HsP0jOf7a5+oH6pz33SS4terqf81JKW92CBASdsCskDPiktB1YpJH024PJm90cqh77PRXAWDnW630h0K35KCWIOIIRrsbHX+QDl94yQFJEdpojVzTxjovvix2En4FK4ysyywJeiGNr+YJ1+rXr6UL1np5GjINkbjd2GpchzqaK5V4eXpB0g0ekp1i9oVmqtKt+UI0dhc+Ht+Opc4H40Z5SHma8z0JHSt3f+/cWrLs+jF1X8aoqb6VVt6gvBi0Ha/+RZhTjCYsITD1OaGON8ptS7cx3B2y7BIGgriQBDDzs2WOSTUYyIEenVCc+Guy0HJyrZBOYfSnoZ+yejWF6GQ6QYp7vfhQ5SFx/bVd72q63vlfuSy+/KC8w7xvt/ku/owWFen+Qz8LakZ8h+capVH2WFpJ+OmSiLWMpVzd2vsFKhOBtRwfW+VetQBgFzHm75rPMF3qji/MVhZCX9ArqosDDQ+kuPwgCuEtzH7H/EFnoJZldOPju9cDmg6zDKOloQ+gaAswufKv4r7Kx3QJkGgwQY833lmpQeYCk+c9rbxjjC+AiSS4IN7gQxh8wDGJMPfgltWpQOct1AuL9ILVT1vOalWwUa1RJbdvnRD8lhSfZFVkP6eA3mDsIUsk7iY2qrENp/7UdZnYopZD2LwPN5FIdSjLj1w24fWDfnlzJiKnZgYbUkAtaB/YM2pyEJnN8v5/0YQOCS1QNpMme/qH7x9PLwIsc/kgJ0zm87JvyUZj7SXeJfbYUdnHEI9xotLsK/zs/DivgHEzv//bdNz7YQu0NU6djHdoyGwcAT7tPvt+mh/1ZBeNTd1/gjpXme2EgXcCjL3ENhVldxHTxdTYWmyaYnNuYu5ulJTlupGazRknE05kHLtRnlI/klwLV59STkvyyhXgO5lHwwsPxsbMZkKsLHilThDgqRgaDYQDPkncPAMEupXwuKnAqJcewtZiJVoJKJSqCViqC5hAi0gK1nDBSLlCvsrHFS0KcYktJaVyjU1TUmkLyJBIMgpCTqcBvkrB4o5TKp/A8NlhYbMXQcIssm8rvO93bUIEGImPllgAvB16pwDH0WSAoLQKgEqbFtKea1NFshnG3iRInQyFQckqZGQpkCoZkkHJ6nKhbqFSQik3ISREc5I1z7jxsTJrslE319A46TeCf0G4A8hdTRanhdgmp86GU11Kd/dZBjR2sUcs3LxfNvu5BPaZAhy3y3j+UsK+fToUIRnGIcuQ+zq3Sf3vaJTabH74bW+UKO+bfst+lojnUTTY+HALzL3S9eEJF34wt8/yYXvA+uhoXnQMLwYUjwb6Bv6Qa90lsHfmUt+PKz76wnaw2OyvMqn8a+y3xzduGNTqKP6U7t9BoH5CMC3HZvDEwTm+MxP8k5KDkce3v6XjGtQM76UJoiCCjWFjPmZ8WiohXtxjJuG6oFFgSYBzk1aRVLH74E99Bz/8+fA7wpAU20fuwxLOUs7qcJ3kTpz92IKyu+IqvGxv/NqkpDdl/i9th/8LLoA6zom8hMpn4Orz4M1iBwBB+pxjLFnCMSgoadIv1uy34kU67tgn1eVlij3+ieTannj+wF9Fxv3imwLJNTg306+S832tOufLiHmrC0B1RFcILqI7IU5aEsEqLQ13B+PhUFfFR4cA+nB/Our4l/98UHzI6IBPs66RBvZJ9g2QCH5Aes1vp2iOiIxidr9UnhOisrgsMYgpy5Qq/NoU1PYjIUZ3Bgzxt3o1Dr+Puf/v16ILvlv/hPidtVjs1sDOh8PfaLpsaEV7xrg8rMsx3i6CH11ajdj5ypbqBRpx6Uvsr3GVSpemmmMyOSyL/3I6ZQk6s8FsV+Z0gl6BTYgVVlcrkEAlkJyWtuGKEpH58B2pD/JnTa9gn4NHghOEMQVg5i88EaxTc9Bp4fPtYEAWwTl3URCPGuS1i9c560Uyz2vyhOHGMq+5R6A/7N8p7HyDQyE+5ZtSP9tDygsuUmxSMDac06KuNqjNJWPfMRFjU3BW7g/XWGnKgENpEw5FywRkv87Fbe5p6ZFVtgQLllxAlkgv6dH5ibASCUIQSJpUQSjNU6OlCGrB5QEwrsket5sc7zxHL9WJvCuQAEMLpcGHkAi4I8ZjelfIH/NYVBQehcSivTdzUBgE9nQiVZ0Iw1g0Il+KSagKMSDBJoCkYdwBClTnBAQkNWpSkBPApH9hyiuf2jR7/O32QaLC12FImISImLC5PkewyFNRZ9mM1JmvRzFaUYoQE4JepBJQkVh9YkSyoTShzYBJqpI2SEMRI7LEI6gIHNIdIBFIlIAeDoAUAVDIhJACLA6N8vsJvy3RhMaXCgm4QspInkKEgZM2hFnCEso8kAiwWn8H80+SO3fsmHYJGuXhjyLHzzfHBIgESHoKzReDREkVlwjKcCQMEPC/aMe7lY8W1KPLiVntjhXoqIqNmE0IdcLwzAxLP1gFhkY73ZObTR6XyiUeHU3pkNTs8WGpDHwTrF/klp1FWxTUQXEobVF21iK3YH0oeZUZmoYwf8kMxlgotseSNVpAYwCUOMCrJoJMhCAThI2sacNqsa3lGVjINKGFtFb5dCK2FjuBClrF0AQkH4fzBMbLxrNP67mY3Z/yVDcYNKi9pesPcuo/hpz7J9oT46joivGm6Im5IuzrEzCW5hf35i2t1DGX0tTXuCnliJujIxtHN5sV+cSSovhNZcmt2SpKgjzVL25aYEKvQPvV5NS4c16+3XzJIojy5sydQ0HJ0KCpyfhxvTsznlkm2PmKKOS+ynoaZ4pzZV/1TtF/PM0rK8nELXmrL3YKYDvm4cNVq2QGw0YPp4mv0WzCX40W62vVHdT94OaAHI3HkJsROP1EVkytJ6tJ610KUpgD6uFg2mozMJ8qHVqHlQu1QJWVdaHC5BS/FYWhdfKRFqgFdEeg0DzD82nEQlpwLVWh5QjD1XGioyK0z3EWJ/nEwEm2ZkJhO3cOmYldNWMVRnFxUMCpVjZi+CHzNFpQyy154RemmK6ilk6Hy9m3XSXs4faWIAX67ynXNRpGv0Udc2efsq7mRTAfuJLc2OEjS5XcJqOvJl31vJp41RvLAtUUC3CYMxOy/ApDzqPBxE9I5+aV4Xrxu/G9uNe4DvxebC2mQpM38b72aW2llTxHtQOJ7Pz16uVO5HH08tbPrlkxIeWhcX1eEnbQ03eAxvLTuA6cmHAZfxKKIzpJhSQnMS7PyunhhMvl/bfK1aw4rrgeAUWAxfPGCKPEBKZP5CcWSezDjCU6idEEJwGH78T5EqnrTxBmyn69DH0NQ4RPaIZKkDWfMRMd6oupxTg69q6+57GDiDEQdJhtRJJP+Lwcdmikp9c1ShhlEJIQ9OIGjnvskXnnfStgOzIEkRqJBIvfzq4hDmxqJ1eTEEWKiZ5+ga3njiyqAI9ORuOhE3qDtBB3bh4OTYLI2Lk4VtJuWQ02JFnW3gOZV+AsMyBSxUpiA1SNSzhjEP0CtqfNzyvCov+GdUjUohEKhbX3BUVI+eMLBnJVg5NAxnVyHWrHiC9dHpYp8i4kBrnvuMFTQwOaxvZ2EaXqZTjipY5iooiYmsOqmk3zd0ZMtq67B8Rztgi/9NN9yV0r3CRK++S+hBu3/OB+EWRUlCtqFTXuHUu6Ba0zl3hVLhrSeIQvTl80T0NXBcVoWeofwn4o1nq2ZP0WdhWY52Gk19EsKnXb+sAPT4iYFH/ozZndc1UCyeft+fvmTk0VPN+uryLHdfz7b4dwntAnZJo29c01Hw/0crpN9nBfpc8ftloCPaloXu2WLcK+69rzg8J3yZSkgk0zZB2QbACs9uFPSXLlK3bVMBFIJFMWunHj33NNMgVXeR2i4L/CQbgm/VEyPMYs1TeTJxvx+k6cuyMnKsfxawmllFHkU8QooZSgi7znojtCmom4fNGl7OiiM+74QfwG/M4jRUodiKp4236QCcZE432SeEFC3Z0QbBM25JHBqFUmJJGTW6JLXGo06q7QjAXB/TNn2PvWn95O4OfEadDK9yHfrfNhJ2unFXIRwkKf8MRsRNPSIEsahjvD64zpM0LRWfAF5ICaUzDMb7AWLJ57lV5H/XINV12HvXrhh2QTVFTEk1QDb36fIJMRTUMzgUw0gszbm4X7rtT5PjMHdWk1j8BmoTA1mCKMUbrjnidBy8VwaBy0Xyrq9et7k/nf4bLvimH/u6PSM2d8J0/fu3c6cUf2CBkxA+OW5MbCpGmxK+E6SiLaW/PH1w/pEWKwKk2L1mFESCTKg4JOwSTSMDofdgYKJULr0NFKI9obiWpKDUWGUB9Q0ajrkKNrJjgTQdwEaQoaiU6RxuKiBDQaLDbbm1N9avsn7kRNpdwBNGaOazRYvB7q3JXpI6ETghR1tmxttq1OoelyOr0h7jjUia0l12I7du5tjOA9/ZkTcZ85Pz/h9wo7uUvz2+tiKNELrXl+TqdfXvuqaLeoVY2l/jQicDPX1s7ZTv8pWKnky8IKykcgBzQiN6VgvKvHsWTJsGhoERuG0uSNPTDNy6E2wdi8wpidNzgUiOK56kGejhLnxs6Ywo0vDheQmTsrSLzD4s4iFxy+nYDKI4LyxEJYKmNPKDQabam4QNuGflChYyUlWvCpDnnXJkbm63y8IPZaJycI/3Qtu207CK3SwbZQp2DM7JX7MeXCZNTdk9rH86O+uNTzygtuzIcaPZ7UgtoroVesSZ+EAovviGlTjj5Das3864YTmsnjBY/IHWc8vgnj9fmdI6ZQcmDcbLXWli3QKXRdsBYUb621Wm9CAdLMfol7SxcGuhctD2Jl5Qn8FqxTCYqqlkuL1p082p8K2VibGAb/uytc9Pp0WL4ul4+9qN/rG72h2PmR6I3eEavB+NzRURltoKVFEekATTZ750CzHtyAtsXUAthpbj+fLZxYooC0jOjHj6MZWkjRA7UY33p6pjkKt29/oJ/92a1SNWC8do9B1HKgTdP7fLP29xaeYt/SQBllGZG3O3itDLdFS9d82v20dJEbo5XXcTuy/vvZBWSOx+ftz7c/8+CQCzLKf1PRbhjPic4bfxU9MeeFbd6gNpPTXRs4G1zpHCUdjMc/I+CIHbTGEU5bnotFPzv3pu51/pyq5gitJqglrQDD/b8XfNhMhWiLmjWN0pmMT67zQtTNHxb8/YnBLPOExgwZMne8I4zCyP49tJLSp9azN0ylsxVTG9jrpxRfjJOtxmyfTDDOmA2wZDxljNV1oZVzBHLbcfxOaEXB913RkWVlkTUhJ7HGDvp3nYjEpeOE9wQN9Ksrv+NvJRPKNQ+oWU0uNgqjQ4f2Hj0jsYbQ75Z0IiDOv/d5/9KMQiOk4FqZ8N8EcrkGF4/7saz60a7/SM+I/mS3zyHlCeR/hXY3sj/xGem/o9ery368rwgak30JNgJfBEQchPiOMoW4UhwkXsn+DSlEDgKWjr35khbnTx83a2XIHz2F4NBpmoW2i9nOnrWJbF9/bQLbWfINzSI0BNARmTA1mFjYgI2f6KwsNKM4HJeCDy9moH1bUhYHpkj8UsReMsaVMw80QIJlaVo/Fw5J+HcCY2L/4EmGCj+35rtjJZoHZ64wZF7b4grAp+5lcXbxm+w31j6+3JBapoSDArKyAuZlSSRZwbAytezRZq9hKAoajlJyQA/qWJkN/8T6E/QTrnQlB9hd7bOG2gtOKk42uRrPgg8QaLRNq6cV+WzCrbXStbcI7HxHTz79yqwn3k8LrtDHl3IcHPBjwCqWWhPmqdwzAA24SM/Ait8rMRY3STRAgvPKbXM2/K+YQaPsJIuur/OMb6/gDnKTUiibziGhvt5svPCAxiyaNIMhsxouL69QqG0Ki4LjsDgUStd6q6ll1SloFdOzVWgMA+P/0Gb6rBCDDgfTAnLNclSfSJ/4t7qyZbabazcxtef04aLDhODhzPFx2lMzN/mbtmW3wPt++ql3XflqN7s06ON/V23y/2a3BIo/i/RA8U/HNGhWpAUOhvYruokD9BICi2DgnLXRkqrJDGmYlrWr1mFr1dkXSFkwdj/uP6ehWakPZhejXRaAwafvyNU7CGuvZSgi1ZcC81LDvihZAex8yG4WxKd4WNXqUQGt0Bd+RsDbGf5/j6Wz/TzjpWBQZGdYxC2klgWwDmuneMfd0BpZeHYqX6tSVXdcgqcMyfnBTxaDY44wY0vQqMqkWFFiJQ/4MAsEMWqg0fNm5ewsq1UzoDm8qiwDgiM0oMqO7U1LQYo13TQ6uFkCY54ssB1Yo4M8oALiYmi0iIAPnInaGWxkItUn8pCLQmSgFWB901h3KhQRDQdqrRZZEz3A8tlX5uT/nyYDWpJ1tZi18KLnibXITlNL0HFQF3tCZvW0+HCZSYAoIc/J+68M6tOddwqD6lXcJDOVZJYNh6y1qdg+ssmpLHlEejAIQAD4bVF28SXmwZMQ9uFtcTEAU80Y/p76N5xUPB74n07ANQgIex//f53odeMG8ypoCpGHPID86IEOnH/54n7c3M0BtwnvtNWU+YigCfYolur4O6TQ+B4EGz/EQfF4CcKaEwBs5IxGF4OApKH7zwMokFV0S550/9KdshCWYBEUGTh+H9oQrCAiHBmmjSCJQlGDTQHapABZ205hqBkKIkwAQHNNihaB7FctEsU/WhSySQId+UKL4e5/LRY5wNASFeB3QeJbPHlOWGbjmYfpXzOOti9JbWOnH4tlWm5bYe5fuM8o7YoG4h9a15jp+2X3EcwZGU0GnLm9TX/cD2N44xuTObHeNcRIUxr/YceyjVGO6+r9YCotflwts/GYHTZqgHDFbV+SAqXGTj/ckAYllY4A6T5r/8J9Rmm+VSDxN6p1zXT1/bILJM44w9PKgBNub6t4f9wPw8CeT9x4yDAn3gVEFRHg4u/8h+UWbxRiOa6GNx9VXxq6b6v0X0dVq/fMZ0OoNDqDyWLzlyL96jlw5MQZQITJ3wZ/7XIhlTbW+SCM4iTN8qKs6qbt+mGc5mXd9uO87uf9fgARFMMJkqIZluMFEVeSlX/P8GZUNd0wLdtxPT8IozhJs7woq7ppu34Yp3lZt/04r/t5v3/tuvUbNm5qtCgalqYyA6Pzw28e1dz7+Zg0ldfoEwyli34wiXN52wg+GcyihUoGmc5U0OvsnRBPipHP0dhUVIt8LJFyJ7Rntxkjmu1Zk1Cmc5YP5eAIMYrh7boivhy1BL6+7oSiU7R+B0cOkXU52jpGSuuOoLG/WI4s470STiR8CYE1HphuoxDDCLOQETplviTxHmqcLEzHufetFcaSgp4rI5a89bvBoVdz0QW8nbsSw5KAau/fqGWyVeGMurIbxmE7oB5C4HUI4BgvFzsYPDnOrhEcH5VSFzDlhPsNrJnqPmEN0SDqQTUm/c78KVnHbYgDVBo5fbCagdm7YdW3oHi8tVASZPV+as9XpTuJ2IoMp1N+f5I76h0YbxgmKtqZEz7gvLRC2TxkDeMTAgJkfGflgdqxzH89AgAjU3qOSDSNMLII7ShgZkm7wMLJpzaXMCcBxn5bmCCK+eaJ1sjxGFlDnpCjtLgrunw7cfsU6xSlAMk2yZO35KGRgiXqTtV5AUuB+fyR1xIxLqfarDDZqfKykw+mqe+d3mi2itH3yI4KIxPu8CK3A18/EfvgqyeolZ99loONGBRKHt13XhkhhoamACytqhg6clHgVwRlsDP6pqH6QiWvHSrL0vgY8upJ5dT0EXRnekAv3B1tfQdAMyQXUoxcRsdLBbXrJAWiamTckmU3To1pwBOma4RpfhvtVbxvvW4wig5bqYNM7Y+kkXp40AXc7ndnpQiPXmlyjD4pnt5KRZaI1Y8EXQr2/KaLGXGzZzgUIsUxqdZ7zuCEPCnhQRnFCFpooSyN/BDOV+D8NykOR+NFK6voULFETPksJmNlLOPTRSlwtLLzFtygYM6i+Y8mlEvXkhnhoYDF9/YiafGE7uLwQZaKCk5hOw38d0iM04jFz0+0EDlWKR8ptn04864aKi+XBhkEwSXy9iJpkLAbqCf5OgzSe/y1G2C0KBWbjSNeFSFRyX3K/XZA7kOJCJV1ZaPEYV0glfGUqAgfqFMM3BCrvv5NtDaiyxIWknpQ8N6mPBa/uuQIibfHLgl0cbS9ZnbUrXRHJRvOP/r2FQjj8IhRpgSUqqgDvi5uzS1KbmrT/A0AAA==) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:SegoeUI;src:url(data:application/octet-stream;base64,d09GMgABAAAAAGvoAA4AAAAAyKQAAGuOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAiAQIhRAJkwQREAqCyACCoREBNgIkA4wIC4wMAAQgBYMqByAMiVIbNq41jG1qEe9uVR2IkkmhUWAnFqvYkYhg4wAEN49l///n5IYM0QpEa60/JyHGMl1Nk3YbhjFElYLgWw4cBjExUQkbyh9GEsW0GUWIBRLrdaP7Gezj7nR0NS1SifQmm9GEmCx0t8hd6CHDB6GiVpxj6zljXeUXv/BXYJQO75w8jTde3sGqs8jM4NEpdEYbe8JX6R8svGHbWEFhViLcH/rQ5KcmLxqdPjw/tz/31YJtjAoVrBqIFdD7g7aKGG3NymEDupmIsxp7VoFYM2pfiRpiRL43/9/Ut0sDfAdY0ozQkkbWyJbhyTTjoN8rJE9+LbuUdgHTJXSJMz5nck60lI+/5tnBBZfQu1yCFFBLv6UB2KZOMRpFwCBDQcVEQbokDMBAjGrs2Nzc3OY2F/VFfdH/98jVsxePpPhaPS2ru2dmV65wOOxlJEaCQ12HJ5AExhAej8RIhMKu5D8e/v/ez33anXk0k7I8GqvWgToABygW42jlX+5RTk37Xd2xjHLCdhqX0E4BYOQtIOvwR9+WQ0hyHWe1k9ZF8D91pRxCb4AU+BqNQzqmxNaRA3csB+UZZxaqEJaou654TuXtQiVWKaqUBA2ooJf3ag29D+H9B+6DeJmH3dCGNhPj6ISPRhWhCkrUVVVdUjz3JXBVWyD3U2LGjfEBvXYFQIMDo8NPHDDG+9LpS0mf0SLL+Ld+O/37oFkkxYKAK+lOnhfmIl3ta6mp2DitFYF+uQaKuvn1TaAphE2BBfJ0k+160v9vqvntDIcUgxO5Wp9Dh5T6mFQ7lz4uqnn3vRngTQD4BgDFAQUtAZCyAIleDkBKBCmtBwAlg2EDg324IWWtIwYQuQS4XhOgtBZ3HShneZ1o5x9iqkJsSjfl70rtj6koql+Uv2j/+e1vm6+6qREXVnx0IznhS+7u3AYIgLA1ne2RFraKZp1HeISMkx3pTg65OhCKQ6glXyJjJMLjDfCpP9ZXwv/1WDfEmWj03d6v74n3vjvQ4i7uS4ZQgogECSFIP/53iJ2FWY3p2lH9+39xjmhniL4yOnxW88R/tHDnVYBmhrYCCzFrugKmJrzKQibWA2np+MadsmMppuaUULQemgGCHUeH6G8oH0Ag/9Os9RUfcvH2RfnASgAYsCaADxoAAQ0CQAaG/glYSo+DGHLMDRFxKipk2KjFlRw7SdHFNbDhpTapWc3N2KrltdKWZY1e2WviWrBWrfPr+rKsmh1fz6322V16GRGrWZXGemzHQVyLG3EnHsUb8YX4tN6odxqowTa0htGwG0Gj1kgaew34KbGR2i4Khv8wggAAOXxsTUZcQ4SJEq2kUuOqKJbQkEaV1fTmbM/PveXcuvb8ysVMNmMvrsQx+Mlzb+Xf1fuClsM24dtukIoIFewhAUCqgR/3NRBK+FjGLt7gRyUq/gf/lX/FN/BW/iq/Cfj7/GE+XpOL8ZJ6mn/x+6XBUbHtV9uCbcDWDNR9WTejdl1dRe0yoPZPzP9dra42sdav1r9KX/nzOIaFU2uJ+zCiBZLRxM/dZwPRZ2grLxXbq58U5PTna1rVmgrbKDwl2Xih3U3p4v/IuQzYYaeFFhVlnRcWM1pmkyK75MmPYIE1TUjHoNBSpWqaaLP9vvrim+0OsrjukGQpVtK6JdUNN91z2x13vZTmofseOCzdB6s8YvW/DK+9lStLpmxjjTHOVuPpTDDRJFNMNtU0r0w30wyzzDHbadvMM5dejjfeOVu7ovMgDGEJh7/+4QnkIWIiISAdokUvNj9iR2RETrqU5JfHKYg96REzYCHqPckxUGmlFxbYEUdzK9xvfzR4WqMQIUPFLiNOQfmGCRsuXiHO1SJCxGRFFl2MMjaVqlSrU66WMtqYHUvtpFOuOO6Eq+a7bMnaWUc00vcIDf231ujaZC+p5FJcSFtqaaWXUXZjGtu4pjatKU1uTvrmNbccJu+jsLvpipU0o5nXW67Amri/JjMBHB1y/IgYwB0A4eUeRhLwT/c3aRT8T1SSujM/zjZySj1vaij5PtM3oPPdQ4A4a0yqy6ub9BMwG6CjlyzRx+dexqYj9t6GDHj37uTgsWWDDEdonWWqhAXeNfr2kKjtvO5bPe1iVKKLsRBwVakcGsPET1WgZ3OIFfkcefQO/d6MqcB008yURHoO1Bx7VPDqWNBV+Jmtkm+rdVlFmUxr757CNWORZezunCTTDdvpzZXt5S9LDonjUG7CBznS6RzORikKFL8WXefRnn/TTTU7v5NTgJwpmC8GCJclW9RN5mvJU+flW0T3QWPQadRKhVwmlYhFfB6Xk9F3e2v1NjcmT6yvra6Ml5dG6XBxkPR73YVOu9Vs1OOoVq2Ege+5jm2Zhk41hSJLosBzLENkGZoiiCbh8EKja/AILWQykj5BPvNTmQMYqpAlam9OGgW/FsEqAHMDnKdMjnxBAk5RT6xnQAf+b9HRuomTBhPsbl1Ophlazxgh/c9qE90F7oAgNEJwoCCjE+UotU6mlEE5tUJD/CISxNWd+3AhPFESBk/EJcct051ofI822Si8rDqA0LiaM54D5vLeMAKsKiA/Buw2zseOYKuyq4ACv8CIfk5AWgl3/EbbAXeeBgz40GU6xO/SWU1etKrMU2R2rP1MOwS5Ck9Nqf2KKXaW48Y2k9ttCJHhlQ1PAguz49KNQ2VjironXc3Jpr7epYvaFNY3EpmP0qEBBq2K3sdqCFxKzDtkJIQqn8s8VyEUP6Sgi1zUOhEKHg0uhGiFVEVgCrzLJx+8/G/ZQ8qSD6pNhTJLLxjQaa1jDnBbV+bgHU+de0YZWgVthXStRgfQXIx0hVwOYNSmTEbdMlSFs8oVCxoDtDKqThVC89T3pXrHOFvC4KCgtCkgv/+F4xHhnirdW1ze22LcptXeoNSP7kR0D92muygJIUhBXTupD2+zzrAj+iYyzewSuJREOHxNze3a02XXbxaOmv8FXytCN7iTJMdgZmv00tpblJyi5N71Oj7VZb4SheCka9EeOsVQGnjBm9dwzuiK1NgQ1+gyJQ7eiwsBX02CIyMX6WNpxjihF5XaWEegxRAq75h7ECJw7uTDM+pHxHoC0yh5lmpRpcBw1p8Ik6N2Q8EFT5kmSQ4Zx8Us5Yu31e6XTopnjI644KlAoRn8Zg+/3TbGU2XMC2/e5lTf1Pp4ezwr42kH8FQOfjvnvV5kdNROAsUIuff8+z6jctS6vF4ujbpEl1QI+nxJvnTPypvyqrWloKekquzZ0RCXlodCaSteX2MDuVri6EwMp+nzuukepUoaKU4wLEUPF6WkeUJTdVKIIWdHLg9ZYUe/Th1ADo3gNBpbaNEjiBi0ZzKcAF6ws1CyFHfFhyEpsL8TFA+SAXQS6OqsdNq5sBbo8/TpCgTBECJ8Ykunc5Z/143Dp82UiwuoL0A+XSWgbOW6DzbZ8+sOXV3fLwelaGzYE8+6c5orJztdbqPeZtVDXWwiQzGI1/sT+B5dc2ZoJV9RHLOCrxwuKunTAFzVCdSxEnSVo5I+JdyhCkxoXvKthPwSgEHmdK8V9YZV+J8SPkWwbTuA9RPgAOCuqqibWQnjuUnv7qlxWU4PaZfoWGk8SdF/BllFLNTMfLnWOGiwtE2u1XfxTOqljWA0jPxcjCKTCRR9cSfUr4dFGgcIQ0OAVgNPXyKkqaLpKHxsFAMmJbwsXgi2opiH6IV6nds0OhK5ZnCzveTcvJ57A604dhj5cbGMdgLaQAnMGQVhE8lxSZngI0OTS4FycxbFTo7nHuwocbVUYIibEa5QkMdTRSg+GEtdt+6/GDtCBaV950SNwiMQaGGml/JP16WoLzEf8fuXfDlivKpm3pA2DxyV6c+ZupLB559nzAvKo0LsySRvXp1k6j4MgRU1K2AAdzVkMjlBJFKzLjnh9TxfQN+gMk94EP38dFivEzcQ1K51Sp6qPUIgbNSYfwScxJDCiUgQoI0/CyDzEYBmALIFWrwC6PEf4DYC4w2+v/HdFpQpyPnTYPOaYKQKUaGl8oQ2I6k+RNh5KtVlJO+ute/XJwhjd8LRwTQEdiR6ZTLdRUZ6VmcDfhFmMPHBfWGJmeUW8riX1KnpTKSx4oZQmhBj0/uCXJnixUzSFHFOGbYjzAb5ABukY6PFTqS0oDWBP2EoBVVF9ga2MFFAEGfW34dc8K4wxBaijVy3rbXclquokJEkWcSzrHOWQRxHk8tKhgFbzxVSHVhSoCpDK+sgPMnV61ivs3jqqVJHk2RxIBPPZDtxEGiKofpKzjdo5xwVecJHZaTuhnan6XaUStduOrIlK85TSFZY96tufbkzMnq1qjgiS11XpVkmW1ZLbj7l0FCxLJu85/QpT6hlUdLQtZhSmfDbkrX1VUfmW5FtWaM1Laww7dSxCCsMuh1WZjec9RSxNVEM4pZyMEvIMstWHNmGY4mLOV3Icrga8Q2LBoS4nPpeo8TUh46uBD6RlcbEeNnzrEvkSFl3m5nSyG17omyQrk3CnhyPti4nhNRUkShMy2opHaUWBN523CakOVgXpe0XVwhheV/aiEm5eTHDg+QQeJu+a9FtI2ZxzZCGxHuEP19RYolh1BFP6pkkib319ZW4pvT2GzTz8IHiNVvu9sIICJqktLCR0lxcTlpR0iLbVFSmQ4D1/cPF0YpaIIT1DqsW1MjUrtNg6QwLMS96Z6pZwh8PCPi6MD186tmcG7+/dZBi5mGM1DV9lac8SkjMrjFfOc3uDvt1nih6t3YKGJOdv/0mCO6r0rvH0njgrVR0D1PgmEOy2Xi3X5Vb8CbPegv5VOx0Nw7CMH1VxGbmEYbTGIdzZtu7CQPzabX3Ngy6ZdAoAgBX1FA9rQ4KCg/dG+vesA5KassmDtzUuQx6mBoikTZJvnRxgPwdjJAiYNjd/JGklyjQPu/kaoC6VpINsNGx1UbcoKwyhDhRYJc1EtVAUE5ijtoqjMSHASlDx229y5nsI4tLvqCSv58V3mukSYO2IkHOgdNul/oYAtHBZrCeyQTDJ0bEstyBVNDwVQkjGsB5Iq+PYI/oBslFihc4/8RM/PWoFDTjSX5NEev5HQwYJAGxK7dpBcOcGvCCKTKKZcw1apM1KzFyW9/n/28nCuzR1897UmRLIpQGKNDgFCwhdyrODzwQQTFA0Mu3hsaOD8Qmw1niNslmTsfTzZPdk7KClIQQY1usfdZ+K7Y9y+x3qdkT9gG7aTEFUmGxMJiNWz4oOwT8xjuyEyFs8+HTeqyCR81ltDlw/nFGhg0X3MPTpkmPECxt3JlEq7COeyueyYF7c1pnUxFipVj756CgQbDZmntEuu3IzAOdtjKq7Ck0RMkSCeKPJs3O9CZE0+inVbwxhbhoieA7XQsAO6IojVHvRgvapb1f3BuLoBjzNkJlQy82XqTliLsIMbgFIzdGPKsTRPZDf329lWeL6uqELSI4OQbjc8VWAPuk4HyJbRK9gqBxBaSNDBY6O0uVgzA4l56dTbLCoTcbtOOw6cBlXAIrgppEadYFVHc0Zx+mZjGO5OWztj7kfKtsaLPDU8Ld6Ub2pA8FZnJUK1mqiycTr2EIgt7bZ+T99L1vnvYVyuv+qkf2XcRI4WumVm4xWiCYUFg33k1RP3tPIWry5vcR3XSLM72kw55kHraPGEGzkJmZamwnJuhCC5uLpl0VTRUVBaC1hDGwwO2msvEwb8rI8DcXb1hh/hm+OVaZNalF+TYVd4/CPGbrbXNiS7UVd0hdxMnWmIwgbuGOxbSnSirUBorxqP8vKXBRwCA5G63iLlh2GAVYyTiM6s1Bs0cSYFlW0i6pP0eno8LFKDJbo+shVtt1TsQEUd+ufkF9jLvwSvtuSEX3cDPoW5NT6vdhoNHUWwhPfGjIIgsTX2XkBTy8nLkhjl4PeWl5/GuYkRLXmp5eRkQ8UsEuHjCXn18/JxASGBBgZCCPW9dy/3+6yJgVl2LS2OBi3Jmidp2AeT0En6p9TnvSKX5ktZcCJSkhxmglNaptb0iSJFQxXHaM/TNBqQ9fIQ+NcsMmeiaQ8eQcBkcQFnq0pxILz718vpy79Mt8RxFRxRXuWnFRKEqPK0YkzAjeyPrNaAQfRbL7FJmnQZYRkSxYxsYOwF7bWp8k+V7PSxC2McYYYk7vJuc4jxiBDssDY3CBZ2YqNuvvc3+2XwdJWZvh+zJxr7WhayBNbw/6BernEyda4JIWtdlGVz/FgqjGlpQ8PzAyYNPKv67VDkcx5ii9YOHI8MZM6thFYzREBb6ckpUm4V9RU+PPtBgPGKmny3NYIxkpyzW4IHEgH06UKZirdsJMoYYqdRgZxPJiVZQYUFJiG8Hqh0Knh2etSeFoZaQpMYMX9KUK0gRPpjjoGb01Cqfa9QJt0TGNenxFMtRw2fjW1ZwjC/NJUVYWbE5c5SEeq6FLlZuYfRt0X23ScIC75hisdnOVdyUNB72d5mYf9ELvwgPC7ltGU+O6RzowRkZDIQaOH4EcrHxts5WWF6egoUadpyzuFOApGafHtNlWtY5T6j3c1lsiDVJyFe7J5HFJcr9re9+mtfOrMYmrMfGJ5IaocDVEXSOD5ur24ebB1kqlCrQ//UhHjX5arDYvfHTTGHGVwJY8uLLOZ6RnZrIe4l949krT8HQnIEUOqcM7MgbGMEdMfFwdLWGjkSzzTrHgHFrXDN9rqG9Adbfw3w5v2lPONxXRWwF3lKaXt/s7zd5qf5zSygzfWlNyjjfatQ+9CQJN2HpAW4HhrJVWV002+vs5mtAkiVw1wHW9RB8CtcObF/gxT30k/ST7QfL+9tR7yQfZT6Qfb4Hfo9kAmwH0rVnPSsMWSiooW8kAA8d6yoKkzWkdXR1sR6RvyG0ZiRnQYthIkmwEDUF1i5cxxE2tTbAZbNcSGEHOzYV/BTJKGmTritIOJqmFtZT64vTvyhWjtMFWhu0ao8xyIpvyN1/o1EE8c1DFouVJTepZTD6rU1jmdHOp8nnjX/iwcckzJRWzzCexl/tFPx0r0KmxNL6qwc1UeL6laeYdqPl6Q+1PU/nhXRH0I/o2AqeUAzoIGPmseM/kBpYFXmbuhjmm+bAob4PgOhFbwLxk8KFOq/l0rkzYGrhM5dII5g6acaLadx7R79IoeYFdtrTsotU341lNmc0gxd07/RTeyaX10Fwee61PdqQHydwMc8sC55kSQDQVzsggYJ6rsz6rrGkiMUKvvvu5u1CPeQoYnzbsdNG+U6r7DIoI0/N+DckDtWbcgPibvO4Dj5GhziXPd+r7+2GcYDC2fJWj8wO6HclchM/Mbdee8826QR0TqXPfOSMyDWwx9uHKTMDs0b/xbWUEL7NnKgmCsrHP9jbthnGw1djH9s4wLNMiHEjIr8+38ppIOF9EFgO1PZIjJ7acJI6s2M8m4TKWstPTSRYqJxlvsgzBCJrtk+6FkQDLJms7ToqD320EP96UsfTa5W3X8zHXoABomdLd1LMA6XLiwFg65LUbwlIBznu4SCELCYRYjyCu24cDiamFx2VPjZBe/8hhoR8z3sCx8dGxhjN++vsyUIfMYzx2S4zWdrqJqTHGNiaEsnxS4+EUeMRQ/MQ1ofJeyJimGM8xuVNDWOES+3L6epNPpVrDhrU5xOpwZHX6fS86ArN+H4nWEPUJRjQ5JVTasGAzhbvgKFxiQ0Ym1lKi3l2CFclFV8um+zY0lQhJjhUSU349ySk3rHaNAsiFihvvEDjaAWnaNKrwZz71lndWSonsiI3Ll65B3CIQYInRK8TE3ImdalSJ3JGueKmDWngqhYnirbjFRC47CtD/qNhlgJ2+t4DT7xD17lMN39bz5lQ8Evy8eSt+7XQ4HPTiKXNqrRSZJdKG0dyeHhI6JtLMFmL67onGAg6zEjJc90eGeWikVB9qxMv98w1E3IBmssBtfMS9uBFY0YXwOPuAwrr2YavCNqCjhrS83b1Jn3yg4dsdFvB6w8BAyghY3YmbHmAUZnN6hLvH7Ex2PM8dIRMjR0onPIUpz4oNZ3jOet2AGptMLj+8zGnPbAEANW4YRkICbRPYgRU1Es4iZmD+ioq54AjElw3K9xPwko3QTqJGbpQJ3FoyAbcgT2FCUCS7L+zL6wFPV96ddDfVFV5yJqW33rKRdXyxFeuCkWNgkk77uve07jo2abgk62nqcMnyfT3krZ6KWVTEQC+4B3zXqBQdmQsnZVudf6YESqUFlVyqwKZxD7V5bqFIuGnI96pXs2nnvicVtHDJ9a9Fd7USf/HJBmejNeeKDEKIiDXnI2iqzHha+niXJqyyjo7iOGJF8Po8Wcf7WVyhfNQ5R7JppaoYCjOAm5iybkl2u+VIsHwv2Ssw1o+ya6QoyvlZK+V/y2VxbPGJhrAaSiD/eSZOOyaPuH56wc3xonHtj+wBKvkI2OE8wjDCSMg4iP+2AH2znrQNV/hcgsGbNnHJu3K6UApsUD3F5RxyaBKwT8e2ydWS7oNxiviOzWshLv9GWoYAS86FivZAKo9QhCpHHIAbhWfdEQKzO2okQIiviwg6dzzQiV0YZZR5nIWIIGCdw+xzsxZS7avxJWce0YqQE8drClBuLSUz/NzrNN+aVzP+asxlTR7tzoHBtGLIOOb6/NhsP98TLNeNAsVC2JMuGQxutiqkBSzTTSXknpuXkWbrLNRp9pg1+KvflME/AgLuFHsIwiVyHsLYJHHylD+m3Ji6o5jFsmSY2KCfvg6QgZ79P3u6DnVKes3E45og4aFp6iw21T6Dk+ozyoxvWA1ch0m2rKYPP42bJUgZR2RI8wVf+ukYYllNLDZ5TBh0KsBkw+3+NeFUlA+HsM0YxmEFCP3LP3s9iLNgp4FrptaKpuedxTJxxSjSHMIFa4UU4sZp/U1iUAk76xnc+Xcfi/MMQgaEnOsRRkuFa1E12B8cYpoJ3MvIVDCv+fHj+xdzOx1Gzic2+9jzYNxvQvpMiX1cfIX1oCJHKgQwMdxnNY7UUA5KzjlpM4U/A7vDhozkPMJypCdzo58/wieuxBZ2g51uZhNwyiidWLGu01nO+bU21vfvH253amjY+gzsOU/Sy2M3p2oLSydGKSLtH82K90K+y1dmX0FGEtKI5QKJ7XCPfPdtN0pUZ7H9YgFJKsqbKY2l2Ao10A+MG8YN60wkSLj9Dg/t71I0xBN2gdz20Wnc4VADSD0WugGpAr+mn2JIXY16gUhFLytOqvcEiblNnAY5PzYv6QD6mk5QQgJjTnNUTSgV2aYX3ad8pwEXp2gMlnQYeGv18N60lQLlPfdJdYdueDxz2H3AIrzck7OnoFhHZ7H/WcMGmpy1sp3HeAaTrAWGI9iy8dpcunDN6eaFDEbSwP2AfjE/V0XHI4zBRwyhmorwvDmrXk96MMlUlXNBJWhCT93G/1IUOUXE1tq6zKntVC/7GQVun+14CmkrqYr6Z5C1ijaRE8EnzJ9RrWmM7FCHAgR/ZXSHv3qrW4SVAqpFzIh63jYmcVH3A4Hefo3o2GJqXfNg+vaELppew8uHHxGKpWcanUKkffp4mVTvCF1Yd/Th0P/fC2+iQIr5ebIksvPppcSHJo3sTM+70pPgdzfKbj2o8nmiAyWoP2WhpsG4DM+PWLGR21avvpIsB82lK/0XLgH4nQcyLUSLCZfIUh4NTu3rhIgD2HA9SoXqMSP0pdrP0q5rgx3dBGY35xABEyuqMZEN+LsawfZbDjGcbxjA+aFBz7qqcpytkCJqS31zsRPO7qzD0bDamHhsWjTDt2nH51IZ6lXe26s09J1x9e+ZB5SORL6/o+Zda3M54p/nJDyJIS+siOxQTmmt5A0FsICuaaB7lrl8Sm3izsb6tq/Uz4pWtcjacV22zs3YkXyaxV5/Gn2VJOyae0X1SkDlzFDAnPdW8F42FPqkGgLtfuINhfo86YZCqp+EB1OuP2ryvjyMu1zvd3kkUI5dA7Ap4RGlINNYV+bYX/qxDi/FK6zUJ50UBioD66e7tNN/ZU639T0mYLaEQ/mPTUnJ2HhL3swBC4Ldp5JEBVpFFs3J4lOHiqo35W0elFedpGvT2cF6sDi8LGr9uAytj8oEFdSE3HcaZFZyjUTHGWtw7kt3uGH2luAOCAB92Gutks+t1AwBMjOGAOa2FETcug9/EdbYaXuTA8iKZvIidcKCmi1D8q7CjgmFyVTN5JrCnTHa5LWizmllNsdJkMqI5SrtsznFeytzbwDPanZ0jC+XaY7k0A6Fc/14iKTwUnq+wGBkl2DTk34qSOUEDyIumMdYI7OsGdx8dEMyNoSnu0xNyUrh5GCbaHXwEzWU1jx0Y9LDufoH1GSe+48iir4bmmpCi1nMzD2wBsMwZ42Q41xLKStIcmlyMubqGnfl2nHcDTQXrKAaeP01OQtxBnkbySyOzWPK6ZVZmd18DfKIVaewsYoHhqbHFd5Xd3o0Zjwpvjf8ikLdRRX+M49H/KtErZS+nrxrQj2EbUkv1fhjDdLOzDynjIsQQ0d5FVZepyEFZxawbSj0RiThIxI/jJCajf4Ho4sVC0qjb1THmjgJelr47KNav8su3/j3VtpabnmMguWU3Zqw3eTtabNV42Que468GrZDflga7wJf+6e5wQ/Zx9qSMobCPvSut7Xcdk/cvE7asVQCZ5TMy5gnr4K3++H7Iy4/r5Svem/37vyvPg9LorR75oPpwxD6KT4OvnEzobN9swuDC+FHMTuIiffuufPdhv/eP7GwbqzvcxPU+0kPFFqDlKwaip5/7/Xxo99tciFD+30FG37ywN3wvbTd3EXDoGhy/p52kG1rTjhWV4X9QfpJxW2ZXCQ7qqvS9CTmlMbt2Ns45lwrSHPGhxYLqlN6qZOIyeDhdBOqPVWjwsckOekPJNmnBB8RfwK+Bjz1aZ4NsyNwBiQ8AU2Zy7HXlhblXdcalKQzmZwjcfW7Lm1OturOnj50pGItf6NLXQaU3UDMNASJIpqLDp/bc7VtzLw2LnbBuadqJNTuXOe0rDAEcLYgUaQllLCzueuDLffEw8klQTkQJewyZnVdhjVGWoH0kvH4TB22NKXp6MiJCsRYU/EauUyRVCGgRik2zWg2IydICxXCj6D3LL9QAnP9UhzjydlZ5Nok7pcrAbMnLyLnL4o1u32UWoePf3jj9t9n/vQvODl9xEdVbMNw3wNEmdZLPO58fOPk4vRz97Yt8wk4EbcLuIes7jyaZV0r7Jns3zFa4bvw2itI/txPiw0ooXY69V1yZr3AFTcTKAasSKVZSaUIpmUg2eKIGTcVsq+0LpzMrs9ZZJV3pF3q7ol9kfVh9ylNRpb4TUGJqjNSCfx8ORlmTRPmErnKulTl/EdUQ7oYW8vVWKlpkmqOooQ0THCdz/XbddhbcRM5OwWyMlxLW8Ec88rdX3bjeZTMcWt1w7l3i4Z3Xj003jN+eYBmxDkPlA6Ofvqya/rWw/Onz5d0tbVa1izWdVtJd2+Jdb/Vvvu6wlRZYREMynS9alNFubVxzx4U7/nVRuoLy2eD17MEFv5tdrWqHfoLeBVbiZMbVpNeBWeWiHoSF4P1gItSuSnRAU8pmZAb6/Hj3PTw9oRGdXG5aizG6FySFQ7EndqfIcbWcbXZMSny+gxNMXlIGh+Rn6rMieUbWljKfFwzPrJgExqOpVz1jx8U4v20Bgrteert36wIiycAPHOF4adu9dz9biPkR1pa4tXPFnoLAL2p86D/vzu4Nci8enC7JoOknfO9yV69eUuJ65+lgVI3WtiIMm5+oVVAF0h48TJ01oXFQDGuLsWu05351qRIVoQrqfgIkVGDThJMUfkxsP2PJhFyYzcj00SpRd7IhkJ/ZP2e6maJ/PvEj+HgWhC8W/BJ+75DdidDCeNG8ojBGAwgrXahuTApi8rV4GrEDfJ3eteP2AqoQlAcbRgAMO7tBvRNIErx3fgRZCeoCJb+Y5yk0WAcoh/IFEeNpLfbSgcVR6hVhZfiNnNHXY6tlDcaR1Rfre/9LXu/fg7YHpGH/Cm846Ipqg46FWQ8h3HefbUk9NAQ98fG2/u23yn/KqXtpF/p8VPmH7Pr5WodT9Quy+lJPJRPh0jsqYh0J0dfk7EYarzG+pozZf966laiY+VY8N4VyNyor69cIZNLmNZL5+9K8/J+hooKC/n4VlVBq8QQDKjISWDJEdakKs3mZM0NZt0roS9XRo19dIs+pvqonQDlCwwI1lsFb1w0dhMNYnIBSz5cMt28eLnE42uri2SWU0phune3rsmIFmQpiLXwS8n+c1l/zTRxX2lpP5Dh5JUFZUdqcAbC0bFWzxLqhp5atm9kfj1xsTH14afxHRe6byTxMTGmWWMp5S3zpdH1q41/8bbfAoFXJse+VO2et7x/dPbtl18+exSMK/U/8F/ZwQvGv4C8l+5k5zdu8aJbxjcK+OIfTS33AYb34j9yybfuqBX3/uatb2sQaijc52kgO1CNIP78tyXrr2T+Pt7AOdfSsyWokDeHMzLXFai5P8bmDNGvp3XNfp2366DhG1c9/YPci6MrZyo/S3fJOkOKo7SoN2K7toYGnwwOHimw48hg/Stev4X5bevq7vCD/B3Vo7tdN7AoyAsF/9U2ELVz85O0RlBSNkFmTpsAOwP0+7bA6W//+vZbx8eykDLA3LUsBSfWAYeGD85Uf+EX9/XDUkMA/6UFGt3c1mXXr53FT4XrAGeYRX+XxgIJH++N+uH9AxGArMhpUN6flb66G+S5cuezAz8AlTCvf2PULPe9T2EfnUeHdRAbW0xev3K3shSRQS+K9xX4ffgu8pRDsrQyTAL494vXRgXNSQ765Tw35KJfyTiQs7j1a5WmK2UabnB9kLOwW/1x35uD0ubmvDy32j3971rm1zVPjg+XpR4oa1rMsFbdtSkNV0Rt8aORi6rCpP3Fzcv8wqp7ZoXxpaifPgGdBkr70aXi8zOjn2qWH9Yguvd9sK5uN7uomOY6ZkrCmcXsUrToerv8bulSQn4OrTMi57nmjaWykD9OYJD6T7/hbHl4mMZCjnRe+lFxwGtlFHL89Lsf/XN5Lejsmu7ug6e/X1n3OrEjBywNS87lzNeU7eDkeAPei2xgTdO9syWHILmFJn1Hb16F/+AZLZlPttljuo9mxcI1D20o3pMK71slM3E5WnJ5JOvF9R4BUgXNDKRoyqO5ApgWR4+QM4RaofOx3cTPwRSl44PMBAs/s5g7SyxMKQu2R2hQD2CHf9OSshF5IbGKcqyIjcqMj4kSpwrMonvuZg3PRqjm6dJnmiqPcRpizH76UBnkPkbmcF8Cfum+FeLpvg25+EWw8hkDPpr1cGL+ddVU1WFhQwtrbx7Vr2zS73P8Yb93opIGHBmhGnqDQVlL4GcO0B0OyQ5ohf/zli2gYTOwYeWI7xcFcg8RGaD4Q/P3aLtJYQVXfTNRbmb2BhEBUKIBO+HqfzAA8hlv/MoJwIYgxEOpAijf+c2zC/OuYMVzQ0HdJqcB1De++KwC9YXkgm+mcKU4mavNczSWtBU16/NSBa3kKD45P745oT2+iZwP46VefxcXpstMgADwM7fec95CfeBM5WXmlTRXdJa1mosyJFsqhISSH1+f0BRXQ8w5TLx1D0LIN+i9knI3/rPkTJjvCKoGtVUDA17veOX4bNEE3b3r4leP56/6at+r4m98gEQt0mf4uAffIBbdE+me2Kdhic+ehDdWQxs/qQb++TP41sgseHDE931hVXjjkzDhL0+gzTVA7rMaeYlXfMlcZAGXB+vj+h4ihTdqoY2+aMD1n0TLb4jAKdOShiCrX46XGnLQI7msJAHwSYZRybXhufxKutpKmbAxobMpy9aZsborwk7NAageeLGRmOtPNvUn5Zl5dcRmYENsKijrKA9DizeS5EJWdlwRpnQdwuldEUStsJZs44NlxzjVtLyAXGgmGg8Sbu4r+nYXpOyA+zOxVpdqRaTMbL+9/3xqWPYDITo+o05qaxEuB6t57NCiiGRxAy1XKyyLaYZ0RyZ5JM41xkuElfRMNctJrAqtjJ3smK3gjSd9h9nDwXQTJNaRjOyqmCWLAb2bN5XX1mlejc+mKv2fQ76LTtGmVQVYfLPaeNQKkVQ0owGpYrOaaYEniariVHbyRK4MsZOzXDA87DyeXpliCyI6v91NaMzSBdBN/Yn5Fl4tqRlYT08JzaZw+djYeCNZLmblxpVgytcj0j4HasX9e63BjNtuQYC/pCvcxhbnkwXCjQRZLGK9apFurVkRWuvJS4Ys4j7JpKOxTT8eo1A3kzUSsm0fKyNHqGTVJNjm2u4Olk3ehnUkp2riGQ3WubO/44A6cymkBLfnGWrkGbDw7j5g/91jiJFjpEuhJn5brrIRK8aL/F0RiShZeJP23uDcTd1E/lTMFcTSl+MMnaWXYS1kT4flYnYCciRt/R++CZYorIpV2SiTVgvhkHS5tNuVuzshN/ccVBl0sRlq90+2rhqr59g3K5NCs0lcDp6enBOjlKfbaQ5kvovMufZfYOHoQX5j7L52U0aLJd5PJcqUcbpkFY2amWBx6c/7woQ/bKw+AkhM9nxROZHZ3bcA2enh+hbpKCjMjPDlr8/d2Dd/Z7gCSL4XF+nw9Dz+VcyDmGgOm0bjpEZHP4R8Qkvy/sr7TEiBU/YVbPnM/1tioHP8OO5kYN0vG4XlyYohfiWUEC6rYYBaWIW3GKBfA/x7/L2IsnYGAk7sA4a9sjED0nWNf7xDBxnNsRvNsS3FB6XmGyQEDUaRJlIzs8jWHaUv93UezCM0iIhajDJdpAme9Ofm+b4dDxuDDYEqXz5+lyjQwLc4Aan6vFyRg5jMycanC5B5VLHBbheVk1jdXXMwboFb8JFDBwV99eOvkJgkvB5lRZNqMpBX1JokGOz5kkoyS5BH4kgRTkjG7oEhxfOpV94o7TWPJecXJ8xZxzUvZk69VtRuGksuKE6a2+/gIgtTBVocwzxuyZtJOJ/PRhSmiHT4BMu4OW+GcQFIhUdChlzjLucPDxQfSHem1YKPOL7aF7yxq8rf4pPlqYZshkg7W9EAUfPxxhJRFV1lI0/ud0z+4aRyBfj4hCyKUpxhjXNgisbYJCjM0hAurI/JUYlK6c3Q7oinD/cVftgdTspHFCTRaVKy4Imi6jhlHnk8lxe5nL5sHx8tP8dtTCr0NQaKgQsX60jaoMTMvsR8M6+G1BzSEJsUkk3m8sv4p4CFKpewcmlFKMcohP65DpDGgaCYJTJjK2dHiM52aWNy/3BIdlC2vx69O8ab11kLB/zBzZZwtNhYWGkmJkaveK0Km2ItyhTD6TKXqIqTP2RkUipzDXOMMoTYWxLMg0ygVlmHBGBZIL4wXy2O/D778fcOln0wkx1TnWUcZuRIuqNukqjYBvdahNVfDGG8Fhdgaqv8EjFJM4eRUtUwPEQRC/dTdDVEH0SMbCb8Gaf6TI1i09xRTDR2MEgfqJzCxwYY9CWmEum8fBJXinJyAutW7yUgAd/JlRzd5RKzNNqE1aVLNWlZZNtq6fO9kFdG/XBuu4f2Y9RcJAhQo5xaP1XRf8HPbXvP932CFHZtvQFtli/ek3a+u9tzw22z379gDMGrUTI78edMyv+OAOsTMbRyQFr17z4/2vPvn5/a1s2xCQc9S0hQgMmff/21f7/cdrpV6IKqAcYXUOIwWH3Br/JAjCy3tkhdTxJBhwCIqa//hAor5bHK1kv+e/456F0XivdBeMnl12EFYacRLP2DWA+BCDEiO7UaOJA1GY6LzoQrCy2QUlYktCpvRAoB6BgGGYRlSXaXVoSlf8V1j2jmulnR96JUsRCZKB0mSA7NSJN+EVGjA9jzIaXpKJBV3GwXNURx3XCHP3HjpZXRCiTyjx5ORChGuZeFAFlFLTZhQxQvvFXp5qikmRke3jgm/yZPNMjD1NKkbcdJ6Wd528KbeW5W1LkodSxYLkqLEolCuemSt3Hy3T+583A1Am0RTUDkA3888zKqqO8QWCjJ8jC43Pn4GqG2KIZP4AYNIbs8MacvRCAj6CCuV6ifGfCHLWO+2EjXJMWgpH3yKGqMFKaDiyhpLItXMJsY+FVARPgPk+GMp7HJ38XHcTgjam3hDz5R+CrDiD+GLwKqcBzgr1fRlrnSqbC3daEmB96oj6Ngh9iBx99CrzcGvFrgWpd+1AftLbhD16TELM2ghb3wk2DZoLl98ycq38dHKr0Z+2k3UVb4j8/Vt3D7hUHFYkEpelAlFWeEWxeoq8OLL+j4v3r+tKL0tD8cOU8C0Za3dy7Hg6DxYUtMaqFcXkhlpl4LyOSUQmYqpUAmLaSkMuMf9nIptaAxBT10fhGNch0cQqNHDg2jUMsXVsLYdZ8+sMQO+RUEnK6kD6P2H6wmCQCUN7oob8sCaiWqMtKw2gibYXSIS1ZCNAwzNifsGuFcF+HSB3mI2szMCw5m+2dxRlReSHFCTY5LARYLbvy0kg9Pqlycw+yN/ZyMGCOSzkCqm1ZyqcdgIwOIwUb02Hp4A+HcTdjYrWQPSIlxrbF4jmEQ1UBjccnvRYiK0Yk0Jaj5eyL+wIOzL+akQoowWESIx2SnK7XMX+/AZLEsck22aSahGCfx4QZqfRALlSPXHsKcFVoZuugYN/Yg4f0YbqSSloLPZkt0iVd3ky1xZk5rsbIfw4/ce67K/POf4JVL/zpzSXZ+lMbOg43dZ22xhtylaEFV2rnWRFKOUJhLTEzMIQqFxJzERFLuZ44k4haQmusTu5fhxs4uDfi1VSt3JWQR+EJCXloGJV/My8bG/egM5xtumlkjdmcT9whAHFTCF9oxz1e5OWVffe9JVRvUQDp/E7P619SFBaChOk2YC69NysCUSFTVdCUgsl/h35JqMEbX8IkQ4fV/KQlGtFCW0BySGdTP2heMqwHliOcqiueT89QtcfpMah0t1U34deX+SYv1zz/QzZDgeu3bJOLbbwWtBOJbbx/lPUE1I7pX2MPSBG7D3x8MTFXZVY7KrFCPH9mdCa+9tK61iQ3xObllvQ9KGK/aNwYH9lmvMkrXQyvv3KgO3FXMuGLbcA3us19nlK0Gl927Xh9k2T/p/PX4sZ/zh6eeO46dyP9l1E7bMs42N87qNqNzXD8XnDhe/MwZFyERgLSBdOdJaV+f/HRZr+bO2PAlcTlO6PsU47OgHuGGSnzxwm56gT19tjCHOVmY1x8vQwn9eWGHbKmZfYAngMePme8+Xnd30ULXJz8Dvvy5bYG9m8GoiXvNEVCAhdVfb0OJ1sFxL/GURTJpgQp+vkwDgVUHn3WHgZ8dVIFB7APPweDnB9h7DiV8JH09fXxP+l+DnDnse4NR25MmdiZ5DcoWsJ9uztUDbu2cX7mjFt2d38gN8FXLnPoHN/WAd3qliQFc8X374MLbccb+6/EqxvkSK+aC8FjxTgEn1/Jr/vxubQp3UjPTQg/s1ypPnqTIY4873xwWNzQWFPxTvb/3lk7AXdulVjtvY6c5WazqiIIYExv/trg9dixiWcuGVnHTan4Rw1p7EkAi2iK3qPSsVCyK1/Ylz8N2Qx29ZlXyREGZK0NbdWVAO2oYuTFYoBtKyitMGjcdrMkv0XipXzGi6r8yUq4fTsq/+ML1G5MwVrbITEy0rHZJXfyh1dbcNAspXYS0HU7kD62156ZayCwxMi8lGZuTITARErNWO/BxM6NO2xUOLMz1zc0OMK+NDmwNRNNmmIlXP53vzQf0piylaB44qh4vgvbJUm8CK5wPo8wUXc/3hfR+cNiImvqGKmpElYHb8O95I2zESHnDCB/Bvjt5ZDpg7wmc1yNxVZHXZXrNyO7Qm6OylpcIlHvypTuVvvwwyL817weHCj0jel1/Iu36LLmvXzuyN+CFyp4jLiOnp1sS/eHck/uSfRqD68NKL8BrbZf6XHvlhQZXkq0oYSZbi9ydPpvVXZc7lqjL6cokawGhwcAwa9Q8u7goRYYUBHEho0rcytoHXCDXF6FuJBmkyUWotoCRY2mvkeX7JcjotEKKTs5xUOsg7WwmzJ4oUOEZqn5T4TL/bbL2XRWFX0d8rs9OXeHjQUAiP35yFqz4tZTJjouiR2y6iS4s3bMFp+FzmF2YaA5yKUwd68YmZ6f05uhriWlYji9xjrITFf3fZpg6zo1NykntzTHUEZkYni8UyAAdkfpxfTjG4OEAvCgR5k4TdGVpC8vH+4hAB7GMW1ygdcVb4EKA2Fvg/95C7rzIB5ZqwfLTaQq4NkCNxj947VsMw8Th22iV2yHMjS5dzO787hVNubSOptVT60XZyTuLm2w8P4AV9TEqLaliUEYGS98XIWN5BYncLHR9RmyE4ncBnCIvYrFtkY1Ae0HHkPZL14UTE3mxevgMALmeH39kuPuY7KM+O3NHZfUau6D3Yd7aUfOLWTNyOLVGnfsPah0AmymcMeYJuqgrOadbiO+9jardnPnMtH1R+3qEs84oWyyEccdN+sU3CWZnSwqoomUrfL1r4bs8azjeZkls95ICMkwtpbaOVJmiNImfhxhUi1E7BdvLJhcqbnBa7UvRF2v7CVpOLdbIZ+TvF6OnP/uEwKqm51qE3UDN1F14R1KKCjXh/ZTZGGmZTKwyq+vj28PbExlAA4yLp2ST7NbC1fja81g91ZaQx2YxRARQXsqEEv9pO/l6UUfWBBO6OiXTHtjuD7KmjGmez5x+3dmRPZKGO7lfqW2+dd9ETgb25S4WEmyZUqIV938Z0FMt36tiXIZS9xyB+jytgUJ6noZDoeFPum2yPyMfr7CEh7NouaqTbsmMrRU4enkph+Lml4ypS7Zrdbe/MSqT5eEqagxcrJdHxQimI0IPQ/Xl2JwHgeo+3j23ne8zoacNW0FfeLmCuL/8d4zct8Xwf76thv3nwUqfkIWwL+FN4RmFP6S9hLOzlKGa6DePIIa3RoYiWkW7jLkOHNPvLcDXG8Ap5d8hqBY6l1wbYnLVNcFH62gPA7kppTpZGYlDMgQvwRWzV1W2GiFP4G5zRh4iuLdWC3WOhxM5wUP0VvTNQ+F8BhtczVBfzd+q6V1nFrR8EOf1eTkYzpbat2kSZo+FauP2Sq4EZkrC+C8IehXEF7D7fBAO+1UUZCLwiWD7Z+oy07G4bQVPBWsPV75QgOnesfa8T4SrX6pj0ebjwZ4KT8cD1K/mQBz1DZA8L2TQ2EvIHnDOkwAs+a7g3pCaphpIW6iP+s1wuJOLv5EMB6VALG5gxd5yH713rOv9nPk96o97bY2/zz1qD7HLvOw+Rm/y/O872fMhZS33cmT6y+KW+LGoFa2dsc/Zul1UIm4N66KV7kH/PyTt/gx4LlucTxFgFYGaCA3ehFjvWqJblQ3YzIwUMwAQUfV2T7eWWZpTgtFlME0vAEKz2cluRPOcFrw2336uwCqQp9fEW7Pj5xqo3HEP3cikKU5n99aMO83QvKNm20zcBZ7HnxHdblZ8Y/GEVbUU/qOFNy43/H15/v7lpiDSyUf1Ry/Pwi5vI0HggkcH1vuB3lldvwT+A/p9cszF6Jg1epGTsDW4VXGZvkmOeUilpXHohbgVxbV7195QXH/tG3ZhfUtzC7hAv7g5yc2VaV/ZjbuGLprMsZvZUWyegOk54eWiDZ8SMB1SGRZ68sTxBfEgaQ28/8t+bLZji9fbo7ns07YrvNIF9iveWw0ub8DWtt48MvWZdlQ3iv9K82cgIsR8rt073jr56NNJ52OvOWv8Tv/gEjm5KIVmtH9UhX7fiwwKT9xenBgLQsz/X82/EnIF2kt7WuJAyJa8K0CTkldJ84rdvw9eJuUJji7hibdvz0/qj16Y9R36ouHYpVnYpU1sS+A8esuQ5D/nxjlzHefJHJ1TyizuX6S4YyIP+yzTO0QfOg44YOCN6ODsiXuT439vS/aRLo0gGKn96vMa0Cbses1X737VEikbmJKBEz1PRGPUowp0TCwHhv4ByWBylXY6TntOg6JHHw4LREO0TyOI8GBAaXDZPz7SYYzEq1HpuTpuATo1OQv5DUZFD6BTSiBeXuLeCh5b6ZBFqCIJnkRKCwVEW3kBBj9booHCaJvPwmLmrRTkPFoZOJUqjcxDCKk0lLRWoaFaongwYTbVLK1kZ3jcT7FJ/8RGTP/sE7X+o2W+dFIvfJIQ0wDWpPv2D1p/i3DaDnXiOcBtV6PwgutFvwkmEIKiPwRDETFssfh8LFSjgaJ+DyoKb8fo1DppFDOGp1Cs+mNeXHdNyaprv3r/qyZw3Nft6gNS+I7D8skDRzpNzCn4asZchWdaOjNpgJBiZeu9FQoyDhQgVg7YVh/uG6g56UQunSyC+fgcvGeYNviGbW3/Kg83zSrKqW9lnR9bu1b7F2f12sjQPtji5mCza/Ib3caS5aOjcyWs/a11p1ktj5yfGBGLxtJf/jnpWXTotP4PQtxLaFZdUdwlDWyTuWYZby1eZdm1AwlWB2PWZsFschZy2muzBuJlcmfqWcASSkdQULkmQivR5l8p0R2/NPPoDwXvJaKZkvvt73Hg7HixjsIyDFhzF+Mu5LIi8hIECjyDUxyv06dVEhtBzUYfUR+vVHRhZuwT7eoHgnQv1UdG+/RG/TqryEkbPGqKQxvFGdV4zStzODPojnLF/RIa6by9p+TlmfCiJ4DJn9+2wbH/dXDcJ5D7y4ZWr2hurl67RSsIRI6S/iXimavcGJeIHxk1OKZAayjGBLrIv6A4aL+YAtTuSdIpRFnpWUxDKpdLlNNiHiQ1NzgQcwXyxTglLB8upmiEHSWODk0FT8nMjpwlxtSlRaNzlYquWGsU34vvP/1nVH8UbupDWKIk/E58JEL9mSQkwRDZbEjWR7S+AqM+FCbZkXfgY8R/yInQZHPUZ2gpzVhXlx8OWCWRvX0lvpAXTMimf8NYQ62sBeq/+QC5SC/52Qu54EW58yLaxycdc68O9Nqn75h8Te8e1GGfVrIU1Cn2CFGTyIySf6nHWbLrGMPCOBPMipsyWRaRLwWEaCo5i1k+Ph6LvLijCli/nHBqN/7U0H2mXV+key+8NFY0TF1J53LptIyI0t7PqK9PDBMYb5u/XPG7bCzfN1MkLN3e8DO1j+/3TJ1Zt5SWGacLCvfxPlWh4u3fnoRanAMfgzxzM2bY8vrLoYiBuIOMwj4AjResesAjBcav05bqI79IJFkmlMqSdcgMqIFanA/Vkxj0DAg/Jb0i+BPW4RHHtLhld2V3eoMy8zOTfEC1OLLRde0vMNAh5ajop9Ejr+W78haZxWVJS7alrO8313/RL0SND4mDhrc1FmyldbZJLvVwsIU8US4uVVIZo1Fqs1+c2qAmUMFnX/5gmKDp9TR/KocSaQx7BzFDM4eQUlUIKFgVC/eRlpu2bw/NxMruSoSfaFbm5rvXx9Sv3xGpNUo3nfAncH/WVtYikE374cy6B5zrqOv7/an6FL2jBpdgLk5lgoGVb6xvqhl/gLjkNKrDLBugZJG03rJgLgGuTrISBKqCQcEzPKynSRJ7O4OYEptj4XbiVDCu17/rMiceO/pAvM/3/vzZ+xbRt/XYoy3O51MM5eN+PI6AwCsh2ECrI98EOM5IRG9txkurVSGORbVxRvBS9PLgf0ARQq3m319v3A33845QlRGJ7+jwsTDzOeOjC6NYFJL99e+TImIuptMDuUwzN6XXunneDUaMP3/G0CQW9M6Zb2nf/njOZhTGktwSlk80YS7ydpw+Z7LiWLbBXD732J2oXptymI33rBvbPoc8/P407l3f9vUeIEmCAAnQ+FiCrGv4M02InTdvOOsNQ8n5dYnHW5AeUh9tgLEFe6IZuefu6+UtWS52Vn30xnqZEFLHMGjoadoRc/Wy/kF4U10gN7j7sChQHNiedKhqs2z2UyKbgNGgBvlFXw+rJN/v9+dnODS7t/nX0Kod26vCK58pag3VGyd0Khirxn1kqKkFm57SjloZHsq2DfVTuYh2ejyi7crQ4F5oeOh8KyYlpQPfNHLkrg7GCOCttFhEc7RgqP9KfTqtUCkuICWkFlCkMkpBiqOfy+dSedl/ywXyZUTacLyIvKTl4tL5FFvFA7qZjjtkIt9E1469oR+a491tbKR9mf360JGTXU/E/UO3Fb3DGRerJKCFDRFQJVDHDGblDyfnDNwzTU1mnQPnxeF/9qaf+WgwGJbvIUjW/DzUb8Pogp8sv1mP4U7l3TsMGzlsWt4wLh+BjRwlPdu3+uH2cJVBiJzTMQ2R0OG+jZmT2/EqowC5oEkx41PpnyeAnZzVnKIOhoGoCzqIXGbyQrCWgr6ovpm9jcGGAJXfnPBp4syM1RViBxesnp9V/kFNiHsvn3wvkiZGyLDa3SGZEUB1Ro81pytOS5AEkOET51imYmdEY0gmFKji9uTldDCU6jj4nXH0eqqeYI7IDogu3kurs7ImbN3n+s+rd/8C4sFHY4DC56EqnwFmvj25R1Mmujw/+ZVhV0K5rwOUhSBiHSv3Li18d8lXT/8u9A2wPlwTQGTBCm9c/gLbUcVYyh4v+OnIkZ/yRgUd4d9gdh1rIPKcm5qmEe7ZEhGhVCwuwnH7R8w0uEzbkQlwSXLr45ZNE1nfbxz4IncEo/SUBXBD29BryjM8oMgX3bLfWDxGP5aVFlWQLDPE9Du/5jr/V8J0BrUeNlrPoW/GZkBY4pFQrVYyUadb/1zxW/wa63khPqFzRR5Ioat9lSAlfA9iPoQXIQEafBipjlArxVDD7Yn6N8h2vmYk+C+4AmIMNJOa4z/Oudm7f73zoqYoQD5HBKSwpmEFNeoKYZEza4C/i3Cm/kJI9xS6PuTAHBD7hXX9MymvD/aj1Koza02oZXULJ8Cro8ZXAVLB9yAX88URimCDV0L5KXXPtPj1Tlf6L5WvL+55pe51VrnZBXqPtIM6iFQbtqcNl9XMa49F3yruz7lojPHrC58hXgQw7PNlWvjCl4k/YHCA1bzqdsULHBYQtn5P434oe7ic8UuI4VcMNJXrebYHGbBLvmnNyMaxDtlObXl5K1hT0rhiqFi98KLbTfJ35yzFm3Fkufj7+67vbe1e9ONth49th7kGjW6vCrg2F2DAvUiepajRZZhr+VXX+xzGCJcrmOC6H8D3wKB3hFlnbOc96YjpUNNA4lVv5cxlw9GQLIdRrOjJ25R1MZFlPLbQEvtfcxTlguXaojmmJtAjRqAHikKuoyq9Z2Q9GLsspUGf315Zy6rNUQDySXKfAQPfDt4dEPzi+P8trPsEM96j37q7HsDHTvp8MxD4TeDNbyaCvtl2+Zvx699cho99lOj61bE3yfWhwrWW4HpAd53wcHUXvrdNECADfIHNUl6tkd/18YtyfweVqbhZnr3sAZJGCcnFMvciN54cXefp6vbGvvNmgMSPsa3HbxY2htO+YcKz1v34npEgz8CFbtMZinDWTkKYPaPCvafCC+ADRACQu8gB/tb2cH3g8+FmPcQIb2TQxm6T9AdalYCxhc2JHTOwsZn+ys3+asDhq4c8El4TVBbBxjqQiZ+f9uyn3r8aEDN989/cVFX7Dz4iDZT7eZAzfoPmNSVyke//4FHx2Z79agc/3YK5ojjTtOdA+1PJWJoDZELLo6Fc9mxaJk0aFQ8TUWMx0ilZBInAD74/dyrRagrAH8Rt5v6RlmPxXUkYlrSbXmOoBclrxcc1VxlOd554l8OOT+KKEGWSK8NBb1iHVwTvMIDH467XRQlt734ujlQH00r2s3tKc8fTV2G7ZE3M8zX9m8py38Ox1dGumN0/C7+MqdPYutj5LAdOKiI7+RJqp8HamqhG/2w9dG/4/T0FbSi4eowYzcf/BNVQSSCeWopOlMRGi0BaOwcMrvgQBIkAn1OGpuYnnoJkJ4o8/8XIo7zoXsRJsAYvk46njmCGxRnIIqZET0yIFWF+hmSlYIKLYf34JbCWps/bUl+Ie71ew5qvqJsXmvwP+XrOOyHRMHkWapPYCFkjTSe4Psa0i76KykKVwHMK1HkvYe9+GhvIcQHDQtyHgjh0J+dynO1heHWIwy8TbXkOGx2BuUbgYyNJgDrLELFAxLF6kemRK8V6C6py4KO1/vn2fuEmvuiTou+21p7/6+PvCnNh/5hLqlhJA/8GrZF1XYeUP8C2pBgzRbGKW7c2wu+McMWbPZavY2RZ8dXhveKKmK9Nj3tubM69YW7extrRw9nnCBHHEs5pVdXg93Ca4eFAW3QhsiI4I6wgdOoXE2VJG4XLNnhP6Rt6LftYxxEnoIdTyjDBhulrJ14jRos9bPCx10NPzHX+Ysr0CdT0o1vT19+Zdu5ds9YTr/HV/EcM83AaMzBjJPAEdlswHRU6hXkLgomp4Hlwq/iWLpEEowOXIr5VJaVwkWqGvjfTFVMRUoUqoXeQbz4rQJSFOfywWWvIJpGgWmsUbj9nAJfeFpN3ypXox6/V7Z5JzmPTojkyUm5o/J0pE+liafy7hmVcg0xYq0rC1N4nCJJ/Se8Rb/oSzxd77eR6zUmLOhIPl5eEN0gtD986fuhDJGZvMXrH4W22FPyJYv3atuDjq/u8XabIgoXde1ND9/jlRquw3Ty7nXU+uH54CpF8+c1i6pupwLtAGuF0MfHCAJUL/cH4RLi/K68qH64Pt3uIz5VI0k6Kgkp/E6zyw346vvUIttxj3AW8tQv9PvlvTLRe+r358CP5NbnnQJ4c0HJhauAL/Zd+pHDORFY47w34qCuPpGkNIqT4QyLdvEc9aU2XNzuQgI//bMSIY/avXJ7pEJH1JllUUjVs6HVGPsrAFOi0n8eL6h6vBWIfb0bWHcjFz9M5E1sxtyNV/p836JnbjyawaaQXomuaITmoZUmKg4SY1GM177zJDpU3RFOS/u8Din91h9U8vSs73y84zP6E75l3xn63ELAFlNshzjxcs0xm5qg89Um6nJjtjlRdNvNjJqwWKF1MXuLSDOXmWsGAqfJ01en/Pvho904O6nC76VjffFtppq6xX3eyqmlx7mUGE8dlT0BKix+F5Uncw1hMwj97QgzyMgCkUhxgBz2N4TVCK8Sh8OLsROuYIDDKmZ77oVP9S0PYqRVWGmUgzHRATiCqvL0kohQ18BHpEmbPmfUl8TtYW/UDgzU2KqK3JqMovzCTFmZvSj2QdaIfFMEXf8yDH4ZIEz+EfPJ2VSUUPm6ObJi8ehAx9Zp8/k6wjJzfHZTbT3lBBobJjz166Qz2ZHQDUwUJv0F+/2DhCMSACwXz8Hf5yEs5R85H9V2AVlzoI3cxSLg31EZlYc08phWW1jk7PQ52tO/FKQuTsEF5rF319Zuc0sKV5FJH0qQZG2gPEjy5FNV3CVpxUe5yzhEm4YtESxN6l6URXBx/crIaS14E6ddTXU7HNMS4ge3suXty7BN5/7k2ubcZvcvbDHZ6Wy4WMm8cqW7rpLzRCxvpTcdt2N10u5t22P4DcWiyXzuOLZGlVyvCFKIwR/7inON6fEP8ZBlgv2kksiidVxAkdmELZnWTNHZhhcPvuKpvVv50uzRkA5SLP7NBuIw91t2Tdjy/rjON5xfQ8HQj4Pkni+2UNlVTc8mW6QvELOHyBv4MZn+xX9/rS3Mb+YcS9N5s6gbCstB95yd52LhpO0ZgpMRxQ+VoVnStxlSbKGQIYOt0LDCWjlys4pRSFBJKQaolelif2xQrCxW6HdR6v+SiCKiqr7z9jh3QElIjpFRZSGz2fMLP+GPP5FHqULUPRtuBNkiia7QgEkQsDrzr9envdKHCOPhxdYw6GJYMA/996JmoOgrvT4BjMOMuO85XL+4uSQAhtX9JzRX6R7SIeqBwIxL50aNAvpD3ckkFbcrStJKWjDhPWdHeUi8VvtW0mY8r+qq27L83rwaHhG4r+6e28GkudsFVfDrlw7rc+L0F7fPSgk9ho0Yf5lCmOj+xI2pKOm8N3Hj4eLkTRThVi97VCwPFhaDXa6lNNEXQHIgIxhIbcY9KaL3eUA/Bf315NXonkXBS7w7B1BoKeJzBV9gwxPcNy9RtaHRrw3Il66vd0dX9cvdCJPcARHI3Q0RYvo/HAA6G3/aXCvn+UmV/NBl/Hx0/Xk8YmHu6EsmtgEhuEXSjGoK6cn1Ih9w6iOSWQSS3FCK8pb3hoHxmPzAkdJxseaMcCMplxAyDr7S3G66ywZY11lNblhdPDQ0LcaWVhnSA9tYwb0DL5h9qnK82hLNCa6gQtKztNiQsEbKGikDL2oshcRG6os2LetDUU9un0oed1ccf6fxix9VQK6OiasME+O8joJVP9fFyJkQ4vxXMMqT7LjT1Py9O81rtEbTdVlbf8FrTuanE82wFVs3fQUt4pOEa6g8iTtTWEWtzKARlpUuHkauBlazaqsVr66ki6AcJ27vMSA4vL4PW7Kqqu8J5UWFWlMRWNzJyFL9LwvqulQhleNfsPkBDT3ht0FAg89RWOdrUs+NNbRem0C4AlQxc1uOPYKnNl6vtA3jfGLI3mlEbHNZu8iiSnmowRVrBwvG5V2doyaI11S4S801ta8Aoa8+3ODWGhqQYET5t45uqOqhgf2xFg29BrVh6bc27MD9k/yKtIvRVjofqK0QkvKgYlRVLFo+Sxx1m0yYdRTP5DzEAjoR/5ETSDjKJZ53P7ilbYb0BTUUbOzO04m5m3lZmNAcrXZau3cxD+4dw4v4k/G/4rHlP9s3hMyLkJcCRzC/cIMIn/SJ66/ysS2n5qPdmDvvuwLQjqdVVEIqfDF62X/z/V+Nn1X/xuCf8uZtUbClOAuDzT1xWKASm8G6gASbuSSsOnFSkQO68mHsc3QvexMW8tna7/WqD7nO59BOogfvrosROtQokjSXuz1mQgOo60jVXAHoY23sA49orUL9bbalWQUY21l8+mfZLGag2CKH/gn5n6Zo1q+9JI8+hGUUsQuI1apHkKa3A+t6f61mWeLJaSJ3BqgD1q2i81E87XTVSm0hvOXmzamypi7xZRFsQVYFT5qlZt0IwA9sqILXRdRBtSDvWWuCW4gOIlNex0sgds24EkYQ9NML6bNIe76mRBOOuq4lRwzXBaD4BLAv9W9JayKLfR5EZ9cZe4hY/O+MqYb7NW6rad5lml1JDM5iCw54076Ll+VwADZcAQgXXu0ipaZ6GYm4pCVntbW4P1NQWulLy6ACgF6MkZNEMgDW0EQA094ov5a/Hkvf79tBGLNR3eq/Da0Ebir/FVtY5NSkC92croOfPrNM9xglFVYa3IbrJua9Fk3aZLe38uPKgTJMgbmvwZeK/WLfTgurGJeV7hFxPRGR11UppeZDTfZ5G5lUtpBS93crF8mcLLa0fcf0y6ba0B5eKemfN6dvPhT15j74rPeg+O+KurB0Oq/auns+B2SmVIj/or4cwgBOQhlr9sriPMDTvCCbI6rtcju5CBnMYZHgG5SiPBUWrEvSYoaZTIfBx0BwV+RLgKIc4LrZ9DDKfUHrwYp2k6dwQzajlK7CwwfZ2o5wCWoAcCABmNBv0e6xPqR/7yPdruzNTpx7IAgpAevBEeZewPpnoiBCEw+XYDl6damo2zRkzqZ7bn1afnCYEZFKJVR4Hz5v/Ec6B7mw4Ytae2yUvEy8vjqxrzLmXHdXIZgHMgyPRBJlsWWJgihcCtBxDhEEmdMqJjaUYZFwcSzEbPCaiOAjdSilScc5y5zgB4NMrLGRB6uZEZ1YFKX3evMMQgI8JoH/uzCL7CKSvQe0OQ0wmgFbDHyzOBL82czgqENS+MsQAUaQChAOeyvjMLQtaRtWrVezbtzyPxTMRMAV4TslEH9fcZYNpzdrtTYfGDnSccEb91Ye/OGG0CldXR7PNOShQm0+MdD4qrwuQ3iJfVqEq8zwrsyyuDmOSWjmQNHBY1pthLMJbIatSVZ+JPgo0Qi2ATkdpaabrUndzFvqAVL8HAM+6ZFCOjATzxPs8c4tlIVpM8DYoxbg1SxKxesv1l/kgyMj8QMztWbXq8T2ZyrI24/3xrFePIILRYbb7A+aORpt3fFNi+HGI7Rx7gP67M1TuKi8P9+gXvwekm2OLFLpHThlwGiCVV7WPZCjDAF7NcqFcrAZPOI8G+Hc5RnV0eitHJSUwqMCQYgUhKs6zVhESta1aylLYAbEqjkqj8lABVVKFwY3+760UbgOO/f1M0pTOiehHxT4/lIgKx9EIiwEBaZ4xvmiuMv0iioyk0I1aYWAOZI0Uli0aW9CytMIzgQajUgRS/zh10SBLxPMJrII3zELAbnMABlPkSBRQkYzYQjBgIZaHrfJyXwB9WZgCIZ7LBF4yYhnTKmy74xpaEZgaIKZjYz6YKTqEHhz9oIOmGLjIeZbhsTwhNBhDxCzauNLICTTQM0igQ6KSIwVjOk+ABNVRARynoXukaAcoq1EYK8aBovitAEMfpJiNrREiBkJWS9/xwaAQzaiwib9QVsa9SOANWw16zNOHEu1CJZWCcCYLUh4DFmTiglIjKkwsGfCJ5cGoksRaFUk4AhAwxQapd4rQTGjYqY689T42IFOwU0NgTAOBgjFWx5BZjhGGIF11H8tYvBw7xnU/YkL905G3bNBWCAP4LfBlBUyfQTIDf8z8dBADC2IATi+Udi3u9a9HWHaDX2Qx/iITCxs6BrDnoEzpBuiL0MeQyKUcfyMmHloeHl4HNyANQABSdxCcleyPteVRqTutsko9i/J8EaUj90rOMeLSowrQFJpCFLDqMR1RRDc7KqXlZACG+qwypo6BjoCASctITdbujNV6BtPPRjl6BPT/CSR1T6e6rjJlOsyGaDisq6Xt9Mo6DQHlQBuNTyTFZVUWtNLQAFN6MBwjgpDC4YU7ZMnankAFQS6ZirFaek5StgQBSuBtq+TanB1QGnWPGyWrqMC/FkcwEjWjxCAVrtw8aaBuvAqrhgaxRy1xpRcjDWGZCEhmcWRLGgfHn2WfQaG7IkCAJpWr9Nw6bpSXt+mSxvkJSHGcZeO5gVExibNdu6o1adlTF8qQ9p6jWTKOX2o0nityOFZ/r+Z3ygoIhvsjkWDIDkrJiUtXX9vvSrauxYihALhNuensEWMGgwWmYX0nvLraY4n5DfVxAVwO6f8MRX6tNB1g0y677sipUkzhjfZ0TdhqBmVV6xXE5TRYwV4apY451CrlGqeRE2jjB1zU67X0hLkWarrmAGogIk0skZSl0T3Gcyt7lJujXOZgYElswJW8ZvmKNd2vism3p3kndTpTawT2Vdjed+J4ptDH6L1AxSE3LTANHNWlUcu3Nt6vY3lfKvnAbJwy2umCB1JffxCfHx6MQqYDkrXV3ELFeAwG05WP9SpQYewGJsBQmedA5g/E2FI4ykcTeLlA97yPNJHM+FjXDo134M7OpKhgs8+st/bTPuoPmWuiUB2v1JTLKLZ/VKW8zhPYjlH1tevddyFqv07OozKqiHdGO2iH7uxUNkvsZEM4pL43Gw6Xyq6CK1cFpXIRMIXEspjHGKR8ANUB3QwVml/YZz7ov+mtW+fwh2HmH+dozI0g24CUzCRVIm+GriytW9W4Kj0NqcmjGkj1R6V6QqqP6RyqknYgjJaVGyLnzHw/0gCeRcTQZtSYSN/PrrFjLBCXYbgH/elWdKFNX9WG7XZ/FlWSKl8Hh27AIF3oAkh7C7YobJoY255lNJCyrnwchwh4/KCRRUbwaCaTdFOBz7ZvdvLt9U5pjUblNnSoItRbUmfdljqBbK6aQS3ujmXh4/ayd9UP/IXW1XRQuxrZfhpFqW+TFe3juFt9ejCIkmkcy59gu34UGZ9QTYKqSA8zimLTTNLHJDoHPcdhqE7PizLXXkRfNN3/Okbjce815+H59pVRz+/tb29Xe59p/UT1ed/Aq39kvhk2XUH0IIZJqBKyMnYA4bFBzWdE1cAOBpnBHnEQMs0j4cPr8AZEGpSLnZdRIlv60HV8AyMNQ7yP9HV+GQG98ZSVqMKdiqC1efaxfgYkTpAKXedVwNCk8hYKCxUrwoc3OK8D0ciydE5pbXmjXVTIRiGZnBpP5jJ4z2YS6UfaNtzeztvh+EcDpeAW+YnO8HhguQkIPwevZP+HxaxyKhsgq/+HzURxQ4MVLyec8ke1a/CMKGyw9/mA1NzliDSTEcS2rR41ZFq7ChUDCwbIWPNA9cewTJ2vF9UspNXKtrO4JpdjB1ZQoxOyOawvJq4GGzOHXunCrgKd3O02Z8NLMzPBmytBcNYcmCsIhkIBQn4FplKkYDD5onql9AR4FkN7plZ4+61KbEsaTrV2Y+oTFr6PB80p0/anmjJTzLyVkKpQr7G3OOpRqGEg9HhK6/ITy2EUVJFnOcpzJXlqiDfLJSq9MJLO5PxN2dwMvyxLf8RSr7MYlQ5dLHln6hKEyVrpdtRnGEx37khZ3HM+mjZIdb79lMUJgKcEpDVs2A9EX2QYyAFomArqXGW/fVXkorLRoLjsYr+kIFXo8cjvvvnU6eL66fNyj/cua+T9a/olbfQe/qIo9D0PpPaAGQd0xZML5KKEMYMUeqsKTtgkWw454UVEQOoL3HLCiuDdzAX/XzbWiWmFVUWJpYdOUCcWzhl5gOtCNGez8AksIjwqVBPjyZNLhbXcTcMVx2ggU+vxxzOoYShsid1sF+3uKk/2tsoVun9Z6+gZwqvfviaqwaZj8CMlzLVLvgcROeFI4oyfIifwBK/TXg86N7zPJT3yqZIrwjn8OeGKAhWQuv/kY8bPvhpYvSwPMZ4MdNN9FyJThgSOgZG5hDzU1XjWlPjOTOtFvf9ZauxhRrPX59hhyH0TzCvglUDrxCHnUte1TDqJZRIerLnETEZUfXYUUFwLf/xzd/VavAk3O9qwjECbS8k6o3oHnEaXJSybLRjA6GIhUYl5CmBFfslSBz+jHkUoioPoMTzBO9TpHuaEA0hXrtY7mDbVX576zJNTTd23E/xI+jhbOven06XXT7MNWTFdPSs53tTW7gMNwUPFatqAhk6gdnI0iVGwjiO70AlaCes2atdfMWx47yqkWFcbfcjOMZcvT4H4JTP9UvN19YaKNBWqV/p/UsxpSOixAEBrBxUoh/aXT5kbTN19kNnnG/6Y8OUrHyqn+R/b1z4Y3fQyKXOFwStZQTBUDY4M0T5iDwSm8LEaBvJYzbi0giB7mL8vOEPmftxjFYBUdGSVWUuvS5KMEMQi5nmOYVgikAKLhYCrP2CxUgDDRM03SdO5rv1Hb+M/iEq3ZXM1qLoWscNQ8QBbKj3WnUzSM11Rz/tUkArmIlBzSJhzDKmoxi5j+A5Y1UAoclnh5SIZ+YWCa0xAOo1xqLIRADCKavFinCT9RqNZH9RB9MHdWAdZj0eCthfHzuJgAQRYOnS7FB2+rnxUKTGSMRsgrCCXNn3TCaHNug2FLTy3kCRP4A0B028oneemAD94iwowJkqb3hOgQQTRyDiVxckVAgnw84NDS5e7DJE6IPsYuFjKHZ9Cqn53ewIm5qRE3ezUvxt1G0axhNjBwRzcOWXUtfC7o6PDLpXod5t7Ii+p3fZ3swXpCpGkHxc6hooNsrUTBLUYVsKmQ+5SSAqOQ9owNgkIpo+iW9dSlgShE7g0LrWcXkcp84UvfNnygMzW84bnmReMJnCyU4xJEBUvMKEI1lNs0FbvpGnZ23ver7HLjd3+hDG/gT8C0HitTOn/DEdBZOLYle+6DomXnYf9hfpNrRW10hZutaptMLxfpfKGESsZwTqrMiOgsO5jfEew8PlRNT+qof3P2C/6rX5YwcAdMUCG40mFY/M5wB65VNadjXJRo9PG2YUw9RhtA5Ct5U6yKqIir3hOpUhGYeHhuABOYTYcxVki1cezWlLlhvBgscvZZXT58oZSLtrOuXKjlFzUsnEqlzGic3GTi4xjiIvopdEHoRMYnyCLwF3M2NCqbkEK7wV3A7k9Qi3VscbAwClcXLEAu20c62otm9v5h12lq6uj0pw47V6nXSkjPVQZr+zTpws9xOBCd6MvkddKBh1KR5zURfty6+bIBQ/cfKw1S4E8YSKLgZcZGxSA1my7aJtI4ykrks63JsGSt3l4zcfE4HF5g8nDnPKAeUWsOuXLHIUqIlIUaRR53sqKNm5hODRIJhWQ+5Z0buij1QfOqa6sVLHh4gIlASjHgnZj380Od1rCQ6tGkH5uOBdJ3tAHiBH1sBMMKEGraoLHUyvX4mW4zGmmVgKQCopdfES3hrklHIl/RG4RWIaNQcbj+VQ0mYNFBh9J01HnY5NtAND7bg72npdFFhntRXJpo4vVx/ZqUWNNkBNjvAwbIhWbNp8L7NH1suFk2qLjQBnbTNHJ5dmqFMzy6qHI1WZaPaqjet1aACPziADPFohjziwDMrAZ019n8NVhKkw6xocIpEJkswgP7ZZ+kMqV2zUGN/OuL3ZvJqNm6cNlnmyzUXbjLyIAsEooCit/j0CIVLGDug/aWFsuBaOlXBifkt4pdaADKlaqYFFtVMAYXoUI0iSVodzUeWRZKChJiorprKYHq5qD5Ht6rtA9HbWcdV0dlgzTU0ub9ijf5fyWVfSRS/eRCuAKbN/Ry9ywAqPkRxzl5JLQYKgBHe2SrAKPdRGxS1WiBilzQYZC0uOhLQNgvx3iPxD9zGEyqWy4rYGwsbEtUGwMD21bG0d8rfF0AGrv8sCghlWqFd3sbbisQsEB6QdR9abjmBRqPgrZMq7YRmlqE+pxoiWAsO3Sj/AcS/wka8BGj/0atRuNuGToFfOV5m+b2KSm6ZSa43a8KwEq6vXeUd5pgM6d7qh91NCSI2CYI5noNXaJjungTkfa3sXJ+ga7a8TNTm+VcBysL1QzF7rGUdVUJUrkpRRplwG7qyAJ4wH0R22Dexz9LPiMKhzlJkDlZGWlbi9zmQY18cg22ymHTUb32t2jesWKTaGM1QBf+p/zCtW6T9cqkWU+yYRcDS/RnW759Asu0PXRUse+Los7didpGnxhRq12PyE20swelisxdo88KWpiwg9xeJQCeAPc9kH3MQAg3WYRBhmmyGseHPwsh+Dy52RLRmkJeX+//+QKmbz4Va3rLdRaKF+sA+OEPLuaoexCOXHMoGAYAXK+JR3ngccI8NiXpjEu4pM8HKZr64SjkBlvklrc6hLh6IPiv4pIrDYXEmI4QU6UI1WlmPMsWh+yIutRLiwg1eBpj+rdUx4hKE4SitChhPD8zQusJIFBFJfsLzRuas2omTZxsw1Alt2PQGTq56DprfusQ8UjSVIgbyndB7kBLL5fj2cEIv0buh8NcHpdVREFchVDDBTw225/6SLXNThbn40xIB+4rrOgXw33x1MPc442ELda+UJt590y0fzecmvtyuP87HuH13/1+vTaX36514985L/j/OPWa9w7PhRQuknnmvd2aLmdVD6H4Mx3uhoDIi5c3XyKA7ptb4Bzt2LV46FXVTha2YrTN5vREcp1aw/lgrKXoSvo8S4ltKEM8RFlb7OIZbk4Kb5eiSoVrrZYcFOGuaQab6H1sGtPkmHIJwN0G0MNZxhVEkjzgwPoVFuhu1y4ruq0O4uFjupYBbWkU2gqBlkQvm2MMu8FQjhHfNNFmOUcrh74Al/h49ATpYpk6VSRbRmFxpEba2ZkIpMV1SPsHWpQ08wqlm3MyyDF7MKfHiA5eQHFmDEffBQz49Lpgbj1EDInTBv240PJa7tpApO1lSJW2km6w4YTAmxtxzYGe2wQhkLR4kR3gTlYPZdjhDQOYdgJ/QIRxhw50LHuPL3jLHiFQU3ixzOLpmuuGQVV2y0rKbZGo8HmSsGzBLcHRYQhSAtk/PFnLCQUKnwJobdw1LXTI2Ao0NVd1AWVJMSGzB/RkQYmjH5gI8Qe2ATIFICl08cwT20erEaoB/W9fWqVviOykYpKicMasPmC76MgsSrQVyYLeOml7auXp8wLLgpV7wV9Ez52dp/7cih5JwoCT1cJJ7OOkAv6nuZETupgwakC0lqxRKghGWxpeAONiiaGO+krpuc13P6p2Ex0FF0GLjuwWrpAFY2yzpmaTGfmtLHNjJdqnbTsw3oZAqPHKcdtV6MWKjlnnemsX198mcBGWQFmr1t2ZE/T7eUSXBQRhuwRt4yOUqwQ5RPkPYyTlIOcVwbQ50KlnoJGR8fjNFlDn1VyiXNYlyW+BxjKxMwN5jbzmAJxgEIEqiSyAi2MwjT8u/D9IROGnvsq97p7w73tEqiifhhiuzYSmm108i6MFx0XD2SvLD9T/RNa44fE0VLucnj2v5uzVGeRGsGnnZn+TGMZr242dwVKWE6zjVkHAHOBrXqmJybQM9s8OlFxg/29WfjHfxy2f+3XXvHiF73otddeAaYJw1eET3PpW7cu+oc6C7JQZAo9g3xM/xm2qD70LCL5H6y9vTrRBd9fACsjmj2bcP32bMEDs3nYQcXGY+HlVCzFHYAAYOP/w5LjmUbf9X4Pr1u3Rxz4R9gLy3j471/xva5eh+45h4IERIzyr6R4+/88IDG/el1OHglvQI6hJDL/amv3R+w6UAF0qMstWnw4nvNGdBzNKlB0txYQD5JR482L6kddQxy4ZgVyccw7wIIucivqSBEamtJIwjVrmM+N+sAzf4cGQdEk1BY3XbO874HSSjRbp+Q55M6lEApPAc00knuZaYrfuFdscmquiKUvYldn4dzmuONs5YOnesXIPabC7V16/daiE5VeC+y9ODx6xrt6zs7eE49nPcYxr4c3K6jNbDJGO3N0wgzIW/keoxjq7Fcd1BxTzw4wR5Ayg6amp/DPUInx9jWj3n62rRoSukuPlkiNuS7/FGSZgCJT5oLknia5LHKvUnNq5xTturHX5tGPUMdbh7iVhvqZcRZRFs0rzwPaJT2ZM+gDbWkESINLV0Zo0yDDsSjMLQbfO87FrbyULtCuWE7vIhtPgh4eOz5NSnlEqm6VjTa5o9JQZtucXNm4bjH81zCdlwpHKUycAb1u7o+Kafu9hGta80xrNBe6ulcru9vO77VRy4CxlG7qo/eM/tPm+wQw0R6fqR8nbhq6kSH57Y7zuS42gTVP8Ggtuu+FAUZMD6B4JY+wdESJYtESYYrkWw6+O6bgX7eGKl2GpEc6diXpAjQFv7hsSUfmevIROcyK+oMPcoGEo2cHjJeBYyYBW2/e8gC8mfvYGPjNXL9GLbj3DfNfgdz2KY2SwT+uEBmIJsQDojHkMlN1jBjdWH/QRBMxyeJKvHaUD9vD3HK28VntwzMgJx6xcb+Yb9YFIguQ+8JKQWTkgqOKtLE47xusHapd5VFmmr6qqmaHeMlEjxMiVleJGwFRhZi5SFpBWAOZXLOhlcRrAYl7heOdMw3y7IA+Z7WY23q25CMLNGXUkTYjtjzoO+aC7we0opJOT6guiH7Gca6xEHurxs9qrArq+Dgdd0+87lCdXO2xbvOFcaO3tQT+h5+Vprx2ZF80M+31KfL7WkLnTjdy26PsbNl35t/mnTpxfLfKhq6n/IfCe12gma+cO3l+6j/0bw2oq0DYAeFv7cQyJ4QOJzydRtQdbwQNs94n+NMaR5PvXQD3IFy7i7Qi5J6tbuHRiun1GvWHpJwAUeRAur6+s288H7+Yxwqfu/2ZeqZyRr7v1sEZiTACAwpKKgOBdnvb/305g2Kkve/GSABo4bdJoPxN8BgKMkx+DI3G9M/NPIaFu82P4eDtZGkRfp0D3i6i+Ni4xBRTKlHAmVXqsrVIPRSfOmtVv9K8J1pCqZVoKK7yMxWlU8KpmFfrKuooMYdaja+xQjQ9TKcqxFCZpKdZL68JxmTkR6N+q8Yeet24faMSaYz4Bvg1sZhuaokampfVeuW0kGhF2VarDGo6YNViWda5VWdNGx6ykBaAVqRteSqVTGmlebCEF/n8VE2O1MCvH3MM7F3zpautHaKmGTEW/mSNTdRYUd1YXtVVVglR06GrNvJqQ5gF5ixFY1FJl6M4TMVpQBc46iC3+RFxLZtjxpV427hxp6Pb222hX+inXjLJH8L8ZPt8aWp1H5ydDNImt7LQdu50ksl3vzYm+fdWsknSEei+yDNRNAGSh8/5zMzMJP/i0vJkf4qS6eOGJL4jKZNHEEGYhyj52d+Snxxmkv9/cPjITUOSf8kMTb78AaWM5smozKHVfzw2/nifM2byo0cNpzN6KzJnJZNguL23BidHBX5v+GpW+uP7TPKP8BK8CBBIoov3Sz4pylZ0rCDpmudPfukavFmicyvO2nZ38hDC+3+Okp9WdSSP4A7cOkZJi8TJotb+renxn+OE5uHJm1P+9SEZ3IP5F2oHNWoVPtqY4z8M9TymOBgZumKaTM5eNCbv1NJu36efBCb6vx3ezw+vUPLs+1Hy/r/o2jFWzYjmwkI3vxKVd9dqk3e8kyTvfLOYvKu8Am/4S5j8+V+Q5C/efB1m5zVNj73mzTB5e8S/jX/LmnjTm0nyg+tfb0a/+mYYrtvemm2v2saKrY1tedkWlmx2ZOPUBsOB3WrWhFkae9K9VArStWQK2JHuel3wkfwtynzju4rww8vRUAYTIZx5C02C6mp3RbAnYiKBgnBEBAWyQwySnBebPogM+XP8G/4P5Q5SaSGmFPlhjCYEsPm7rw9HZ0HtLmj9RB0kWqOptppaLVLjSLve/8ZyA9iKaCt3l9zZ2y2iUV0WRElmOV7GhJEBRHKHrUQs9iKNei19HeO/A19HhbCqeFyg2NRVDGIpaQgHwm/6W92tzlZrq7EVb9W2wi1vy94ytrTeR+/Vu3qbhfXe2j7nITRmcjgJJy/mdjx9gIoLmmbQyQGSqfMmJ57BcmAw0LOzkBkqmcmjDsfw3O9gQfZeVTEQ1gGEOBZpHy9/iVIH8Nr/JV9cX03Qacet+DFk8spO0/CSJ9WjeuPZc+OT/Fo87x7WaKtTtNc22jv4ZkHWhFULsuGg6aqtWYS27jO1r4FmUdpgQfoOuHsGulF6EuDPQpfWdeN6fD29+ltKqoeXve5JCM0Ow0M2gBn3G7nQlx1xMycHE89Esanz8JQf+Bt816BMngQA) format("woff2");font-style:italic;font-weight:400}@-webkit-keyframes spinAround{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}@keyframes spinAround{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}@-webkit-keyframes dots{0%,20%{left:0;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;opacity:0}25%,75%{opacity:1}35%{left:45%;-webkit-animation-timing-function:linear;animation-timing-function:linear}65%{left:55%;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%,to{left:100%;opacity:0}}@keyframes dots{0%,20%{left:0;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out;opacity:0}25%,75%{opacity:1}35%{left:45%;-webkit-animation-timing-function:linear;animation-timing-function:linear}65%{left:55%;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%,to{left:100%;opacity:0}}@-webkit-keyframes orbit{0%{transform:rotate(225deg);opacity:1;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}7%{transform:rotate(345deg);-webkit-animation-timing-function:linear;animation-timing-function:linear}30%{transform:rotate(455deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}39%{transform:rotate(690deg);-webkit-animation-timing-function:linear;animation-timing-function:linear}70%{transform:rotate(815deg);opacity:1;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}75%{transform:rotate(945deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}76%,to{transform:rotate(945deg);opacity:0}}@keyframes orbit{0%{transform:rotate(225deg);opacity:1;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}7%{transform:rotate(345deg);-webkit-animation-timing-function:linear;animation-timing-function:linear}30%{transform:rotate(455deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}39%{transform:rotate(690deg);-webkit-animation-timing-function:linear;animation-timing-function:linear}70%{transform:rotate(815deg);opacity:1;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}75%{transform:rotate(945deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}76%,to{transform:rotate(945deg);opacity:0}}@-webkit-keyframes slideUp{0%{transform:translateY(100%)}70%{transform:translateY(-10%)}to{transform:translateY(0)}}@keyframes slideUp{0%{transform:translateY(100%)}70%{transform:translateY(-10%)}to{transform:translateY(0)}}@-webkit-keyframes slideDown{0%{transform:translateY(-100%)}to{transform:translateY(0)}}@keyframes slideDown{0%{transform:translateY(-100%)}to{transform:translateY(0)}}@-webkit-keyframes slideUpOutFadeOut{to{transform:translateY(-100%);opacity:0}}@keyframes slideUpOutFadeOut{to{transform:translateY(-100%);opacity:0}}@-webkit-keyframes fadeOut{to{opacity:0}}@keyframes fadeOut{to{opacity:0}}@-webkit-keyframes slideLeft{to{transform:translateX(-100%)}}@keyframes slideLeft{to{transform:translateX(-100%)}}@-webkit-keyframes slideRight{to{transform:translateX(100%)}}@keyframes slideRight{to{transform:translateX(100%)}}@-webkit-keyframes scaleIn{0%{transform:scale(0)}30%{transform:scale(0)}75%{transform:scale(1.2)}to{transform:scale(1)}}@keyframes scaleIn{0%{transform:scale(0)}30%{transform:scale(0)}75%{transform:scale(1.2)}to{transform:scale(1)}}@-webkit-keyframes fadeInSpin{0%,50%{opacity:0;right:0;transform:rotate(180deg)}to{opacity:1;right:105%;transform:rotate(0deg)}}@keyframes fadeInSpin{0%,50%{opacity:0;right:0;transform:rotate(180deg)}to{opacity:1;right:105%;transform:rotate(0deg)}}@-webkit-keyframes shake{0%{transform:translateX(-10px)}20%{transform:translateX(10px)}50%{transform:translateX(-10px)}70%{transform:translateX(10px)}to{transform:translateX(0)}}@keyframes shake{0%{transform:translateX(-10px)}20%{transform:translateX(10px)}50%{transform:translateX(-10px)}70%{transform:translateX(10px)}to{transform:translateX(0)}}@-webkit-keyframes pulse{0%{background-color:rgba(165,165,165,.1)}50%{background-color:rgba(165,165,165,.3)}to{background-color:rgba(165,165,165,.1)}}@keyframes pulse{0%{background-color:rgba(165,165,165,.1)}50%{background-color:rgba(165,165,165,.3)}to{background-color:rgba(165,165,165,.1)}}@-webkit-keyframes boop{0%{transform:scale(1)}50%{transform:scale(1.1)}to{transform:scale(1)}}@keyframes boop{0%{transform:scale(1)}50%{transform:scale(1.1)}to{transform:scale(1)}}html *,html a,html li{outline-color:inherit}.codeHeader{box-sizing:content-box;background-color:var(--theme-code-header);color:var(--theme-text);display:flex;flex-direction:row;font-size:.8rem;border:1px solid var(--theme-border);border-bottom:0;margin-top:16px;min-height:30px}.codeHeader>.language{padding:2px 16px;flex-grow:1}.codeHeader>.action{padding:2px 10px;background-color:transparent;border:0 solid var(--theme-border);border-left-width:1px;color:var(--theme-text);cursor:pointer;display:flex;align-items:center;line-height:normal}.codeHeader>.action:hover{background-color:#f2f2f2;background-color:var(--theme-code-block)}.codeHeader>.action .successful-copy-alert.is-transparent{opacity:0;transition:opacity .5s ease-in-out}.codeHeader+pre{margin-top:0}.content :not(.codeHeader)+pre>code{margin-top:-16px}.content :not(.codeHeader)+pre>code:before{display:block;height:31px;box-sizing:border-box;margin:-16px -16px 16px;padding:5px 16px;content:" ";font-weight:400;font-size:.8rem;line-height:160%;color:#171717;color:var(--theme-text);background-color:#e6e6e6;background-color:var(--theme-code-header);border-bottom:1px solid #e6e6e6;border-bottom:1px solid var(--theme-border)}div.table-scroll-wrapper{overflow-y:hidden;overflow-x:auto;-webkit-overflow-scrolling:touch}a{color:var(--theme-hyperlink);cursor:pointer;text-decoration:none;word-wrap:break-word}a:hover{color:#0065b3;color:var(--theme-primary-hover);text-decoration:underline}a:visited{color:#624991;color:var(--theme-visited)}a,li{outline:0}button{color:var(--theme-text);background-color:var(--theme-body-background);cursor:pointer}:not(a):not(pre)>code{padding:.1em .2em;background-color:#e6e6e6;background-color:var(--theme-inline-code);border-radius:3px;font-size:85%;font-smooth:auto;word-wrap:break-word}pre{font-size:.875rem;overflow:auto;border:1px solid var(--theme-border);background-color:var(--theme-code-block);padding:1rem;margin:1rem 0 0;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;-webkit-overflow-scrolling:touch}pre,pre>code{line-height:1.3571}pre>code{position:relative;border:0;padding:0;display:block}input[type=search]{border:1px solid var(--theme-border);-webkit-appearance:none;-moz-appearance:none;appearance:none;outline:none;background-color:var(--theme-body-background)}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}hr{height:0;border-width:1px 0 0;border-style:solid;border-color:var(--theme-border)}input::-ms-clear{display:none}strong{font-weight:600}html{font-size:16px;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;overflow-x:hidden;overflow-y:scroll;text-rendering:optimizeLegibility;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;text-size-adjust:100%;box-sizing:border-box;min-height:100vh}html *,html :after,html :before{box-sizing:inherit}body{display:flex;flex-direction:column;flex:1 1 100%;background-color:var(--theme-body-background);color:var(--theme-text);line-height:160%;min-height:100vh}.mainContainer .right-container{padding-top:1.5rem}.content img{border:0}.content img{max-width:100%;height:auto}.content img{display:inline-block;vertical-align:baseline}.content ul ul{margin:0;margin-left:20px}.content h1:first-of-type{margin-top:-10px;margin-bottom:0}.content h2{margin-bottom:12px}.content h1{line-height:1.3;margin-bottom:12px;font-size:calc(1.45833rem + 1.38889vw);margin-top:0;word-wrap:break-word;word-break:break-word}@media (min-width:1200px){.content h1{font-size:2.5rem}}.content h2{font-size:calc(1.39583rem + .97222vw);margin-top:32px}@media (min-width:1200px){.content h2{font-size:2.125rem}}.content h3{font-size:calc(1.33333rem + .55556vw);margin-top:30px;margin-bottom:18px}@media (min-width:1200px){.content h3{font-size:1.75rem}}.content p{margin-top:1rem;margin-bottom:0;word-wrap:break-word}.content ol,.content ul{margin:16px 0;margin-left:38px}.content ol>li,.content ul>li{list-style:disc outside none}.content ul>li>ul>li{list-style-type:circle}.content ol>li{list-style-type:decimal}.docon-link:before{content:"\E71B"}.docon-search:before{content:"\E721"}.docon-check-mark:before{content:"\E73E"}.docon-dislike:before{content:"\E8E0"}.docon-like:before{content:"\E8E1"}.docon-world:before{content:"\E909"}.docon-circle-addition:before{content:"\F2E3"}.docon-dictionary-download:before{content:"\F72F"}.docon-filter-settings:before{content:"\F76C"}.docon-sharing:before{content:"\FF0B"}.docon-edit-outline:before{content:"\FF0F"}.docon-sun:before{content:"\FF10"}.docon-brand-github:before{content:"\FF16"}.docon-status-error-outline:before{content:"\FF17"}.docon-edit-copy:before{content:"\FF1D"}.docon-comment-lines:before{content:"\FF24"}.docon-chevron-down-light:before{content:"\FF33"}.docon-chevron-right-light:before{content:"\FF34"}.theme-dark .hljs-comment{color:#63b456}.theme-dark .hljs-built_in,.theme-dark .hljs-keyword,.theme-dark .hljs-literal{color:#569cd6}.theme-dark .hljs-string .hljs-subst{color:var(--theme-text)}.theme-dark .hljs-string{color:#ce9178}.theme-dark .hljs-meta,.theme-dark .hljs-title{color:#01cfff}.alert{display:block;position:relative;border-radius:6px;font-size:1rem;padding:1rem;margin-top:1rem;background-color:var(--theme-body-background-medium);outline-color:var(--theme-text);color:var(--theme-text);transition:height .5s ease-in,opacity .5s ease-in;word-wrap:break-word;word-break:break-word;border:1px solid var(--theme-border-white-high-contrast)}.alert>:first-child{margin-top:0}.alert>*{max-width:100%}.alert.is-info{background-color:var(--theme-info-background);border:1px solid var(--theme-info-background-glow-high-contrast)}.alert.is-info .alert-title{color:var(--theme-info-dark)}.alert .alert-title,.alert a:not(.button){font-weight:600;color:currentColor}.autocomplete{display:inline-block;position:relative}.autocomplete-input{padding-right:26px}.breadcrumbs{width:100%;background:var(--theme-body-background-medium);font-size:.875rem;margin-bottom:0;padding:0 1rem}@media screen and (-webkit-min-device-pixel-ratio:1.25) and (max-width:767.9px),screen and (max-width:767px),screen and (min-resolution:120dpi) and (max-width:767.9px){.breadcrumbs{border-bottom:1px solid var(--theme-border)}}.breadcrumbs>li{display:inline}.breadcrumbs>li:not(:last-of-type):after{content:"/"}.breadcrumbs>li:after{display:inline;margin:0 6px;color:#a2a2a2;color:var(--theme-secondary-base)}@media print,screen and (min-width:768px){.breadcrumbs{padding:0;background:none;width:auto}.breadcrumbs>li{display:inline-block}}.card{border:1px solid var(--theme-border-white-high-contrast);box-shadow:0 1.6px 3.6px 0 var(--theme-box-shadow-medium),0 .3px .9px 0 var(--theme-box-shadow-light);background-color:var(--theme-body-background);outline-color:var(--theme-text);color:var(--theme-text);max-width:100%;position:relative;padding:1.5rem 0 0;display:flex;flex-direction:column;justify-content:flex-start;border-radius:.125rem}.card>:first-child{border-top-right-radius:.125rem;border-top-left-radius:.125rem}.card>:last-child{border-bottom-right-radius:.125rem;border-bottom-left-radius:.125rem}.card .card-content{padding-left:1.5rem;padding-right:1.5rem}.card .card-content:first-child,.card .card-footer:first-child,.card .card-header:first-child{padding-top:1.5rem;margin-top:-1.5rem}.card .card-content{flex-grow:1;margin-bottom:1.125rem}.card .card-content>:not(:first-child){margin-top:.5rem}.card .card-content .card-content-title{flex-grow:1;font-weight:600;line-height:1.25;font-size:1rem;text-align:left;-webkit-line-clamp:3}.card .card-content .card-content-title:first-child{margin-top:none}.card .card-content .card-content-title:only-child{margin:0}.card .card-content a.card-content-title{color:var(--theme-primary-base)}.card .card-content a.card-content-title:visited{color:#624991;color:var(--theme-visited)}.card .card-content p.card-content-description{line-height:1.25;font-size:.875rem}@supports (display:grid){.card .card-content p.card-content-description{-webkit-line-clamp:4;max-height:inherit!important;padding-bottom:0!important}.card .card-content p.card-content-description:after{display:none}}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.card .card-content p.card-content-description{position:relative;overflow:hidden;max-height:4rem;padding-bottom:1rem}.card .card-content p.card-content-description:after{position:absolute;z-index:2;bottom:-1px;right:0;left:0;height:1rem;content:""}.theme-dark .card .card-content p.card-content-description:after{background-color:linear-gradient(rgba(0,0,0,0),#171717 50%)}}.metadata{color:var(--theme-text-subtle);font-size:.875rem}.metadata.page-metadata{display:flex;flex-wrap:wrap;list-style:none;margin:0!important;padding:.125rem 0 0 0!important}.metadata.page-metadata>li{list-style:none;display:flex;flex-basis:auto;align-items:center}.metadata.page-metadata>li:not(:last-of-type):not(:only-of-type):after{padding-left:5px;padding-right:5px;content:"•"}.metadata.page-metadata>li:first-of-type,.metadata.page-metadata>li:only-of-type{margin-left:0}@media screen and (-webkit-min-device-pixel-ratio:1.25) and (max-width:767.9px),screen and (max-width:767px),screen and (min-resolution:120dpi) and (max-width:767.9px){.metadata.page-metadata>li:last-of-type{margin-left:0}}.footer-layout{background-color:var(--theme-secondary-background);display:flex;flex-direction:column;padding:3rem 1rem 3rem}@media screen and (min-width:1088px){.footer-layout{flex-direction:row;flex-wrap:wrap;justify-content:space-between}}.footer-layout .links{display:flex;font-size:.875rem;flex-wrap:wrap;margin-bottom:0;margin-top:1rem}@media screen and (min-width:1088px){.footer-layout .links{margin-top:0}}.footer-layout .links>li{display:inline-block;margin:.25rem 1.5rem 0 0}.footer-layout .links>li:last-child{margin-right:0}.footer-layout .links>li a{color:var(--theme-text)}.footer-layout .links>li a:active,.footer-layout .links>li a:hover{color:#505050;color:var(--theme-text-subtle)}.locale-selector-link{color:var(--theme-text);font-size:.875rem;display:flex;align-items:center}.locale-selector-link:hover{color:#505050;color:var(--theme-text-subtle);text-decoration:none}.locale-selector-link:hover .local-selector-link-text{text-decoration:underline}.theme-dropdown-trigger:hover{background-color:transparent!important}.tree{position:relative;font-size:.875rem}.tree ul,ul.tree{list-style-type:none;margin-bottom:0}.tree-item.is-leaf{color:#171717!important;color:var(--theme-text)!important}.tree-item.is-expanded>.tree-group{display:block}.tree-group{margin-left:1rem}.tree-expander,.tree-item.is-leaf{display:block;padding-left:1rem;padding-top:2px;padding-bottom:2px}.tree-item:not(.is-leaf){outline:none!important}.tree-expander,.tree-item.is-leaf{outline-offset:-.125rem!important}.tree-expander{position:relative;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.tree-expander-indicator{display:inline-block;position:absolute;top:7px;left:3px;color:var(--theme-text-subtle);font-size:.55rem;font-weight:600;transition:transform .15s ease-in-out;transform:rotate(0deg)}.tree-item.is-expanded>.tree-expander>.tree-expander-indicator{transform:rotate(90deg)}.tree-item.is-selected{color:#171717!important;color:var(--theme-text-glow-high-contrast)!important;font-weight:600;background-color:var(--theme-body-background-medium)}.binary-rating-redesign .thumb-rating-update.is-selected .docon-dislike:before,.binary-rating-redesign .thumb-rating-update:hover .docon-dislike:before,.thumb-rating.is-selected .docon-dislike:before,.thumb-rating:hover .docon-dislike:before{content:"\F3C0"}.binary-rating-redesign .thumb-rating-update.is-selected .docon-like:before,.binary-rating-redesign .thumb-rating-update:hover .docon-like:before,.thumb-rating.is-selected .docon-like:before,.thumb-rating:hover .docon-like:before{content:"\F3BF"}.thumb-rating{height:auto;border:none}.thumb-rating .icon{color:var(--theme-primary-base)}.nav-bar{position:relative;display:flex;align-items:stretch;height:54px;min-height:54px;justify-content:space-between}@media print,screen and (min-width:768px){.nav-bar{padding-left:1rem;padding-right:1rem}}@media print,screen and (min-width:860px){.nav-bar{padding-left:24px;padding-right:24px}}@media print,screen and (min-width:1084px){.nav-bar{padding-left:5vw;padding-right:5vw}}@media print,screen and (min-width:1795px){.nav-bar{padding-left:calc(50% - 800px);padding-right:calc(50% - 800px)}}.nav-bar>:first-child,.nav-bar>:first-child>:first-child{padding-left:.5rem}@media print,screen and (min-width:768px){.nav-bar>:first-child,.nav-bar>:first-child>:first-child{padding-left:0!important}}.nav-bar-nav{display:none;align-items:stretch}@media print,screen and (min-width:768px){.nav-bar-nav{display:flex}}.nav-bar-nav-list{display:flex;align-items:stretch}.nav-bar-item{display:flex;align-items:center;flex-shrink:0}.nav-bar-item.is-category{margin:0 .5rem}.nav-bar-item.is-category>.is-title{padding-left:.5rem}.nav-bar-item.is-category:before{content:"";display:inline-block;height:1.5rem;border-left:2px solid #505050;border-left:2px solid var(--theme-text-subtle);margin-left:.5rem;margin-right:1rem}.nav-bar-search{display:flex;align-items:center;flex-grow:1;flex-shrink:1;padding-left:.25rem;margin-right:0}@media print,screen and (min-width:768px){.nav-bar-search{padding:0;flex-grow:0;flex-shrink:0}}@media screen and (min-width:1088px){.nav-bar-search{margin-right:.25rem}}.nav-bar-search .nav-bar-search-form{display:flex;padding-left:.25rem}@media print,screen and (min-width:768px){.nav-bar-search .nav-bar-search-form{padding-left:0}}.nav-bar-button{display:flex;align-items:center;justify-content:center;align-self:stretch;flex-shrink:0;flex-grow:0;min-width:54px;padding:0 .5rem;background-color:transparent;color:var(--theme-text);border:none;text-decoration:none!important;white-space:nowrap;font-size:.875rem;line-height:normal;cursor:pointer;outline-offset:-.125rem!important}.nav-bar-button.is-active,.nav-bar-button:active,.nav-bar-button:hover{color:#171717;color:var(--theme-text)}.nav-bar-button.focus-visible.has-hover-underline:not([aria-expanded=true])>:first-child,.nav-bar-button.is-active.has-hover-underline:not([aria-expanded=true])>:first-child,.nav-bar-button:active.has-hover-underline:not([aria-expanded=true])>:first-child,.nav-bar-button:hover.has-hover-underline:not([aria-expanded=true])>:first-child{position:relative}.nav-bar-button.focus-visible.has-hover-underline:not([aria-expanded=true])>:first-child:after,.nav-bar-button.is-active.has-hover-underline:not([aria-expanded=true])>:first-child:after,.nav-bar-button:active.has-hover-underline:not([aria-expanded=true])>:first-child:after,.nav-bar-button:hover.has-hover-underline:not([aria-expanded=true])>:first-child:after{content:"";display:block;position:absolute;border-bottom:2px solid #171717;border-bottom:2px solid var(--theme-text);left:0;right:0;bottom:-.125rem}.nav-bar-button:visited{color:#171717;color:var(--theme-text)}.nav-bar-button.is-title{font-size:1rem;word-break:break-word;padding:0;background-color:var(--theme-body-background);line-height:normal}@media print,screen and (min-width:768px){.nav-bar-button.is-title{font-size:1.125rem;font-weight:600;line-height:1.125;margin:0;padding:0 .5rem}}.nav-bar-button-chevron{margin-left:auto;padding-left:.25rem;font-size:.75rem;color:var(--theme-text-subtle)}.nav-bar-button-chevron .docon{vertical-align:sub}.nav-bar-brand{display:flex}.nav-bar-spacer{display:none;flex-grow:1;flex-shrink:1}@media print,screen and (min-width:768px){.nav-bar-spacer{display:block}}.nav-bar-logo{width:108px;height:23px}.nav-bar-list{display:flex}.nav-bar-profile{padding-left:.25rem;font-size:.875rem;display:none;align-items:center;flex-shrink:0}@media print,screen and (min-width:768px){.nav-bar-profile{display:flex}}.nav-bar-profile .docs-sign-in{color:var(--theme-primary-base);border:1px solid transparent;border-radius:2px;height:2.25em;line-height:1.5;padding-bottom:calc(.375em - 1px);padding-left:.75em;padding-right:.75em;padding-top:calc(.375em - 1px);position:relative;align-self:center}.nav-bar-profile .docs-sign-in:hover{background-color:#f2f2f2;background-color:var(--theme-body-background-medium)}.facepile{display:flex;flex-wrap:wrap}.facepile.is-small{font-size:1.5rem}.facepile-item{list-style:none!important;padding-right:.25rem}.facepile-item-coin{border-radius:290486px;overflow:hidden;display:flex;width:1em;height:1em}.facepile-item-coin:hover{text-decoration:none}.facepile-item-coin-image{width:100%}.facepile-item-coin-text{margin:auto;font-size:.5em;line-height:1;display:inline-flex;width:100%;height:100%;justify-content:center;align-items:center;text-transform:uppercase}.facepile-item-more{display:block;padding:0;background-color:var(--theme-secondary-base);border-radius:290486px;overflow:hidden;border:1px solid var(--theme-border-white-high-contrast)}.facepile-item-more .facepile-item-coin-text{color:var(--theme-secondary-invert)}.dropdown{position:relative}.button{border-radius:2px;background-color:var(--theme-body-background);border-color:var(--theme-text-subtle);border-width:1px;color:var(--theme-text);cursor:pointer;justify-content:center;padding-bottom:calc(.375em - 1px);padding-left:.75em;padding-right:.75em;padding-top:calc(.375em - 1px);text-align:center;white-space:nowrap}.button:not(.is-text),.button:not(.is-text-primary){text-decoration:none!important}.button .icon{width:1.5em}.button .icon:first-child:last-child{margin-left:calc(-.375em - 1px);margin-right:calc(-.375em - 1px)}.button .icon:first-child:not(:last-child){margin-left:calc(-.375em - 1px);margin-right:.1875em}.button .icon:last-child:not(:first-child){margin-left:.1875em;margin-right:calc(-.375em - 1px)}.button.has-inner-focus:not(.is-text){outline-color:currentColor}@media screen and (-webkit-min-device-pixel-ratio:1.25) and (max-width:1087.9px),screen and (max-width:1087px),screen and (min-resolution:120dpi) and (max-width:1087.9px){.button.is-icon-only-touch .icon{margin:0!important}}.button.is-hovered,.button:hover{border-color:#2f2f2f;border-color:var(--theme-hover-base);color:#171717;color:var(--theme-text);background-color:#fafafa;background-color:var(--theme-hover-invert)}.button.is-active,.button:active,.button:visited{color:#171717;color:var(--theme-text)}.button.is-active,.button:active{border-color:#171717;border-color:var(--theme-text)}.button.is-text{background-color:transparent;border-color:transparent;color:var(--theme-text);text-decoration:underline}.button.is-text.focus-visible,.button.is-text.is-focused,.button.is-text.is-hovered,.button.is-text:hover{background-color:#f2f2f2;background-color:var(--theme-body-background-medium);color:#171717;color:var(--theme-text)}.button.is-text:visited{color:#171717;color:var(--theme-text)}.button.is-text.is-active,.button.is-text:active{background-color:#f2f2f2;background-color:var(--theme-body-background-medium);color:#171717;color:var(--theme-text)}.button.is-text.has-inner-focus{outline-color:var(--theme-text)}.button.is-transparent{background-color:transparent;border-color:transparent;color:currentColor}.button.is-transparent:hover{border-color:currentColor;background-color:rgba(255,255,255,.05)}.button.is-transparent:visited{color:currentColor}.button.is-transparent:active{border-color:currentColor;background-color:rgba(255,255,255,.1)}.button.is-primary{background-color:var(--theme-primary-base);border-color:var(--theme-primary-base);color:var(--theme-primary-invert)}.button.is-primary.is-hovered,.button.is-primary:hover{background-color:#0065b3;background-color:var(--theme-primary-hover);border-color:#000000;border-color:var(--theme-border-yellow-high-contrast);color:#ffffff;color:var(--theme-primary-invert)}.button.is-primary:visited{color:#ffffff;color:var(--theme-primary-invert)}.button.is-primary.focus-visible,.button.is-primary.is-active,.button.is-primary.is-focused,.button.is-primary:active{border-color:#ffffff;border-color:var(--theme-border-white-high-contrast);color:#ffffff;color:var(--theme-primary-invert)}.button.is-primary.is-active,.button.is-primary:active{background-color:#00579a;background-color:var(--theme-primary-active)}.button.is-small{border-radius:2px;font-size:.875rem}.button.is-small .icon{height:.875rem}.button.is-fullwidth{display:flex;width:100%}.buttons{align-items:center;display:flex;flex-wrap:wrap}.buttons .button{margin-bottom:.5rem}.buttons .button:not(:last-child){margin-right:.5rem}.buttons:last-child{margin-bottom:-.5rem}.buttons:not(:last-child){margin-bottom:1rem}.buttons.is-centered{justify-content:center}.icon{align-items:center;display:inline-flex;justify-content:center;height:1.5rem;width:1.5rem}.input{background-color:var(--theme-body-background);border-color:var(--theme-border);color:#171717!important;color:var(--theme-text)!important;box-shadow:inset 0 1px 2px var(--theme-box-shadow-light);max-width:100%;width:100%}.input::-webkit-input-placeholder,.textarea::-webkit-input-placeholder{color:#505050;color:var(--theme-text-subtle)}.input.is-hovered,.input:hover,.textarea.is-hovered,.textarea:hover{border-color:#0078d4;border-color:var(--theme-primary-base)}.input.focus-visible,.input.is-active,.input.is-focused,.input:active,.textarea.focus-visible,.textarea.is-active,.textarea.is-focused,.textarea:active{border-color:#0078d4;border-color:var(--theme-primary-base);outline-color:#0078d4;outline-color:var(--theme-primary-base);outline-style:solid!important;outline-offset:0!important}.input.focus-visible,.input.is-active,.input.is-focused,.input:active,.textarea.focus-visible,.textarea.is-active,.textarea.is-focused,.textarea:active{box-shadow:0 0 0 .125rem #0078d4;box-shadow:0 0 0 .125rem var(--theme-primary-base);outline:none!important}.input.is-small{border-radius:2px;font-size:.875rem}.control{font-size:1rem;position:relative;text-align:left}.control.has-icons-left .input.is-small~.icon{font-size:.875rem}.control.has-icons-left .icon{color:var(--theme-secondary-background);height:2.25em;pointer-events:none;position:absolute;top:0;width:2.25em;z-index:4}.control.has-icons-left .input{padding-left:2.25em}.control.has-icons-left .icon.is-left{left:0}h2.heading-anchor,h3.heading-anchor{position:relative;line-height:1.3;padding-left:.9375rem;margin-left:-.9375rem}@media print,screen and (min-width:768px){h2.heading-anchor,h3.heading-anchor{padding-left:1.875rem;margin-left:-1.875rem}}h2.heading-anchor .anchor-link,h3.heading-anchor .anchor-link{font-size:1rem;width:.75rem;position:absolute;left:0;transform:translateY(-50%) scale(.75);transition:opacity .1s linear}@media print,screen and (min-width:768px){h2.heading-anchor .anchor-link,h3.heading-anchor .anchor-link{width:1.5rem;transform:translateY(-50%) scale(1)}}h2.heading-anchor .anchor-link:hover,h3.heading-anchor .anchor-link:hover,h4.heading-anchor .anchor-link:hover,h5.heading-anchor .anchor-link:hover,h6.heading-anchor .anchor-link:hover{text-decoration:none}h2.heading-anchor:not(:hover) .anchor-link:not(.focus-visible),h3.heading-anchor:not(:hover) .anchor-link:not(.focus-visible),h4.heading-anchor:not(:hover) .anchor-link:not(.focus-visible),h5.heading-anchor:not(:hover) .anchor-link:not(.focus-visible),h6.heading-anchor:not(:hover) .anchor-link:not(.focus-visible){border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal;opacity:0}h2.heading-anchor .anchor-link{top:1.38125rem}h3.heading-anchor .anchor-link{top:1.1375rem}.hr{margin:1.5rem 0;color:var(--theme-text-subtle)}@-webkit-keyframes moveIndeterminate{0%{background-position:200% 0}to{background-position:-200% 0}}@keyframes moveIndeterminate{0%{background-position:200% 0}to{background-position:-200% 0}}.table{table-layout:auto;width:100%;font-size:.875rem}.table caption{font-size:.8rem;font-weight:600;letter-spacing:2px;text-transform:uppercase;padding:1.125rem;border-width:0 0 1px;border-style:solid;border-color:var(--theme-border);text-align:right}.table td,.table th{display:table-cell;word-wrap:break-word;padding:.75rem 1rem;line-height:1.5;vertical-align:top;border-top:1px solid var(--theme-border);border-right:0;border-left:0;border-bottom:0;border-style:solid}.table th:not([scope=row]){border-top:0;border-bottom:1px}.title{word-break:break-word}.title{font-weight:600;line-height:1.125}.title.is-3{font-size:1.75rem}.hero .hero-body,.uhf-container:not(.has-padding){margin-right:auto;margin-left:auto;max-width:100%}@media screen and (max-width:859px){.hero .hero-body,.uhf-container:not(.has-padding){max-width:calc(100% - 32px);width:calc(100% - 32px)}}@media print,screen and (min-width:860px){.hero .hero-body,.uhf-container:not(.has-padding){max-width:calc(100% - 48px);width:calc(100% - 48px)}}@media print,screen and (min-width:1084px){.hero .hero-body,.uhf-container:not(.has-padding){max-width:calc(100% - 10vw);width:calc(100% - 10vw)}}@media print,screen and (min-width:1795px){.hero .hero-body,.uhf-container:not(.has-padding){margin-right:auto;margin-left:auto;max-width:1600px;width:1600px}}.has-padding.uhf-container{box-sizing:border-box;width:100%;margin-right:0;margin-left:0}@media screen and (max-width:859px){.has-padding.uhf-container{padding-right:0;padding-left:0}.has-padding.uhf-container>*{padding-right:16px;padding-left:16px}}@media print,screen and (min-width:860px){.has-padding.uhf-container{padding-right:24px;padding-left:24px}}@media print,screen and (min-width:1084px){.has-padding.uhf-container{padding-right:5vw;padding-left:5vw}}@media print,screen and (min-width:1795px){.has-padding.uhf-container{padding-left:calc(50% - 800px);padding-right:calc(50% - 800px)}}.has-top-padding.uhf-container{padding-top:1.5rem}.stretched-link:before{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}#affixed-left-container{z-index:1}.header-holder{flex-shrink:0}.mainContainer{flex-grow:1;flex-shrink:1}.mainContainer .left-container,.mainContainer .primary-holder{padding-top:1.5rem}.columns>.column{display:block;flex-basis:0;flex-grow:1;flex-shrink:1}.columns>.column:not(.has-uhf-padding){padding:.75rem}.columns.has-large-gaps>.column{padding:1.5rem}@media print,screen and (min-width:768px){.column.is-full{flex:none;width:100%}.column.is-two-thirds-tablet{flex:none;width:66.6666%}.column.is-one-third-tablet{flex:none;width:33.3333%}.column.is-one-quarter{flex:none;width:25%}}@media screen and (min-width:1088px){.column.is-three-quarters-desktop{flex:none;width:75%}.column.is-one-quarter-desktop{flex:none;width:25%}.column.is-one-fifth-desktop{flex:none;width:20%}.column.is-four-fifths-desktop{flex:none;width:80%}}.columns:last-child{margin-bottom:-.75rem}.columns:not(:last-child){margin-bottom:.75rem}.columns.has-large-gaps{margin-left:-1.5rem;margin-right:-1.5rem;margin-top:-1.5rem}.columns.has-large-gaps:last-child{margin-bottom:-1.5rem}.columns.has-large-gaps:not(:last-child){margin-bottom:0}@media screen and (-webkit-min-device-pixel-ratio:1.25) and (max-width:767.9px),screen and (max-width:767px),screen and (min-resolution:120dpi) and (max-width:767.9px){.columns.is-gapless-mobile{margin-left:0;margin-right:0;margin-top:0}.columns.is-gapless-mobile>.column:not(.has-uhf-padding){margin:0;padding:0!important}.columns.is-gapless-mobile:not(:last-child){margin-bottom:1.5rem}.columns.is-gapless-mobile:last-child{margin-bottom:0}}@media print,screen and (min-width:768px){.columns:not(.is-desktop){display:flex}}@supports (display:grid){.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(290px,1fr));grid-column-gap:1rem;row-gap:1rem;margin:0;padding:0}.grid>.grid-item{display:flex;align-content:stretch;align-items:stretch}.grid>.grid-item>*{width:100%;height:100%}.grid>.grid-item.is-decorative:last-child:nth-child(2n){display:none!important}@media only screen and (min-width:628px) and (max-width:949px){.grid>.grid-item.is-decorative:last-child:nth-child(2n){display:flex!important}}.grid.is-horizontal{grid-template-columns:none;-moz-column-gap:0;column-gap:0;row-gap:.5rem}.grid.is-2.is-mobile{grid-template-columns:1fr 1fr!important}@media print,screen and (min-width:768px){.grid.is-2{grid-template-columns:repeat(auto-fit,minmax(290px,1fr))}}@media screen and (min-width:1088px){.grid.is-2{grid-template-columns:repeat(2,1fr)}}@media print,screen and (min-width:768px){.grid.is-3{grid-template-columns:repeat(auto-fit,minmax(25%,1fr))}}@media screen and (min-width:1088px){.grid.is-3-desktop{grid-template-columns:repeat(auto-fit,minmax(25%,1fr))}}@media print,screen and (min-width:768px){.grid.is-4{grid-template-columns:repeat(auto-fit,minmax(20%,1fr))}}.grid:not(.is-horizontal):not(.is-2):not(.single-item-stretch)>.grid-item:only-child{max-width:308px}@media screen and (-webkit-min-device-pixel-ratio:1.25) and (min-width:768px) and (max-width:1087.9px),screen and (min-resolution:120dpi) and (min-width:768px) and (max-width:1087.9px),screen and (min-width:768px) and (max-width:1087px){.grid.has-min-width-170-tablet-only{grid-template-columns:repeat(auto-fit,minmax(170px,1fr))}}.grid.is-fibonacci{grid-template-columns:1fr}@media print,screen and (min-width:768px){.grid.is-fibonacci{grid-template-columns:repeat(2,1fr)}}@media screen and (min-width:1088px){.grid.is-fibonacci{grid-template-columns:repeat(4,1fr)}}.is-small{grid-template-columns:repeat(auto-fit,minmax(240px,1fr))}}.content-header{margin:0;border-bottom:1px solid var(--theme-border)}@media screen and (-webkit-min-device-pixel-ratio:1.25) and (max-width:767.9px),screen and (max-width:767px),screen and (min-resolution:120dpi) and (max-width:767.9px){.content-header{padding:0}}@media print,screen and (min-width:768px){.content-header{display:flex;align-items:center;justify-content:space-between;margin:0}}.doc-outline h3{font-size:1rem;margin:0;margin-top:16px}@media screen and (min-width:1088px){.doc-outline h3{margin-top:0}}.doc-outline h3:last-child{display:none}.doc-outline ol{margin:10px 0 0;list-style-type:none}.doc-outline ol li{list-style:none}.doc-outline li{line-height:1.3;font-size:.875rem;padding:2px 0;padding-left:7px;margin:4px 0}.doc-outline li.selected{text-shadow:.3px 0 0 currentColor;border-color:var(--theme-primary-base);padding-left:4px;border-left:3px solid var(--theme-primary-base)}.doc-outline a:visited{color:#0078d4;color:var(--theme-primary-base)}#main{position:relative}.skip-to-main-link{z-index:1070!important}#headerAreaHolder{line-height:normal;border-bottom:1px solid var(--theme-border)}#MathJax_Message{position:fixed;left:1em;bottom:1.5em;background-color:#E6E6E6;border:1px solid #959595;margin:0px;padding:2px 8px;z-index:102;color:black;font-size:80%;width:auto;white-space:nowrap}@keyframes caretBlink{from{opacity:1.0}to{opacity:0.0}}@keyframes rotateSpinner{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}</style><meta itemprop=position content=1 class=sf-hidden><meta itemprop=position content=2 class=sf-hidden><meta itemprop=position content=3 class=sf-hidden><link type=image/x-icon rel="shortcut icon" href="data:image/x-icon;base64,AAABAAYAgIAQAAAAAABoKAAAZgAAAEhIEAAAAAAA6A0AAM4oAAAwMBAAAAAAAGgGAAC2NgAAICAQAAAAAADoAgAAHj0AABgYEAAAAAAA6AEAAAZAAAAQEBAAAAAAACgBAADuQQAAKAAAAIAAAAAAAQAAAQAEAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8A76QAAAC5/wAAun8AIlDyAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIgAAADMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIAAAAzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiAAAAMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIgAAADMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIAAAAzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiAAAAMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIgAAADMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIAAAAzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiAAAAMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIgAAADMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIAAAAzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiAAAAMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIgAAADMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIAAAAzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiAAAAMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIgAAADMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIAAAAzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiAAAAMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIgAAADMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIAAAAzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiAAAAMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIgAAADMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIAAAAzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiAAAAMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIgAAADMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIAAAAzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiAAAAMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIgAAADMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIAAAAzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiAAAAMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIgAAADMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIAAAAzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiAAAAMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIgAAADMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIAAAAzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiAAAAMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIgAAADMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIAAAAzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiAAAAMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIgAAADMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIAAAAzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiAAAAMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIgAAADMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIAAAAzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiAAAAMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIgAAADMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIAAAAzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiAAAAMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIgAAADMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIAAAAzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiAAAAMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIgAAADMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIAAAAzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiAAAAMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIgAAADMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIAAAAzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiAAAAMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIgAAADMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIAAAAzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiAAAAMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIiIgAAADMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVUAAABERERERERERERERERERERERERERERERERERERERERFVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVAAAARERERERERERERERERERERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVQAAAEREREREREREREREREREREREREREREREREREREREREVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVUAAABERERERERERERERERERERERERERERERERERERERERFVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVAAAARERERERERERERERERERERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVQAAAEREREREREREREREREREREREREREREREREREREREREVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVUAAABERERERERERERERERERERERERERERERERERERERERFVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVAAAARERERERERERERERERERERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVQAAAEREREREREREREREREREREREREREREREREREREREREVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVUAAABERERERERERERERERERERERERERERERERERERERERFVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVAAAARERERERERERERERERERERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVQAAAEREREREREREREREREREREREREREREREREREREREREVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVUAAABERERERERERERERERERERERERERERERERERERERERFVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVAAAARERERERERERERERERERERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVQAAAEREREREREREREREREREREREREREREREREREREREREVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVUAAABERERERERERERERERERERERERERERERERERERERERFVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVAAAARERERERERERERERERERERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVQAAAEREREREREREREREREREREREREREREREREREREREREVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVUAAABERERERERERERERERERERERERERERERERERERERERFVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVAAAARERERERERERERERERERERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVQAAAEREREREREREREREREREREREREREREREREREREREREVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVUAAABERERERERERERERERERERERERERERERERERERERERFVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVAAAARERERERERERERERERERERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVQAAAEREREREREREREREREREREREREREREREREREREREREVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVUAAABERERERERERERERERERERERERERERERERERERERERFVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVAAAARERERERERERERERERERERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVQAAAEREREREREREREREREREREREREREREREREREREREREVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVUAAABERERERERERERERERERERERERERERERERERERERERFVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVAAAARERERERERERERERERERERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVQAAAEREREREREREREREREREREREREREREREREREREREREVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVUAAABERERERERERERERERERERERERERERERERERERERERFVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVAAAARERERERERERERERERERERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVQAAAEREREREREREREREREREREREREREREREREREREREREVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVUAAABERERERERERERERERERERERERERERERERERERERERFVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVAAAARERERERERERERERERERERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVQAAAEREREREREREREREREREREREREREREREREREREREREVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVUAAABERERERERERERERERERERERERERERERERERERERERFVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVAAAARERERERERERERERERERERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVQAAAEREREREREREREREREREREREREREREREREREREREREVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVUAAABERERERERERERERERERERERERERERERERERERERERFVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVAAAARERERERERERERERERERERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVQAAAEREREREREREREREREREREREREREREREREREREREREVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVUAAABERERERERERERERERERERERERERERERERERERERERFVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVAAAARERERERERERERERERERERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVQAAAEREREREREREREREREREREREREREREREREREREREREVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVUAAABERERERERERERERERERERERERERERERERERERERERFVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVAAAARERERERERERERERERERERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVQAAAEREREREREREREREREREREREREREREREREREREREREVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVUAAABERERERERERERERERERERERERERERERERERERERERFVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVAAAARERERERERERERERERERERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVQAAAEREREREREREREREREREREREREREREREREREREREREVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVUAAABERERERERERERERERERERERERERERERERERERERERFVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVAAAARERERERERERERERERERERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVQAAAEREREREREREREREREREREREREREREREREREREREREVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVUAAABERERERERERERERERERERERERERERERERERERERERFVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVAAAARERERERERERERERERERERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVQAAAEREREREREREREREREREREREREREREREREREREREREVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVUAAABERERERERERERERERERERERERERERERERERERERERFVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVAAAARERERERERERERERERERERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVQAAAEREREREREREREREREREREREREREREREREREREREREVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVUAAABERERERERERERERERERERERERERERERERERERERERAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8AAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAB+AAAAAAAAAAKAAAAEgAAACQAAAAAQAEAAAAAACADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8A76QAAAC5/wAAun8AIlDyAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiIiIiIiIiIiIiIiIiIiIiIgAAMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIgAAMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIgAAMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIgAAMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIgAAMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIgAAMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIgAAMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIgAAMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIgAAMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIgAAMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIgAAMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIgAAMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIgAAMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIgAAMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIgAAMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIgAAMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIgAAMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIgAAMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIgAAMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIgAAMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIgAAMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIgAAMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIgAAMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIgAAMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIgAAMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIgAAMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIgAAMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIgAAMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIgAAMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIgAAMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIgAAMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIgAAMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIgAAMzMzMzMzMzMzMzMzMzMzMzMiIiIiIiIiIiIiIiIiIiIiIgAAMzMzMzMzMzMzMzMzMzMzMzMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABVVVVVVVVVVVVVVVVVVVVVVQAARERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVQAARERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVQAARERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVQAARERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVQAARERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVQAARERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVQAARERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVQAARERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVQAARERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVQAARERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVQAARERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVQAARERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVQAARERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVQAARERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVQAARERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVQAARERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVQAARERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVQAARERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVQAARERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVQAARERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVQAARERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVQAARERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVQAARERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVQAARERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVQAARERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVQAARERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVQAARERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVQAARERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVQAARERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVQAARERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVQAARERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVQAARERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVQAARERERERERERERERERERERERVVVVVVVVVVVVVVVVVVVVVVQAAREREREREREREREREREREREQAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAD///////////8AAAD///////////8AAAD///////////8AAAD///////////8AAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAPAAAAAAAAAAoAAAAMAAAAGAAAAABAAQAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP///wDvpAAAALn/AAC6fwAiUPIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACIiIiIiIiIiIiIiIAMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIAMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIAMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIAMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIAMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIAMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIAMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIAMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIAMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIAMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIAMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIAMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIAMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIAMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIAMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIAMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIAMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIAMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIAMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIAMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIAMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIAMzMzMzMzMzMzMzMyIiIiIiIiIiIiIiIAMzMzMzMzMzMzMzMwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFVVVVVVVVVVVVVVUARERERERERERERERFVVVVVVVVVVVVVVUARERERERERERERERFVVVVVVVVVVVVVVUARERERERERERERERFVVVVVVVVVVVVVVUARERERERERERERERFVVVVVVVVVVVVVVUARERERERERERERERFVVVVVVVVVVVVVVUARERERERERERERERFVVVVVVVVVVVVVVUARERERERERERERERFVVVVVVVVVVVVVVUARERERERERERERERFVVVVVVVVVVVVVVUARERERERERERERERFVVVVVVVVVVVVVVUARERERERERERERERFVVVVVVVVVVVVVVUARERERERERERERERFVVVVVVVVVVVVVVUARERERERERERERERFVVVVVVVVVVVVVVUARERERERERERERERFVVVVVVVVVVVVVVUARERERERERERERERFVVVVVVVVVVVVVVUARERERERERERERERFVVVVVVVVVVVVVVUARERERERERERERERFVVVVVVVVVVVVVVUARERERERERERERERFVVVVVVVVVVVVVVUARERERERERERERERFVVVVVVVVVVVVVVUARERERERERERERERFVVVVVVVVVVVVVVUARERERERERERERERFVVVVVVVVVVVVVVUARERERERERERERERFVVVVVVVVVVVVVVUARERERERERERERERFVVVVVVVVVVVVVVUARERERERERERERERAAAAYAAAAAAAAABgAAAAAAAAAGAAAAAAAAAAYAAAAAAAAABgAAAAAAAAAGAAAAAAAAAAYAAAAAAAAABgAAAAAAAAAGAAAAAAAAAAYAAAAAAAAABgAAAAAAAAAGAAAAAAAAAAYAAAAAAAAABgAAAAAAAAAGAAAAAAAAAAYAAAAAAAAABgAAAAAAAAAGAAAAAAAAAAYAAAAAAAAABgAAAAAAAAAGAAAAAAAAAAYAAAAAAAAABgAAAAAD///////8AAP///////wAAAAABgAAAAAAAAAGAAAAAAAAAAYAAAAAAAAABgAAAAAAAAAGAAAAAAAAAAYAAAAAAAAABgAAAAAAAAAGAAAAAAAAAAYAAAAAAAAABgAAAAAAAAAGAAAAAAAAAAYAAAAAAAAABgAAAAAAAAAGAAAAAAAAAAYAAAAAAAAABgAAAAAAAAAGAAAAAAAAAAYAAAAAAAAABgAAAAAAAAAGAAAAAAAAAAYAAAAAAAAABgAAAAAAAAAGAAAAAACgAAAAgAAAAQAAAAAEABAAAAAAAgAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AO+kAAAAuf8AALx7AB9M+QAiUPIA96YAAAC6fwDzpgAAHk72ACNO9ADzpAAAALx9AAC6fQAAAAAAIiIiIiIiIsADMzMzMzMzMyIiIiIiIiLAAzMzMzMzMzMiIiIiIiIiwAMzMzMzMzMzIiIiIiIiIsADMzMzMzMzMyIiIiIiIiLAAzMzMzMzMzMiIiIiIiIiwAMzMzMzMzMzIiIiIiIiIsADMzMzMzMzMyIiIiIiIiLAAzMzMzMzMzMiIiIiIiIiwAMzMzMzMzMzIiIiIiIiIsADMzMzMzMzMyIiIiIiIiLAAzMzMzMzMzMiIiIiIiIiwAMzMzMzMzMzIiIiIiIiIsADMzMzMzMzMyIiIiIiIiLAAzMzMzMzMzOZmZmZmZmZcAMzMzMzMzMzAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACqqqqqqqqqUATu7u7u7u7uZmZmZmZmZrANiIiIiIiIiGZmZmZmZmawDYiIiIiIiIhmZmZmZmZmsA2IiIiIiIiIZmZmZmZmZrANiIiIiIiIiGZmZmZmZmawDYiIiIiIiIhmZmZmZmZmsA2IiIiIiIiIZmZmZmZmZrANiIiIiIiIiGZmZmZmZmawDYiIiIiIiIhmZmZmZmZmsA2IiIiIiIiIZmZmZmZmZrANiIiIiIiIiGZmZmZmZmawDYiIiIiIiIhmZmZmZmZmsA2IiIiIiIiIZmZmZmZmZrANiIiIiIiIiGZmZmZmZmawDYiIiIiIiIgAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAD//////////wABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAACgAAAAYAAAAMAAAAAEABAAAAAAAgAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA////AO+kAAAAuf8AALp/ACJQ8gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIiIiIiIgMzMzMzMwIiIiIiIgMzMzMzMwIiIiIiIgMzMzMzMwIiIiIiIgMzMzMzMwIiIiIiIgMzMzMzMwIiIiIiIgMzMzMzMwIiIiIiIgMzMzMzMwIiIiIiIgMzMzMzMwIiIiIiIgMzMzMzMwIiIiIiIgMzMzMzMwIiIiIiIgMzMzMzMwAAAAAAAAAAAAAAAAVVVVVVVQRERERERAVVVVVVVQRERERERAVVVVVVVQRERERERAVVVVVVVQRERERERAVVVVVVVQRERERERAVVVVVVVQRERERERAVVVVVVVQRERERERAVVVVVVVQRERERERAVVVVVVVQRERERERAVVVVVVVQRERERERAVVVVVVVQRERERERA////AAAQAQAAEAEAABABAAAQAQAAEAEAABABAAAQAQAAEAEAABABAAAQAQAAEAEA////AAAQAQAAEAEAABABAAAQAQAAEAEAABABAAAQAQAAEAEAABABAAAQAQAAEAEAKAAAABAAAAAgAAAAAQAEAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8A76QAAAC5/wAAun8AHk73AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACIiIiAzMzMwIiIiIDMzMzAiIiIgMzMzMCIiIiAzMzMwIiIiIDMzMzAiIiIgMzMzMCIiIiAzMzMwAAAAAAAAAABVVVVQREREQFVVVVBERERAVVVVUEREREBVVVVQREREQFVVVVBERERAVVVVUEREREBVVVVQREREQP//AAABAQAAAQEAAAEBAAABAQAAAQEAAAEBAAABAQAA//8AAAEBAAABAQAAAQEAAAEBAAABAQAAAQEAAAEBAAA="><style>.sf-hidden{display:none!important}</style></head>
<body lang=en-us dir=ltr data-new-gr-c-s-check-loaded=14.1014.0 data-gr-ext-installed><div id=MathJax_Message style=display:none></div><div style=display:none id=lightningjs-usabilla_live></div>
<div class="header-holder has-default-focus">
<a href=#main class="skip-to-main-link has-outline-color-text visually-hidden-until-focused position-fixed has-inner-focus focus-visible top-0 left-0 right-0 padding-xs has-text-centered has-body-background" tabindex=1>Skip to main content</a>
<div hidden id=cookie-consent-holder class=sf-hidden></div>
<div id=headerAreaHolder data-bi-name=header>
<header role=banner itemscope itemtype=http://schema.org/Organization> <div class=nav-bar> <div class=nav-bar-brand>
<a class=nav-bar-button itemprop=url href=https://www.microsoft.com/ aria-label=Microsoft>
<div class=nav-bar-logo role=presentation aria-hidden=true itemprop=logo itemscope>
<svg xmlns=http://www.w3.org/2000/svg width=108 height=23 viewBox="72 72 337 74" preserveAspectRatio="xMidYMin slice">
<g data-name=MS-symbol>
<clippath id=a>
<path transform="matrix(1 0 0 -1 0 216)" d="M0 216h482V0H0z"></path>
</clippath>
<g clip-path=url(#a)>
<path class="has-fill-current-color has-text-subtle" d="M394.942 104.59h-10.858v25.003h-7.38V104.59h-5.182v-5.965h5.182v-4.308c0-3.254 1.06-5.92 3.178-7.998 2.12-2.079 4.835-3.118 8.15-3.118.882 0 1.666.045 2.35.135a9.37 9.37 0 011.806.407v6.296c-.24-.14-.663-.31-1.265-.512-.603-.2-1.296-.3-2.078-.3-1.528 0-2.702.476-3.526 1.43-.824.954-1.235 2.365-1.235 4.232v3.736h10.858v-6.959l7.321-2.229v9.188h7.381v5.965h-7.38v14.49c0 1.91.345 3.254 1.038 4.037.693.783 1.782 1.175 3.27 1.175.42 0 .927-.1 1.52-.3a7.178 7.178 0 001.552-.724v6.025c-.463.261-1.23.502-2.305.723a15.742 15.742 0 01-3.178.331c-3.073 0-5.378-.817-6.914-2.455-1.537-1.637-2.305-4.102-2.305-7.396zm-48.407 9.73c0 3.233.733 5.703 2.2 7.411 1.465 1.707 3.564 2.56 6.295 2.56 2.652 0 4.67-.853 6.055-2.56 1.386-1.708 2.08-4.238 2.08-7.592 0-3.334-.719-5.849-2.155-7.547-1.436-1.697-3.45-2.545-6.04-2.545-2.67 0-4.745.888-6.22 2.666-1.477 1.777-2.215 4.313-2.215 7.607m-7.592.24c0-5.12 1.446-9.177 4.338-12.17 2.892-2.993 6.91-4.489 12.05-4.489 4.841 0 8.621 1.441 11.343 4.323 2.721 2.883 4.082 6.774 4.082 11.674 0 5.021-1.447 9.018-4.338 11.99-2.892 2.973-6.829 4.458-11.81 4.458-4.8 0-8.61-1.41-11.432-4.232-2.822-2.82-4.233-6.673-4.233-11.554m-16.417-7.802c0 1.045.331 1.863.994 2.456.662.592 2.128 1.34 4.398 2.243 2.912 1.166 4.956 2.476 6.131 3.932 1.175 1.456 1.762 3.22 1.762 5.287 0 2.912-1.12 5.252-3.359 7.02-2.24 1.767-5.267 2.65-9.083 2.65-1.285 0-2.706-.155-4.263-.467-1.556-.31-2.877-.707-3.96-1.19v-7.169a17.945 17.945 0 004.277 2.198c1.526.543 2.911.814 4.157.814 1.647 0 2.862-.23 3.645-.693.784-.46 1.175-1.235 1.175-2.319 0-1.005-.406-1.853-1.22-2.546-.813-.693-2.355-1.492-4.624-2.395-2.69-1.125-4.599-2.39-5.724-3.796-1.125-1.406-1.687-3.193-1.687-5.362 0-2.792 1.11-5.086 3.33-6.884 2.217-1.797 5.095-2.696 8.63-2.696 1.084 0 2.3.12 3.645.361 1.346.242 2.47.553 3.374.934v6.93c-.964-.644-2.089-1.195-3.374-1.658-1.286-.462-2.56-.693-3.826-.693-1.386 0-2.465.271-3.238.813-.774.543-1.16 1.286-1.16 2.23m-35.066 7.562c0 3.233.733 5.703 2.2 7.411 1.465 1.707 3.564 2.56 6.295 2.56 2.652 0 4.67-.853 6.055-2.56 1.386-1.708 2.08-4.238 2.08-7.592 0-3.334-.719-5.849-2.155-7.547-1.436-1.697-3.449-2.545-6.039-2.545-2.672 0-4.745.888-6.222 2.666-1.476 1.777-2.214 4.313-2.214 7.607m-7.592.24c0-5.12 1.446-9.177 4.338-12.17 2.893-2.993 6.91-4.489 12.051-4.489 4.84 0 8.621 1.441 11.342 4.323 2.721 2.883 4.082 6.774 4.082 11.674 0 5.021-1.446 9.018-4.338 11.99-2.892 2.973-6.828 4.458-11.809 4.458-4.8 0-8.61-1.41-11.433-4.232-2.822-2.82-4.233-6.673-4.233-11.554m-3.136-16.448c.582 0 1.105.041 1.567.121.462.08.853.18 1.175.301v7.38c-.382-.28-.939-.546-1.672-.798-.733-.25-1.622-.376-2.666-.376-1.788 0-3.299.753-4.534 2.26-1.235 1.505-1.853 3.825-1.853 6.958v15.635h-7.29V98.624h7.29v4.88h.12c.663-1.687 1.667-3.007 3.013-3.96 1.346-.954 2.962-1.432 4.85-1.432m-27.956 26.18c1.084 0 2.28-.25 3.585-.754a15.06 15.06 0 003.615-1.988v6.778c-1.165.663-2.485 1.165-3.962 1.506-1.475.342-3.098.512-4.865.512-4.559 0-8.265-1.44-11.116-4.323-2.852-2.88-4.278-6.562-4.278-11.04 0-4.98 1.456-9.083 4.37-12.307 2.91-3.224 7.037-4.835 12.38-4.835 1.366 0 2.746.176 4.143.527 1.395.352 2.504.758 3.328 1.22v6.99c-1.125-.824-2.274-1.462-3.45-1.914a9.966 9.966 0 00-3.599-.678c-2.872 0-5.192.934-6.959 2.802-1.768 1.868-2.652 4.388-2.652 7.562 0 3.132.85 5.573 2.546 7.32 1.697 1.748 4.002 2.621 6.914 2.621m-22.112 5.302h-7.29V98.624h7.29zm-8.044-39.916c0-1.205.437-2.214 1.311-3.028.874-.813 1.913-1.22 3.118-1.22 1.285 0 2.35.417 3.193 1.25.844.834 1.266 1.833 1.266 2.998 0 1.185-.432 2.18-1.296 2.982-.864.804-1.918 1.205-3.163 1.205-1.246 0-2.295-.406-3.148-1.219-.854-.815-1.28-1.803-1.28-2.968m-6.274-3.284v43.2h-7.5v-33.86h-.12l-13.408 33.86h-4.97l-13.738-33.86h-.09v33.86h-6.929v-43.2h10.755l12.412 32.024h.18l13.105-32.024z"></path>
<path d="M106.214 106.214H71.996V71.996h34.218z" fill=#f25022></path>
<path d="M143.993 106.214h-34.218V71.996h34.218z" fill=#7fba00></path>
<path d="M106.214 143.993H71.996v-34.218h34.218z" fill=#00a4ef></path>
<path d="M143.993 143.993h-34.218v-34.218h34.218z" fill=#ffb900></path>
</g>
</g>
</svg>
</div>
</a>
</div>
<div class="nav-bar-item is-hidden-tablet sf-hidden">
</div>
<nav class=nav-bar-nav role=navigation aria-label=Global>
<ul class=nav-bar-nav-list>
<li class="nav-bar-item is-category">
<a class="nav-bar-button is-title has-hover-underline" itemprop=url href=https://docs.microsoft.com/en-us/>
<span>Docs</span>
</a>
</li>
<li class=nav-bar-item>
<a class="nav-bar-button has-hover-underline is-active" href=https://docs.microsoft.com/en-us/documentation>
<span>Documentation</span>
</a>
</li> <li class=nav-bar-item>
<a class="nav-bar-button has-hover-underline" href=https://docs.microsoft.com/en-us/learn/>
<span>Learn</span>
</a>
</li> <li class=nav-bar-item>
<a class="nav-bar-button has-hover-underline" href=https://docs.microsoft.com/en-us/answers/products/>
<span>Q&A</span>
</a>
</li> <li class=nav-bar-item>
<a class="nav-bar-button has-hover-underline" href=https://docs.microsoft.com/en-us/samples/browse/>
<span>Code Samples</span>
</a>
</li> <li class="dropdown nav-bar-item sf-hidden" hidden>
</li>
</ul>
</nav>
<span class=nav-bar-spacer></span>
<div class="nav-bar-search sf-hidden" id=ax-135 hidden>
</div>
<div class=nav-bar-search>
<form class=nav-bar-search-form method=GET name=nav-bar-search-form role=search id=nav-bar-search-form-desktop aria-label=Search aria-expanded=false action=/en-us/search/>
<div class=autocomplete data-bi-name=autocomplete> <div class="control has-icons-left">
<input role=combobox maxlength=100 aria-autocomplete=list autocapitalize=off autocomplete=off autocorrect=off spellcheck=false id=ax-137 class="autocomplete-input input control has-icons-left is-small" type=search name=terms aria-expanded=false aria-owns=ax-138-listbox aria-activedescendant aria-label=Search placeholder=Search value>
<span aria-hidden=true class="icon is-small is-left">
<span class="has-text-primary docon docon-search"></span>
</span>
<span aria-hidden=true class="autocomplete-loader loader has-text-primary sf-hidden" hidden></span>
</div>
<ul class="autocomplete-suggestions is-vertically-scrollable sf-hidden" role=listbox id=ax-138-listbox aria-label=ax-137-suggestions hidden>
</ul></div>
<button type=submit class=visually-hidden tabindex=-1 aria-hidden=true></button>
<input name=category hidden value class=sf-hidden>
<input name=scope hidden value=.NET class=sf-hidden>
</form>
</div>
<div class="nav-bar-search sf-hidden" hidden>
</div>
<div class=nav-bar-profile>
<a class="docs-sign-in auth-status-determined not-authenticated" href=#> Sign in </a>
<div class="dropdown has-caret auth-status-determined authenticated sf-hidden">
</div>
</div>
</div> <div class="nav-bar border-top is-hidden-mobile">
<a class="nav-bar-button is-title has-hover-underline" itemprop=url href=https://docs.microsoft.com/dotnet/>
<span>
.NET
</span>
</a>
<nav class=nav-bar-nav role=navigation aria-label=Site>
<ul class=nav-bar-nav-list>
<li class="dropdown nav-bar-item">
<button aria-expanded=false class="dropdown-trigger nav-bar-button has-hover-underline" aria-controls=ax-139>
<span>Languages</span>
<span class=nav-bar-button-chevron aria-hidden=true>
<span class="docon docon-chevron-down-light expanded-indicator"></span>
</span>
</button>
<ul class="dropdown-menu sf-hidden" id=ax-139 aria-label=Languages>
</ul>
</li> <li class="dropdown nav-bar-item">
<button aria-expanded=false class="dropdown-trigger nav-bar-button has-hover-underline" aria-controls=ax-140>
<span>Workloads</span>
<span class=nav-bar-button-chevron aria-hidden=true>
<span class="docon docon-chevron-down-light expanded-indicator"></span>
</span>
</button>
<ul class="dropdown-menu sf-hidden" id=ax-140 aria-label=Workloads>
</ul>
</li> <li class="dropdown nav-bar-item">
<button aria-expanded=false class="dropdown-trigger nav-bar-button has-hover-underline" aria-controls=ax-143>
<span>APIs</span>
<span class=nav-bar-button-chevron aria-hidden=true>
<span class="docon docon-chevron-down-light expanded-indicator"></span>
</span>
</button>
<ul class="dropdown-menu sf-hidden" id=ax-143 aria-label=APIs>
</ul>
</li> <li class="dropdown nav-bar-item">
<button aria-expanded=false class="dropdown-trigger nav-bar-button has-hover-underline" aria-controls=ax-144>
<span>Resources</span>
<span class=nav-bar-button-chevron aria-hidden=true>
<span class="docon docon-chevron-down-light expanded-indicator"></span>
</span>
</button>
<ul class="dropdown-menu sf-hidden" id=ax-144 aria-label=Resources>
</ul>
</li> <li class="dropdown nav-bar-item sf-hidden" hidden>
</li>
</ul>
</nav>
<span class=nav-bar-spacer></span>
<ol class=nav-bar-list>
<li class=nav-bar-item>
<a class="button is-small is-primary" href=https://dotnet.microsoft.com/download>
Download .NET
</a>
</li>
</ol>
</div> </header> </div>
<div class="content-header uhf-container has-padding has-default-focus border-bottom-none" data-bi-name=content-header>
<nav class="breadcrumb-holder has-padding-none has-padding-left-medium-tablet has-padding-right-medium-tablet has-padding-left-none-uhf-tablet has-padding-none-desktop flex-grow-1" data-bi-name=breadcrumb itemscope itemtype=http://schema.org/BreadcrumbList role=navigation aria-label=Breadcrumb>
<ul id=page-breadcrumbs class=breadcrumbs>
<li itemprop=itemListElement itemscope itemtype=http://schema.org/ListItem>
<a itemprop=item href=https://docs.microsoft.com/en-us/>
<span itemprop=name>Docs</span>
</a>
</li>
<li itemprop=itemListElement itemscope itemtype=http://schema.org/ListItem>
<a itemprop=item href=https://docs.microsoft.com/en-us/dotnet/>
<span itemprop=name>.NET</span>
</a>
</li>
<li itemprop=itemListElement itemscope itemtype=http://schema.org/ListItem>
<a itemprop=item href=https://docs.microsoft.com/en-us/dotnet/csharp/>
<span itemprop=name>C# guide</span>
</a>
</li>
</ul>
</nav>
<div class="content-header-controls sf-hidden">
</div>
<div class="has-padding-none-tablet padding-xs font-size-s display-flex justify-content-space-between flex-grow-1 page-action-holder">
<ul class="is-hidden-mobile action-list justify-content-flex-start has-flex-justify-content-end-tablet display-flex flex-wrap-wrap flex-grow-1 is-unstyled">
<li hidden class=sf-hidden>
</li>
<li>
<button type=button class="collection button is-text has-inner-focus is-small is-icon-only-touch" data-list-type=collection data-bi-name=collection title="Add Asynchronous programming - C# | Microsoft Docs to a collection" aria-pressed=false>
<span class=icon aria-hidden=true>
<span class="docon docon-circle-addition has-text-primary"></span>
</span>
<span class="collection-status is-visually-hidden-touch is-hidden-portrait">Save</span>
</button>
</li>
<li id=feedback-section-link>
<a href=#feedback class="button is-text has-inner-focus is-small is-icon-only-touch" data-bi-name=comments title="Send feedback about this page">
<span class=icon aria-hidden=true>
<span class="docon docon-comment-lines"></span>
</span>
<span class="is-visually-hidden-touch is-hidden-portrait">Feedback</span>
</a>
</li>
<li id=contenteditbtn>
<a href=https://github.com/dotnet/docs/blob/main/docs/csharp/async.md class="button is-text has-inner-focus is-icon-only-touch is-small" title="Edit This Document" data-bi-name=edit data-original_content_git_url=https://github.com/dotnet/docs/blob/live/docs/csharp/async.md data-original_content_git_url_template={repo}/blob/{branch}/docs/csharp/async.md data-pr_repo data-pr_branch>
<span class=icon aria-hidden=true>
<span class="docon docon-edit-outline"></span>
</span>
<span class="is-visually-hidden-touch is-hidden-portrait">Edit</span>
</a>
</li>
<li>
<div class="sharing dropdown has-caret">
<button class="dropdown-trigger button is-text is-fullwidth justify-content-flex-start has-inner-focus is-small is-icon-only-touch" aria-controls=sharing-menu aria-expanded=false title="Share This Document" data-bi-name=share>
<span class=icon aria-hidden=true>
<span class="docon docon-sharing"></span>
</span>
<span class="is-visually-hidden-touch is-hidden-portrait">Share</span>
</button>
<div class="dropdown-menu has-padding-small sf-hidden" id=sharing-menu>
</div>
</div> </li>
</ul>
<button type=button class="border contents-button button is-small is-text is-hidden-tablet has-inner-focus sf-hidden" aria-label=Contents data-bi-name=contents-expand>
</button>
<div class=is-invisible></div>
<div class="is-hidden-tablet level-item is-flexible level-right sf-hidden">
</div>
</div>
</div>
<div id=disclaimer-holder class="has-overflow-hidden has-default-focus">
</div>
</div>
<div class="mainContainer uhf-container has-top-padding has-default-focus" data-bi-name=body>
<div class="columns has-large-gaps is-gapless-mobile">
<div id=left-container class="left-container is-hidden-mobile column is-one-third-tablet is-one-quarter-desktop">
<nav id=affixed-left-container class="position-fixed display-flex flex-direction-column" role=navigation aria-label=Primary style=width:364px;top:164.5px;bottom:24px data-bi-name="left toc"><form action=javascript: role=search aria-label=Search class=has-margin-bottom-small><label class=visually-hidden for=ax-114>Search</label><div class="autocomplete is-block" data-bi-name=autocomplete> <div class="control has-icons-left">
<input role=combobox maxlength=100 aria-autocomplete=list autocapitalize=off autocomplete=off autocorrect=off spellcheck=false id=ax-114 class="autocomplete-input input control has-icons-left is-full-width is-small" type=text aria-expanded=false aria-owns=ax-115-listbox aria-activedescendant placeholder="Filter by title" value>
<span aria-hidden=true class="icon is-small is-left">
<span class="has-text-primary docon docon-filter-settings"></span>
</span>
<span aria-hidden=true class="autocomplete-loader loader has-text-primary sf-hidden" hidden></span>
</div>
<ul class="autocomplete-suggestions is-vertically-scrollable sf-hidden" role=listbox id=ax-115-listbox aria-label=ax-114-suggestions hidden>
</ul></div></form><ul class="tree is-vertically-scrollable flex-grow-1 flex-shrink-1" role=tree aria-label="Table of contents" data-bi-name=tree data-is-collapsible=true><li role=none><a aria-setsize=10 aria-level=1 aria-posinset=1 role=treeitem tabindex=-1 class="tree-item is-leaf has-external-link-indicator" data-bi-name=tree-leaf href=https://docs.microsoft.com/en-us/dotnet/csharp/>C# documentation</a><li class=tree-item aria-setsize=10 aria-level=1 aria-posinset=2 role=treeitem tabindex=-1 id=title-2-1 aria-expanded=false><span data-bi-name=tree-expander class=tree-expander><span class="tree-expander-indicator docon docon-chevron-right-light" aria-hidden=true></span>Get started</span><li class=tree-item aria-setsize=10 aria-level=1 aria-posinset=3 role=treeitem tabindex=-1 id=title-3-1 aria-expanded=false><span data-bi-name=tree-expander class=tree-expander><span class="tree-expander-indicator docon docon-chevron-right-light" aria-hidden=true></span>Fundamentals</span><li class=tree-item aria-setsize=10 aria-level=1 aria-posinset=4 role=treeitem tabindex=-1 id=title-4-1 aria-expanded=false><span data-bi-name=tree-expander class=tree-expander><span class="tree-expander-indicator docon docon-chevron-right-light" aria-hidden=true></span>What's new in C#</span><li class=tree-item aria-setsize=10 aria-level=1 aria-posinset=5 role=treeitem tabindex=-1 id=title-5-1 aria-expanded=false><span data-bi-name=tree-expander class=tree-expander><span class="tree-expander-indicator docon docon-chevron-right-light" aria-hidden=true></span>Tutorials</span><li class=tree-item aria-setsize=10 aria-level=1 aria-posinset=6 role=treeitem tabindex=-1 id=title-6-1 aria-expanded=false><span data-bi-name=tree-expander class=tree-expander><span class="tree-expander-indicator docon docon-chevron-right-light" aria-hidden=true></span>C# concepts</span><li class=tree-item aria-setsize=10 aria-level=1 aria-posinset=7 role=treeitem tabindex=-1 id=title-7-1 aria-expanded=false><span data-bi-name=tree-expander class=tree-expander><span class="tree-expander-indicator docon docon-chevron-right-light" aria-hidden=true></span>How-to C# articles</span><li class=tree-item aria-setsize=10 aria-level=1 aria-posinset=8 role=treeitem tabindex=-1 id=title-8-1 aria-expanded=false><span data-bi-name=tree-expander class=tree-expander><span class="tree-expander-indicator docon docon-chevron-right-light" aria-hidden=true></span>The .NET Compiler Platform SDK (Roslyn APIs)</span><li class="tree-item is-expanded" aria-setsize=10 aria-level=1 aria-posinset=9 role=treeitem tabindex=-1 id=title-9-1 aria-expanded=true><span data-bi-name=tree-expander class=tree-expander><span class="tree-expander-indicator docon docon-chevron-right-light" aria-hidden=true></span>C# programming guide</span><ul class=tree-group role=group><li role=none><a aria-setsize=16 aria-level=2 aria-posinset=1 role=treeitem tabindex=-1 class="tree-item is-leaf has-external-link-indicator" data-bi-name=tree-leaf href=https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/>Overview</a><li class="tree-item is-expanded" aria-setsize=16 aria-level=2 aria-posinset=2 role=treeitem tabindex=-1 id=title-9-1_2-2 aria-expanded=true><span data-bi-name=tree-expander class=tree-expander><span class="tree-expander-indicator docon docon-chevron-right-light" aria-hidden=true></span>Programming concepts</span><ul class=tree-group role=group><li role=none><a aria-setsize=10 aria-level=3 aria-posinset=1 role=treeitem tabindex=-1 class="tree-item is-leaf has-external-link-indicator" data-bi-name=tree-leaf href=https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/concepts/>Overview</a><li class="tree-item is-expanded" aria-setsize=10 aria-level=3 aria-posinset=2 role=treeitem tabindex=-1 id=title-9-1_2-2_2-3 aria-expanded=true><span data-bi-name=tree-expander class=tree-expander><span class="tree-expander-indicator docon docon-chevron-right-light" aria-hidden=true></span>Asynchronous programming</span><ul class=tree-group role=group><li role=none><a aria-setsize=7 aria-level=4 aria-posinset=1 role=treeitem tabindex=-1 class="tree-item is-leaf has-external-link-indicator" data-bi-name=tree-leaf href=https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/concepts/async/>Overview</a><li role=none><a aria-setsize=7 aria-level=4 aria-posinset=2 role=treeitem tabindex=0 class="tree-item is-leaf has-external-link-indicator is-selected" data-bi-name=tree-leaf href=https://docs.microsoft.com/en-us/dotnet/csharp/async aria-current=page>Asynchronous programming scenarios</a><li role=none><a aria-setsize=7 aria-level=4 aria-posinset=3 role=treeitem tabindex=-1 class="tree-item is-leaf has-external-link-indicator" data-bi-name=tree-leaf href=https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/concepts/async/task-asynchronous-programming-model>Task asynchronous programming model</a><li role=none><a aria-setsize=7 aria-level=4 aria-posinset=4 role=treeitem tabindex=-1 class="tree-item is-leaf has-external-link-indicator" data-bi-name=tree-leaf href=https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/concepts/async/async-return-types>Async return types</a><li class=tree-item aria-setsize=7 aria-level=4 aria-posinset=5 role=treeitem tabindex=-1 id=title-9-1_2-2_2-3_5-4 aria-expanded=false><span data-bi-name=tree-expander class=tree-expander><span class="tree-expander-indicator docon docon-chevron-right-light" aria-hidden=true></span>Cancel tasks</span><li role=none><a aria-setsize=7 aria-level=4 aria-posinset=6 role=treeitem tabindex=-1 class="tree-item is-leaf has-external-link-indicator" data-bi-name=tree-leaf href=https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/concepts/async/start-multiple-async-tasks-and-process-them-as-they-complete>Process asynchronous tasks as they complete</a><li role=none><a aria-setsize=7 aria-level=4 aria-posinset=7 role=treeitem tabindex=-1 class="tree-item is-leaf has-external-link-indicator" data-bi-name=tree-leaf href=https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/concepts/async/using-async-for-file-access>Asynchronous file access</a></ul><li class=tree-item aria-setsize=10 aria-level=3 aria-posinset=3 role=treeitem tabindex=-1 id=title-9-1_2-2_3-3 aria-expanded=false><span data-bi-name=tree-expander class=tree-expander><span class="tree-expander-indicator docon docon-chevron-right-light" aria-hidden=true></span>Attributes</span><li role=none><a aria-setsize=10 aria-level=3 aria-posinset=4 role=treeitem tabindex=-1 class="tree-item is-leaf has-external-link-indicator" data-bi-name=tree-leaf href=https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/concepts/collections>Collections</a><li class=tree-item aria-setsize=10 aria-level=3 aria-posinset=5 role=treeitem tabindex=-1 id=title-9-1_2-2_5-3 aria-expanded=false><span data-bi-name=tree-expander class=tree-expander><span class="tree-expander-indicator docon docon-chevron-right-light" aria-hidden=true></span>Covariance and contravariance</span><li class=tree-item aria-setsize=10 aria-level=3 aria-posinset=6 role=treeitem tabindex=-1 id=title-9-1_2-2_6-3 aria-expanded=false><span data-bi-name=tree-expander class=tree-expander><span class="tree-expander-indicator docon docon-chevron-right-light" aria-hidden=true></span>Expression trees</span><li role=none><a aria-setsize=10 aria-level=3 aria-posinset=7 role=treeitem tabindex=-1 class="tree-item is-leaf has-external-link-indicator" data-bi-name=tree-leaf href=https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/concepts/iterators>Iterators</a><li class=tree-item aria-setsize=10 aria-level=3 aria-posinset=8 role=treeitem tabindex=-1 id=title-9-1_2-2_8-3 aria-expanded=false><span data-bi-name=tree-expander class=tree-expander><span class="tree-expander-indicator docon docon-chevron-right-light" aria-hidden=true></span>Language-Integrated Query (LINQ)</span><li role=none><a aria-setsize=10 aria-level=3 aria-posinset=9 role=treeitem tabindex=-1 class="tree-item is-leaf has-external-link-indicator" data-bi-name=tree-leaf href=https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/concepts/reflection>Reflection</a><li class=tree-item aria-setsize=10 aria-level=3 aria-posinset=10 role=treeitem tabindex=-1 id=title-9-1_2-2_10-3 aria-expanded=false><span data-bi-name=tree-expander class=tree-expander><span class="tree-expander-indicator docon docon-chevron-right-light" aria-hidden=true></span>Serialization (C#)</span></ul><li class=tree-item aria-setsize=16 aria-level=2 aria-posinset=3 role=treeitem tabindex=-1 id=title-9-1_3-2 aria-expanded=false><span data-bi-name=tree-expander class=tree-expander><span class="tree-expander-indicator docon docon-chevron-right-light" aria-hidden=true></span>Statements, expressions, and operators</span><li class=tree-item aria-setsize=16 aria-level=2 aria-posinset=4 role=treeitem tabindex=-1 id=title-9-1_4-2 aria-expanded=false><span data-bi-name=tree-expander class=tree-expander><span class="tree-expander-indicator docon docon-chevron-right-light" aria-hidden=true></span>Types</span><li class=tree-item aria-setsize=16 aria-level=2 aria-posinset=5 role=treeitem tabindex=-1 id=title-9-1_5-2 aria-expanded=false><span data-bi-name=tree-expander class=tree-expander><span class="tree-expander-indicator docon docon-chevron-right-light" aria-hidden=true></span>Classes, Structs, and Records</span><li class=tree-item aria-setsize=16 aria-level=2 aria-posinset=6 role=treeitem tabindex=-1 id=title-9-1_6-2 aria-expanded=false><span data-bi-name=tree-expander class=tree-expander><span class="tree-expander-indicator docon docon-chevron-right-light" aria-hidden=true></span>Interfaces</span><li class=tree-item aria-setsize=16 aria-level=2 aria-posinset=7 role=treeitem tabindex=-1 id=title-9-1_7-2 aria-expanded=false><span data-bi-name=tree-expander class=tree-expander><span class="tree-expander-indicator docon docon-chevron-right-light" aria-hidden=true></span>Delegates</span><li class=tree-item aria-setsize=16 aria-level=2 aria-posinset=8 role=treeitem tabindex=-1 id=title-9-1_8-2 aria-expanded=false><span data-bi-name=tree-expander class=tree-expander><span class="tree-expander-indicator docon docon-chevron-right-light" aria-hidden=true></span>Arrays</span><li class=tree-item aria-setsize=16 aria-level=2 aria-posinset=9 role=treeitem tabindex=-1 id=title-9-1_9-2 aria-expanded=false><span data-bi-name=tree-expander class=tree-expander><span class="tree-expander-indicator docon docon-chevron-right-light" aria-hidden=true></span>Strings</span><li class=tree-item aria-setsize=16 aria-level=2 aria-posinset=10 role=treeitem tabindex=-1 id=title-9-1_10-2 aria-expanded=false><span data-bi-name=tree-expander class=tree-expander><span class="tree-expander-indicator docon docon-chevron-right-light" aria-hidden=true></span>Indexers</span><li class=tree-item aria-setsize=16 aria-level=2 aria-posinset=11 role=treeitem tabindex=-1 id=title-9-1_11-2 aria-expanded=false><span data-bi-name=tree-expander class=tree-expander><span class="tree-expander-indicator docon docon-chevron-right-light" aria-hidden=true></span>Events</span><li class=tree-item aria-setsize=16 aria-level=2 aria-posinset=12 role=treeitem tabindex=-1 id=title-9-1_12-2 aria-expanded=false><span data-bi-name=tree-expander class=tree-expander><span class="tree-expander-indicator docon docon-chevron-right-light" aria-hidden=true></span>Generics</span><li class=tree-item aria-setsize=16 aria-level=2 aria-posinset=13 role=treeitem tabindex=-1 id=title-9-1_13-2 aria-expanded=false><span data-bi-name=tree-expander class=tree-expander><span class="tree-expander-indicator docon docon-chevron-right-light" aria-hidden=true></span>Namespaces</span><li class=tree-item aria-setsize=16 aria-level=2 aria-posinset=14 role=treeitem tabindex=-1 id=title-9-1_14-2 aria-expanded=false><span data-bi-name=tree-expander class=tree-expander><span class="tree-expander-indicator docon docon-chevron-right-light" aria-hidden=true></span>XML documentation comments</span><li class=tree-item aria-setsize=16 aria-level=2 aria-posinset=15 role=treeitem tabindex=-1 id=title-9-1_15-2 aria-expanded=false><span data-bi-name=tree-expander class=tree-expander><span class="tree-expander-indicator docon docon-chevron-right-light" aria-hidden=true></span>File System and the Registry</span><li class=tree-item aria-setsize=16 aria-level=2 aria-posinset=16 role=treeitem tabindex=-1 id=title-9-1_16-2 aria-expanded=false><span data-bi-name=tree-expander class=tree-expander><span class="tree-expander-indicator docon docon-chevron-right-light" aria-hidden=true></span>Interoperability</span></ul><li class=tree-item aria-setsize=10 aria-level=1 aria-posinset=10 role=treeitem tabindex=-1 id=title-10-1 aria-expanded=false><span data-bi-name=tree-expander class=tree-expander><span class="tree-expander-indicator docon docon-chevron-right-light" aria-hidden=true></span>Language reference</span></ul><a class="button is-small is-text justify-content-flex-start has-inner-focus has-margin-top-small border-top border-bottom flex-shrink-0" href="https://docs.microsoft.com/en-us/dotnet/opbuildpdf/csharp/toc.pdf?branch=live" data-bi-name=downloadPdf rel=nofollow> <span class="icon font-size-xs has-text-subtle">
<span aria-hidden=true class="docon docon-dictionary-download"></span>
</span>
<span>Download PDF</span></a></nav>
</div>
<section class="primary-holder column is-two-thirds-tablet is-three-quarters-desktop">
<div class="columns is-gapless-mobile has-large-gaps">
<div id=main-column class="column is-full is-four-fifths-desktop">
<main id=main role=main class=content data-bi-name=content lang=en-us dir=ltr>
<h1 id=asynchronous-programming>Asynchronous programming</h1>
<ul class="metadata page-metadata" data-bi-name="page info" lang=en-us dir=ltr>
<li>
<time data-article-date aria-label="Article review date" datetime=2020-05-20T00:00:00.000Z data-article-date-source=ms.date>05/20/2020</time>
</li>
<li class=readingTime>10 minutes to read</li>
<li class=contributors-holder>
<ul class="facepile has-margin-left-none is-small" data-bi-name=contributors>
<li class=facepile-item>
<a href=https://github.com/cartermp title=cartermp aria-label="cartermpGithub profile" data-src="https://github.com/cartermp.png?size=32" data-contributor-name=cartermp class=facepile-item-coin>
<img class="facepile-item-coin-image durable-image" aria-hidden=true src=data:null;base64, role=presentation>
<span class="facepile-item-coin-text durable-image-fallback facepile-item-teal sf-hidden" aria-hidden=true>c</span>
</a>
</li>
<li class=facepile-item>
<a href=https://github.com/gewarren title=gewarren aria-label="gewarrenGithub profile" data-src="https://github.com/gewarren.png?size=32" data-contributor-name=gewarren class=facepile-item-coin>
<img class="facepile-item-coin-image durable-image" aria-hidden=true src=data:null;base64, role=presentation>
<span class="facepile-item-coin-text durable-image-fallback facepile-item-red sf-hidden" aria-hidden=true>g</span>
</a>
</li>
<li class=facepile-item>
<a href=https://github.com/BillWagner title=BillWagner aria-label="BillWagnerGithub profile" data-src="https://github.com/BillWagner.png?size=32" data-contributor-name=BillWagner class=facepile-item-coin>
<img class="facepile-item-coin-image durable-image" aria-hidden=true src=data:null;base64, role=presentation>
<span class="facepile-item-coin-text durable-image-fallback facepile-item-blue sf-hidden" aria-hidden=true>B</span>
</a>
</li>
<li class=facepile-item>
<a href=https://github.com/MustafaSaraoglu title=MustafaSaraoglu aria-label="MustafaSaraogluGithub profile" data-src="https://github.com/MustafaSaraoglu.png?size=32" data-contributor-name=MustafaSaraoglu class=facepile-item-coin>
<img class="facepile-item-coin-image durable-image" aria-hidden=true src=data:null;base64, role=presentation>
<span class="facepile-item-coin-text durable-image-fallback facepile-item-teal sf-hidden" aria-hidden=true>M</span>
</a>
</li>
<li class=facepile-item>
<a href=https://github.com/lv1il0s title=lv1il0s aria-label="lv1il0sGithub profile" data-src="https://github.com/lv1il0s.png?size=32" data-contributor-name=lv1il0s class=facepile-item-coin>
<img class="facepile-item-coin-image durable-image" aria-hidden=true src=data:null;base64, role=presentation>
<span class="facepile-item-coin-text durable-image-fallback facepile-item-red sf-hidden" aria-hidden=true>l</span>
</a>
</li>
<li class=facepile-item>
<button aria-label="View all contributors" class=facepile-item-more title="View all contributors">
<div class=facepile-item-coin aria-hidden=true>
<span class=facepile-item-coin-text aria-hidden=true>
+18
</span>
</div>
</button>
</li>
</ul>
</li>
</ul>
<nav id=center-doc-outline class="doc-outline is-hidden-desktop sf-hidden" data-bi-name="intopic toc" role=navigation aria-label="Article Outline">
</nav>
<p>If you have any I/O-bound needs (such as requesting data from a network, accessing a database, or reading and writing to a file system), you'll want to utilize asynchronous programming. You could also have CPU-bound code, such as performing an expensive calculation, which is also a good scenario for writing async code.</p>
<p>C# has a language-level asynchronous programming model, which allows for easily writing asynchronous code without having to juggle callbacks or conform to a library that supports asynchrony. It follows what is known as the <a href=https://docs.microsoft.com/en-us/dotnet/standard/asynchronous-programming-patterns/task-based-asynchronous-pattern-tap data-linktype=relative-path>Task-based Asynchronous Pattern (TAP)</a>.</p>
<h2 id=overview-of-the-asynchronous-model class=heading-anchor><a class="anchor-link docon docon-link" href=#overview-of-the-asynchronous-model aria-labelledby=overview-of-the-asynchronous-model></a>Overview of the asynchronous model</h2>
<p>The core of async programming is the <code>Task</code> and <code>Task<T></code> objects, which model asynchronous operations. They are supported by the <code>async</code> and <code>await</code> keywords. The model is fairly simple in most cases:</p>
<ul>
<li>For I/O-bound code, you await an operation that returns a <code>Task</code> or <code>Task<T></code> inside of an <code>async</code> method.</li>
<li>For CPU-bound code, you await an operation that is started on a background thread with the <a href=https://docs.microsoft.com/en-us/dotnet/api/system.threading.tasks.task.run data-linktype=absolute-path>Task.Run</a> method.</li>
</ul>
<p>The <code>await</code> keyword is where the magic happens. It yields control to the caller of the method that performed <code>await</code>, and it ultimately allows a UI to be responsive or a service to be elastic. While <a href=https://docs.microsoft.com/en-us/dotnet/standard/asynchronous-programming-patterns/task-based-asynchronous-pattern-tap data-linktype=relative-path>there are ways</a> to approach async code other than <code>async</code> and <code>await</code>, this article focuses on the language-level constructs.</p>
<h3 id=io-bound-example-download-data-from-a-web-service class=heading-anchor><a class="anchor-link docon docon-link" href=#io-bound-example-download-data-from-a-web-service aria-labelledby=io-bound-example-download-data-from-a-web-service></a>I/O-bound example: Download data from a web service</h3>
<p>You may need to download some data from a web service when a button is pressed but don't want to block the UI thread. It can be accomplished like this:</p>
<div class=codeHeader id=code-try-0 data-bi-name=code-header><span class=language>C#</span><button type=button class="action position-relative" data-bi-name=copy aria-label="Copy code">
<span class=icon>
<span class="docon docon-edit-copy" role=presentation></span>
</span>
<span>Copy</span>
<div class="successful-copy-alert position-absolute right-0 top-0 left-0 bottom-0 display-flex align-items-center justify-content-center has-text-success-invert has-background-success is-transparent" aria-hidden=true>
<span class="icon font-size-l">
<span class="docon docon-check-mark" role=presentation></span>
</span>
</div>
</button></div><pre tabindex=0 class=has-inner-focus><code class=lang-csharp data-author-content="private readonly HttpClient _httpClient = new HttpClient();
downloadButton.Clicked += async (o, e) =>
{
// This line will yield control to the UI as the request
// from the web service is happening.
//
// The UI thread is now free to perform other work.
var stringData = await _httpClient.GetStringAsync(URL);
DoSomethingWithData(stringData);
};
"><span><span class=hljs-keyword>private</span> <span class=hljs-keyword>readonly</span> HttpClient _httpClient = <span class=hljs-keyword>new</span> HttpClient();
downloadButton.Clicked += <span class=hljs-keyword>async</span> (o, e) =>
{
<span class=hljs-comment>// This line will yield control to the UI as the request</span>
<span class=hljs-comment>// from the web service is happening.</span>
<span class=hljs-comment>//</span>
<span class=hljs-comment>// The UI thread is now free to perform other work.</span>
<span class=hljs-keyword>var</span> stringData = <span class=hljs-keyword>await</span> _httpClient.GetStringAsync(URL);
DoSomethingWithData(stringData);
};
</span></code></pre>
<p>The code expresses the intent (downloading data asynchronously) without getting bogged down in interacting with <code>Task</code> objects.</p>
<h3 id=cpu-bound-example-perform-a-calculation-for-a-game class=heading-anchor><a class="anchor-link docon docon-link" href=#cpu-bound-example-perform-a-calculation-for-a-game aria-labelledby=cpu-bound-example-perform-a-calculation-for-a-game></a>CPU-bound example: Perform a calculation for a game</h3>
<p>Say you're writing a mobile game where pressing a button can inflict damage on many enemies on the screen. Performing the damage calculation can be expensive, and doing it on the UI thread would make the game appear to pause as the calculation is performed!</p>
<p>The best way to handle this is to start a background thread, which does the work using <code>Task.Run</code>, and await its result using <code>await</code>. This allows the UI to feel smooth as the work is being done.</p>
<div class=codeHeader id=code-try-1 data-bi-name=code-header><span class=language>C#</span><button type=button class="action position-relative" data-bi-name=copy aria-label="Copy code">
<span class=icon>
<span class="docon docon-edit-copy" role=presentation></span>
</span>
<span>Copy</span>
<div class="successful-copy-alert position-absolute right-0 top-0 left-0 bottom-0 display-flex align-items-center justify-content-center has-text-success-invert has-background-success is-transparent" aria-hidden=true>
<span class="icon font-size-l">
<span class="docon docon-check-mark" role=presentation></span>
</span>
</div>
</button></div><pre tabindex=0 class=has-inner-focus><code class=lang-csharp data-author-content="private DamageResult CalculateDamageDone()
{
// Code omitted:
//
// Does an expensive calculation and returns
// the result of that calculation.
}
calculateButton.Clicked += async (o, e) =>
{
// This line will yield control to the UI while CalculateDamageDone()
// performs its work. The UI thread is free to perform other work.
var damageResult = await Task.Run(() => CalculateDamageDone());
DisplayDamage(damageResult);
};
"><span><span class=hljs-function><span class=hljs-keyword>private</span> DamageResult <span class=hljs-title>CalculateDamageDone</span>(<span class=hljs-params></span>)</span>
{
<span class=hljs-comment>// Code omitted:</span>
<span class=hljs-comment>//</span>
<span class=hljs-comment>// Does an expensive calculation and returns</span>
<span class=hljs-comment>// the result of that calculation.</span>
}
calculateButton.Clicked += <span class=hljs-keyword>async</span> (o, e) =>
{
<span class=hljs-comment>// This line will yield control to the UI while CalculateDamageDone()</span>
<span class=hljs-comment>// performs its work. The UI thread is free to perform other work.</span>
<span class=hljs-keyword>var</span> damageResult = <span class=hljs-keyword>await</span> Task.Run(() => CalculateDamageDone());
DisplayDamage(damageResult);
};
</span></code></pre>
<p>This code clearly expresses the intent of the button's click event, it doesn't require managing a background thread manually, and it does so in a non-blocking way.</p>
<h3 id=what-happens-under-the-covers class=heading-anchor><a class="anchor-link docon docon-link" href=#what-happens-under-the-covers aria-labelledby=what-happens-under-the-covers></a>What happens under the covers</h3>
<p>There are many moving pieces where asynchronous operations are concerned. If you're curious about what's happening underneath the covers of <code>Task</code> and <code>Task<T></code>, see the <a href=https://docs.microsoft.com/en-us/dotnet/standard/async-in-depth data-linktype=relative-path>Async in-depth</a> article for more information.</p>
<p>On the C# side of things, the compiler transforms your code into a state machine that keeps track of things like yielding execution when an <code>await</code> is reached and resuming execution when a background job has finished.</p>
<p>For the theoretically inclined, this is an implementation of the <a href=https://en.wikipedia.org/wiki/Futures_and_promises data-linktype=external>Promise Model of asynchrony</a>.</p>
<h2 id=key-pieces-to-understand class=heading-anchor><a class="anchor-link docon docon-link" href=#key-pieces-to-understand aria-labelledby=key-pieces-to-understand></a>Key pieces to understand</h2>
<ul>
<li>Async code can be used for both I/O-bound and CPU-bound code, but differently for each scenario.</li>
<li>Async code uses <code>Task<T></code> and <code>Task</code>, which are constructs used to model work being done in the background.</li>
<li>The <code>async</code> keyword turns a method into an async method, which allows you to use the <code>await</code> keyword in its body.</li>
<li>When the <code>await</code> keyword is applied, it suspends the calling method and yields control back to its caller until the awaited task is complete.</li>
<li><code>await</code> can only be used inside an async method.</li>
</ul>
<h2 id=recognize-cpu-bound-and-io-bound-work class=heading-anchor><a class="anchor-link docon docon-link" href=#recognize-cpu-bound-and-io-bound-work aria-labelledby=recognize-cpu-bound-and-io-bound-work></a>Recognize CPU-bound and I/O-bound work</h2>
<p>The first two examples of this guide showed how you could use <code>async</code> and <code>await</code> for I/O-bound and CPU-bound work. It's key that you can identify when a job you need to do is I/O-bound or CPU-bound because it can greatly affect the performance of your code and could potentially lead to misusing certain constructs.</p>
<p>Here are two questions you should ask before you write any code:</p>
<ol>
<li><p>Will your code be "waiting" for something, such as data from a database?</p>
<p>If your answer is "yes", then your work is <strong>I/O-bound</strong>.</p>
</li>
<li><p>Will your code be performing an expensive computation?</p>
<p>If you answered "yes", then your work is <strong>CPU-bound</strong>.</p>
</li>
</ol>
<p>If the work you have is <strong>I/O-bound</strong>, use <code>async</code> and <code>await</code> <em>without</em> <code>Task.Run</code>. You <em>should not</em> use the Task Parallel Library. The reason for this is outlined in <a href=https://docs.microsoft.com/en-us/dotnet/standard/async-in-depth data-linktype=relative-path>Async in Depth</a>.</p>
<p>If the work you have is <strong>CPU-bound</strong> and you care about responsiveness, use <code>async</code> and <code>await</code>, but spawn off the work on another thread <em>with</em> <code>Task.Run</code>. If the work is appropriate for concurrency and parallelism, also consider using the <a href=https://docs.microsoft.com/en-us/dotnet/standard/parallel-programming/task-parallel-library-tpl data-linktype=relative-path>Task Parallel Library</a>.</p>
<p>Additionally, you should always measure the execution of your code. For example, you may find yourself in a situation where your CPU-bound work is not costly enough compared with the overhead of context switches when multithreading. Every choice has its tradeoff, and you should pick the correct tradeoff for your situation.</p>
<h2 id=more-examples class=heading-anchor><a class="anchor-link docon docon-link" href=#more-examples aria-labelledby=more-examples></a>More examples</h2>
<p>The following examples demonstrate various ways you can write async code in C#. They cover a few different scenarios you may come across.</p>
<h3 id=extract-data-from-a-network class=heading-anchor><a class="anchor-link docon docon-link" href=#extract-data-from-a-network aria-labelledby=extract-data-from-a-network></a>Extract data from a network</h3>
<p>This snippet downloads the HTML from the homepage at <a href=https://dotnetfoundation.org/ data-linktype=external>https://dotnetfoundation.org</a> and counts the number of times the string ".NET" occurs in the HTML. It uses ASP.NET to define a Web API controller method, which performs this task and returns the number.</p>
<div class="alert is-info">
<p class=alert-title><span class="docon docon-status-error-outline" aria-hidden=true></span> Note</p>
<p>If you plan on doing HTML parsing in production code, don't use regular expressions. Use a parsing library instead.</p>
</div>
<div class=codeHeader id=code-try-2 data-bi-name=code-header><span class=language>C#</span><button type=button class="action position-relative" data-bi-name=copy aria-label="Copy code">
<span class=icon>
<span class="docon docon-edit-copy" role=presentation></span>
</span>
<span>Copy</span>
<div class="successful-copy-alert position-absolute right-0 top-0 left-0 bottom-0 display-flex align-items-center justify-content-center has-text-success-invert has-background-success is-transparent" aria-hidden=true>
<span class="icon font-size-l">
<span class="docon docon-check-mark" role=presentation></span>
</span>
</div>
</button></div><pre tabindex=0 class=has-inner-focus><code class=lang-csharp data-author-content='private readonly HttpClient _httpClient = new HttpClient();
[HttpGet, Route("DotNetCount")]
public async Task<int> GetDotNetCount()
{
// Suspends GetDotNetCount() to allow the caller (the web server)
// to accept another request, rather than blocking on this one.
var html = await _httpClient.GetStringAsync("https://dotnetfoundation.org");
return Regex.Matches(html, @"\.NET").Count;
}
'><span><span class=hljs-keyword>private</span> <span class=hljs-keyword>readonly</span> HttpClient _httpClient = <span class=hljs-keyword>new</span> HttpClient();
[<span class=hljs-meta>HttpGet, Route(<span class=hljs-string>"DotNetCount"</span>)</span>]
<span class=hljs-function><span class=hljs-keyword>public</span> <span class=hljs-keyword>async</span> Task<<span class=hljs-built_in>int</span>> <span class=hljs-title>GetDotNetCount</span>(<span class=hljs-params></span>)</span>
{
<span class=hljs-comment>// Suspends GetDotNetCount() to allow the caller (the web server)</span>
<span class=hljs-comment>// to accept another request, rather than blocking on this one.</span>
<span class=hljs-keyword>var</span> html = <span class=hljs-keyword>await</span> _httpClient.GetStringAsync(<span class=hljs-string>"https://dotnetfoundation.org"</span>);
<span class=hljs-keyword>return</span> Regex.Matches(html, <span class=hljs-string>@"\.NET"</span>).Count;
}
</span></code></pre>
<p>Here's the same scenario written for a Universal Windows App, which performs the same task when a Button is pressed:</p>
<div class=codeHeader id=code-try-3 data-bi-name=code-header><span class=language>C#</span><button type=button class="action position-relative" data-bi-name=copy aria-label="Copy code">
<span class=icon>
<span class="docon docon-edit-copy" role=presentation></span>
</span>
<span>Copy</span>
<div class="successful-copy-alert position-absolute right-0 top-0 left-0 bottom-0 display-flex align-items-center justify-content-center has-text-success-invert has-background-success is-transparent" aria-hidden=true>
<span class="icon font-size-l">
<span class="docon docon-check-mark" role=presentation></span>
</span>
</div>
</button></div><pre tabindex=0 class=has-inner-focus><code class=lang-csharp data-author-content='private readonly HttpClient _httpClient = new HttpClient();
private async void OnSeeTheDotNetsButtonClick(object sender, RoutedEventArgs e)
{
// Capture the task handle here so we can await the background task later.
var getDotNetFoundationHtmlTask = _httpClient.GetStringAsync("https://dotnetfoundation.org");
// Any other work on the UI thread can be done here, such as enabling a Progress Bar.
// This is important to do here, before the "await" call, so that the user
// sees the progress bar before execution of this method is yielded.
NetworkProgressBar.IsEnabled = true;
NetworkProgressBar.Visibility = Visibility.Visible;
// The await operator suspends OnSeeTheDotNetsButtonClick(), returning control to its caller.
// This is what allows the app to be responsive and not block the UI thread.
var html = await getDotNetFoundationHtmlTask;
int count = Regex.Matches(html, @"\.NET").Count;
DotNetCountLabel.Text = $"Number of .NETs on dotnetfoundation.org: {count}";
NetworkProgressBar.IsEnabled = false;
NetworkProgressBar.Visibility = Visibility.Collapsed;
}
'><span><span class=hljs-keyword>private</span> <span class=hljs-keyword>readonly</span> HttpClient _httpClient = <span class=hljs-keyword>new</span> HttpClient();
<span class=hljs-function><span class=hljs-keyword>private</span> <span class=hljs-keyword>async</span> <span class=hljs-keyword>void</span> <span class=hljs-title>OnSeeTheDotNetsButtonClick</span>(<span class=hljs-params><span class=hljs-built_in>object</span> sender, RoutedEventArgs e</span>)</span>
{
<span class=hljs-comment>// Capture the task handle here so we can await the background task later.</span>
<span class=hljs-keyword>var</span> getDotNetFoundationHtmlTask = _httpClient.GetStringAsync(<span class=hljs-string>"https://dotnetfoundation.org"</span>);
<span class=hljs-comment>// Any other work on the UI thread can be done here, such as enabling a Progress Bar.</span>
<span class=hljs-comment>// This is important to do here, before the "await" call, so that the user</span>
<span class=hljs-comment>// sees the progress bar before execution of this method is yielded.</span>
NetworkProgressBar.IsEnabled = <span class=hljs-literal>true</span>;
NetworkProgressBar.Visibility = Visibility.Visible;
<span class=hljs-comment>// The await operator suspends OnSeeTheDotNetsButtonClick(), returning control to its caller.</span>
<span class=hljs-comment>// This is what allows the app to be responsive and not block the UI thread.</span>
<span class=hljs-keyword>var</span> html = <span class=hljs-keyword>await</span> getDotNetFoundationHtmlTask;
<span class=hljs-built_in>int</span> count = Regex.Matches(html, <span class=hljs-string>@"\.NET"</span>).Count;
DotNetCountLabel.Text = <span class=hljs-string>$"Number of .NETs on dotnetfoundation.org: <span class=hljs-subst>{count}</span>"</span>;
NetworkProgressBar.IsEnabled = <span class=hljs-literal>false</span>;
NetworkProgressBar.Visibility = Visibility.Collapsed;
}
</span></code></pre>
<h3 id=wait-for-multiple-tasks-to-complete class=heading-anchor><a class="anchor-link docon docon-link" href=#wait-for-multiple-tasks-to-complete aria-labelledby=wait-for-multiple-tasks-to-complete></a>Wait for multiple tasks to complete</h3>
<p>You may find yourself in a situation where you need to retrieve multiple pieces of data concurrently. The <code>Task</code> API contains two methods, <a href=https://docs.microsoft.com/en-us/dotnet/api/system.threading.tasks.task.whenall data-linktype=absolute-path>Task.WhenAll</a> and <a href=https://docs.microsoft.com/en-us/dotnet/api/system.threading.tasks.task.whenany data-linktype=absolute-path>Task.WhenAny</a>, that allow you to write asynchronous code that performs a non-blocking wait on multiple background jobs.</p>
<p>This example shows how you might grab <code>User</code> data for a set of <code>userId</code>s.</p>
<div class=codeHeader id=code-try-4 data-bi-name=code-header><span class=language>C#</span><button type=button class="action position-relative" data-bi-name=copy aria-label="Copy code">
<span class=icon>
<span class="docon docon-edit-copy" role=presentation></span>
</span>
<span>Copy</span>
<div class="successful-copy-alert position-absolute right-0 top-0 left-0 bottom-0 display-flex align-items-center justify-content-center has-text-success-invert has-background-success is-transparent" aria-hidden=true>
<span class="icon font-size-l">
<span class="docon docon-check-mark" role=presentation></span>
</span>
</div>
</button></div><pre tabindex=0 class=has-inner-focus><code class=lang-csharp data-author-content="public async Task<User> GetUserAsync(int userId)
{
// Code omitted:
//
// Given a user Id {userId}, retrieves a User object corresponding
// to the entry in the database with {userId} as its Id.
}
public static async Task<IEnumerable<User>> GetUsersAsync(IEnumerable<int> userIds)
{
var getUserTasks = new List<Task<User>>();
foreach (int userId in userIds)
{
getUserTasks.Add(GetUserAsync(userId));
}
return await Task.WhenAll(getUserTasks);
}
"><span><span class=hljs-function><span class=hljs-keyword>public</span> <span class=hljs-keyword>async</span> Task<User> <span class=hljs-title>GetUserAsync</span>(<span class=hljs-params><span class=hljs-built_in>int</span> userId</span>)</span>
{
<span class=hljs-comment>// Code omitted:</span>
<span class=hljs-comment>//</span>
<span class=hljs-comment>// Given a user Id {userId}, retrieves a User object corresponding</span>
<span class=hljs-comment>// to the entry in the database with {userId} as its Id.</span>
}
<span class=hljs-keyword>public</span> <span class=hljs-keyword>static</span> <span class=hljs-keyword>async</span> Task<IEnumerable<User>> GetUsersAsync(IEnumerable<<span class=hljs-built_in>int</span>> userIds)
{
<span class=hljs-keyword>var</span> getUserTasks = <span class=hljs-keyword>new</span> List<Task<User>>();
<span class=hljs-keyword>foreach</span> (<span class=hljs-built_in>int</span> userId <span class=hljs-keyword>in</span> userIds)
{
getUserTasks.Add(GetUserAsync(userId));
}
<span class=hljs-keyword>return</span> <span class=hljs-keyword>await</span> Task.WhenAll(getUserTasks);
}
</span></code></pre>
<p>Here's another way to write this more succinctly, using LINQ:</p>
<div class=codeHeader id=code-try-5 data-bi-name=code-header><span class=language>C#</span><button type=button class="action position-relative" data-bi-name=copy aria-label="Copy code">
<span class=icon>
<span class="docon docon-edit-copy" role=presentation></span>
</span>
<span>Copy</span>
<div class="successful-copy-alert position-absolute right-0 top-0 left-0 bottom-0 display-flex align-items-center justify-content-center has-text-success-invert has-background-success is-transparent" aria-hidden=true>
<span class="icon font-size-l">
<span class="docon docon-check-mark" role=presentation></span>
</span>
</div>
</button></div><pre tabindex=0 class=has-inner-focus><code class=lang-csharp data-author-content="public async Task<User> GetUserAsync(int userId)
{
// Code omitted:
//
// Given a user Id {userId}, retrieves a User object corresponding
// to the entry in the database with {userId} as its Id.
}
public static async Task<User[]> GetUsersAsync(IEnumerable<int> userIds)
{
var getUserTasks = userIds.Select(id => GetUserAsync(id));
return await Task.WhenAll(getUserTasks);
}
"><span><span class=hljs-function><span class=hljs-keyword>public</span> <span class=hljs-keyword>async</span> Task<User> <span class=hljs-title>GetUserAsync</span>(<span class=hljs-params><span class=hljs-built_in>int</span> userId</span>)</span>
{
<span class=hljs-comment>// Code omitted:</span>
<span class=hljs-comment>//</span>
<span class=hljs-comment>// Given a user Id {userId}, retrieves a User object corresponding</span>
<span class=hljs-comment>// to the entry in the database with {userId} as its Id.</span>
}
<span class=hljs-keyword>public</span> <span class=hljs-keyword>static</span> <span class=hljs-keyword>async</span> Task<User[]> GetUsersAsync(IEnumerable<<span class=hljs-built_in>int</span>> userIds)
{
<span class=hljs-keyword>var</span> getUserTasks = userIds.Select(id => GetUserAsync(id));
<span class=hljs-keyword>return</span> <span class=hljs-keyword>await</span> Task.WhenAll(getUserTasks);
}
</span></code></pre>
<p>Although it's less code, use caution when mixing LINQ with asynchronous code. Because LINQ uses deferred (lazy) execution, async calls won't happen immediately as they do in a <code>foreach</code> loop unless you force the generated sequence to iterate with a call to <code>.ToList()</code> or <code>.ToArray()</code>.</p>
<h2 id=important-info-and-advice class=heading-anchor><a class="anchor-link docon docon-link" href=#important-info-and-advice aria-labelledby=important-info-and-advice></a>Important info and advice</h2>
<p>With async programming, there are some details to keep in mind that can prevent unexpected behavior.</p>
<ul>
<li><p><code>async</code> <strong>methods need to have an</strong> <code>await</code> <strong>keyword in their body or they will never yield!</strong></p>
<p>This is important to keep in mind. If <code>await</code> is not used in the body of an <code>async</code> method, the C# compiler generates a warning, but the code compiles and runs as if it were a normal method. This is incredibly inefficient, as the state machine generated by the C# compiler for the async method is not accomplishing anything.</p>
</li>
<li><p><strong>Add "Async" as the suffix of every async method name you write.</strong></p>
<p>This is the convention used in .NET to more easily differentiate synchronous and asynchronous methods. Certain methods that aren't explicitly called by your code (such as event handlers or web controller methods) don't necessarily apply. Because they are not explicitly called by your code, being explicit about their naming isn't as important.</p>
</li>
<li><p><code>async void</code> <strong>should only be used for event handlers.</strong></p>
<p><code>async void</code> is the only way to allow asynchronous event handlers to work because events do not have return types (thus cannot make use of <code>Task</code> and <code>Task<T></code>). Any other use of <code>async void</code> does not follow the TAP model and can be challenging to use, such as:</p>
<ul>
<li>Exceptions thrown in an <code>async void</code> method can't be caught outside of that method.</li>
<li><code>async void</code> methods are difficult to test.</li>
<li><code>async void</code> methods can cause bad side effects if the caller isn't expecting them to be async.</li>
</ul>
</li>
<li><p><strong>Tread carefully when using async lambdas in LINQ expressions</strong></p>
<p>Lambda expressions in LINQ use deferred execution, meaning code could end up executing at a time when you're not expecting it to. The introduction of blocking tasks into this can easily result in a deadlock if not written correctly. Additionally, the nesting of asynchronous code like this can also make it more difficult to reason about the execution of the code. Async and LINQ are powerful but should be used together as carefully and clearly as possible.</p>
</li>
<li><p><strong>Write code that awaits Tasks in a non-blocking manner</strong></p>
<p>Blocking the current thread as a means to wait for a <code>Task</code> to complete can result in deadlocks and blocked context threads and can require more complex error-handling. The following table provides guidance on how to deal with waiting for tasks in a non-blocking way:</p>
<div class=table-scroll-wrapper><table class=table><caption class=visually-hidden>Table 1</caption>
<thead>
<tr>
<th>Use this...</th>
<th>Instead of this...</th>
<th>When wishing to do this...</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>await</code></td>
<td><code>Task.Wait</code> or <code>Task.Result</code></td>
<td>Retrieving the result of a background task</td>
</tr>
<tr>
<td><code>await Task.WhenAny</code></td>
<td><code>Task.WaitAny</code></td>
<td>Waiting for any task to complete</td>
</tr>
<tr>
<td><code>await Task.WhenAll</code></td>
<td><code>Task.WaitAll</code></td>
<td>Waiting for all tasks to complete</td>
</tr>
<tr>
<td><code>await Task.Delay</code></td>
<td><code>Thread.Sleep</code></td>
<td>Waiting for a period of time</td>
</tr>
</tbody>
</table></div>
</li>
<li><p><strong>Consider using</strong> <code>ValueTask</code> <strong>where possible</strong></p>
<p>Returning a <code>Task</code> object from async methods can introduce performance bottlenecks in certain paths. <code>Task</code> is a reference type, so using it means allocating an object. In cases where a method declared with the <code>async</code> modifier returns a cached result or completes synchronously, the extra allocations can become a significant time cost in performance critical sections of code. It can become costly if those allocations occur in tight loops. For more information, see <a href=https://docs.microsoft.com/en-us/dotnet/csharp/whats-new/csharp-7#generalized-async-return-types data-linktype=relative-path>generalized async return types</a>.</p>
</li>
<li><p><strong>Consider using</strong> <code>ConfigureAwait(false)</code></p>
<p>A common question is, "when should I use the <a href=https://docs.microsoft.com/en-us/dotnet/api/system.threading.tasks.task.configureawait#System_Threading_Tasks_Task_ConfigureAwait_System_Boolean_ data-linktype=absolute-path>Task.ConfigureAwait(Boolean)</a> method?". The method allows for a <code>Task</code> instance to configure its awaiter. This is an important consideration and setting it incorrectly could potentially have performance implications and even deadlocks. For more information on <code>ConfigureAwait</code>, see the <a href=https://devblogs.microsoft.com/dotnet/configureawait-faq data-linktype=external>ConfigureAwait FAQ</a>.</p>
</li>
<li><p><strong>Write less stateful code</strong></p>
<p>Don't depend on the state of global objects or the execution of certain methods. Instead, depend only on the return values of methods. Why?</p>
<ul>
<li>Code will be easier to reason about.</li>
<li>Code will be easier to test.</li>
<li>Mixing async and synchronous code is far simpler.</li>
<li>Race conditions can typically be avoided altogether.</li>
<li>Depending on return values makes coordinating async code simple.</li>
<li>(Bonus) it works really well with dependency injection.</li>
</ul>
</li>
</ul>
<p>A recommended goal is to achieve complete or near-complete <a href=https://en.wikipedia.org/wiki/Referential_transparency_%28computer_science%29 data-linktype=external>Referential Transparency</a> in your code. Doing so will result in a predictable, testable, and maintainable codebase.</p>
<h2 id=other-resources class=heading-anchor><a class="anchor-link docon docon-link" href=#other-resources aria-labelledby=other-resources></a>Other resources</h2>
<ul>
<li><a href=https://docs.microsoft.com/en-us/dotnet/standard/async-in-depth data-linktype=relative-path>Async in-depth</a> provides more information about how Tasks work.</li>
<li><a href=https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/concepts/async/task-asynchronous-programming-model data-linktype=relative-path>The Task asynchronous programming model (C#)</a>.</li>
<li>Lucian Wischik's <a href=https://channel9.msdn.com/Series/Three-Essential-Tips-for-Async data-linktype=external>Six Essential Tips for Async</a> is a wonderful resource for async programming.</li>
</ul>
</main>
<div class="is-hidden-desktop border-top has-margin-top-large has-padding-top-large binary-rating-holder sf-hidden">
</div>
<section id=recommendations-section data-bi-name=recommendations>
<hr class=hr>
<h2 class="title is-3 has-margin-top-large">Recommended content</h2>
<ul id=recommendations-list aria-live=polite aria-relevant=additions aria-label="recommendations list" class=has-margin-bottom-large>
<li class=margin-top-xs>
<article class=card>
<div class=card-content>
<a class="card-content-title stretched-link" href=https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/concepts/async/ data-bi-name=recommendation-item-0>
<h3>Asynchronous programming in C#</h3>
</a>
<p class="card-content-description has-three-lines">
An overview of the C# language support for asynchronous programming using async, await, Task, and Task
</p>
</div>
</article>
</li>
<li class=margin-top-xs>
<article class=card>
<div class=card-content>
<a class="card-content-title stretched-link" href=https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/concepts/async/task-asynchronous-programming-model data-bi-name=recommendation-item-1>
<h3>The Task Asynchronous Programming (TAP) model with async and await (C#)"</h3>
</a>
<p class="card-content-description has-three-lines">
Learn when and how to use Task-based async programming, a simplified approach to asynchronous programming in C#.
</p>
</div>
</article>
</li>
<li class=margin-top-xs>
<article class=card>
<div class=card-content>
<a class="card-content-title stretched-link" href=https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/concepts/async/start-multiple-async-tasks-and-process-them-as-they-complete data-bi-name=recommendation-item-2>
<h3>Process asynchronous tasks as they complete</h3>
</a>
<p class="card-content-description has-three-lines">
This example shows how to use Task.WhenAny in C# to start multiple tasks and process their results as they finish, rather than process them in the order started.
</p>
</div>
</article>
</li>
<li class=margin-top-xs>
<article class=card>
<div class=card-content>
<a class="card-content-title stretched-link" href=https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/async data-bi-name=recommendation-item-3>
<h3>async - C# Reference</h3>
</a>
<p class="card-content-description has-three-lines">
async - C# Reference
</p>
</div>
</article>
</li>
<li class="margin-top-xs expandable sf-hidden">
</li>
<li class="margin-top-xs expandable sf-hidden">
</li>
<li class="margin-top-xs expandable sf-hidden">
</li>
<li class="margin-top-xs expandable sf-hidden">
</li>
</ul>
<div class="buttons is-centered has-background-linethrough">
<button aria-expanded=false data-show-more data-bi-name=show-more-btn class="button is-small has-margin-bottom-none show-more-button" aria-controls=recommendations-list>
<span class=show-more-text>Show more</span>
<span class=icon aria-hidden=true>
<span class="expanded-indicator docon docon-chevron-down-light"></span>
</span>
</button>
</div>
</section>
<section class="feedback-section position-relative" data-bi-name=feedback-section>
<h2 id=feedback class="title is-3 has-margin-top-large">Feedback</h2>
<div class="alert choose-feedback-type">
<p aria-hidden=true id=send-feedback-about>Submit and view feedback for</p>
<div class="choose-feedback-buttons margin-top-xs">
<a class="button has-external-link-indicator feedback-type-product has-margin-bottom-small" aria-label="Send feedback about this product" href="https://aka.ms/feedback/report?space=61" data-bi-name=product-feedback>
<span>This product</span>
</a>
<a class="button feedback-type-product has-margin-bottom-small github-link" aria-label="Send feedback about this page" data-bi-name=create-issue-on-github href="https://github.com/dotnet/docs/issues/new?title=&body=%0A%0A%5BEnter%20feedback%20here%5D%0A%0A%0A---%0A%23%23%23%23%20Document%20Details%0A%0A%E2%9A%A0%20*Do%20not%20edit%20this%20section.%20It%20is%20required%20for%20docs.microsoft.com%20%E2%9E%9F%20GitHub%20issue%20linking.*%0A%0A*%20ID%3A%2007ed82a3-99c1-0893-4e81-d095b4757ecc%0A*%20Version%20Independent%20ID%3A%203765200b-43e5-441c-b290-709c34dd2f6d%0A*%20Content%3A%20%5BAsynchronous%20programming%20-%20C%23%5D(https%3A%2F%2Fdocs.microsoft.com%2Fen-us%2Fdotnet%2Fcsharp%2Fasync)%0A*%20Content%20Source%3A%20%5Bdocs%2Fcsharp%2Fasync.md%5D(https%3A%2F%2Fgithub.com%2Fdotnet%2Fdocs%2Fblob%2Fmain%2Fdocs%2Fcsharp%2Fasync.md)%0A*%20Product%3A%20**dotnet-csharp**%0A*%20Technology%3A%20**csharp-async**%0A*%20GitHub%20Login%3A%20%40cartermp%0A*%20Microsoft%20Alias%3A%20**wiwagn**">
<span aria-hidden=true class="docon docon-brand-github has-padding-right-extra-small"></span>
<span>This page</span>
</a>
</div>
</div>
<div class="action-container display-flex justify-content-flex-end has-margin-top-small has-margin-bottom-small">
<a class="view-on-github has-external-link-indicator" data-bi-name=view-on-github href="https://github.com/dotnet/docs/issues?utf8=%E2%9C%93&q=%223765200b-43e5-441c-b290-709c34dd2f6d%22&in=body">
<span aria-hidden=true class="docon docon-brand-github"></span>
<span>View all page feedback</span>
</a>
</div>
</section>
<div class="border-top is-visible-interactive has-default-focus has-margin-top-large sf-hidden">
</div>
</div>
<div class="font-size-s right-container column is-one-quarter is-one-fifth-desktop is-hidden-mobile is-hidden-tablet-only" data-bi-name=pageactions role=complementary aria-label="Page Actions">
<div id=affixed-right-container class="doc-outline position-fixed is-vertically-scrollable" style=width:199.2px;top:164.5px;bottom:24px>
<div class="feedback-verbatim border-bottom has-padding-bottom-small has-margin-bottom-small" data-bi-name=rating>
<div class=binary-rating>
<div class=binary-rating-buttons>
<h3 class="font-weight-semibold has-margin-top-none has-margin-bottom-small">Is this page helpful?</h3>
<div>
<button class="thumb-rating like has-inner-focus" title=Yes data-bi-name=rating-yes aria-expanded=false data-bi-sat=1 aria-controls=rating-container-mobile>
<span aria-hidden=true class="icon docon docon-like"></span>
<span>Yes</span>
</button>
<button class="thumb-rating dislike has-inner-focus" title=No data-bi-name=rating-no data-bi-sat=0 aria-expanded=false aria-controls=rating-container-mobile>
<span aria-hidden=true class="icon docon docon-dislike"></span>
<span>No</span>
</button>
</div>
</div>
<form class="feedback-verbatim-form is-hidden sf-hidden" id=rating-container-mobile>
</form>
</div>
<div class="thankyou-rating is-hidden sf-hidden" tabindex=-1>
</div>
</div> <nav id=side-doc-outline data-bi-name="intopic toc" role=navigation aria-label="Article Outline">
<h3>In this article</h3>
<ol><li class=selected><a href=#overview-of-the-asynchronous-model>Overview of the asynchronous model</a><li><a href=#key-pieces-to-understand>Key pieces to understand</a><li><a href=#recognize-cpu-bound-and-io-bound-work>Recognize CPU-bound and I/O-bound work</a><li><a href=#more-examples>More examples</a><li><a href=#important-info-and-advice>Important info and advice</a><li><a href=#other-resources>Other resources</a></ol></nav>
</div>
</div>
</div>
</section>
<aside id=interactive-container class="interactive-container is-visible-interactive column has-body-background-dark sf-hidden">
</aside>
</div>
</div>
<section class="border-top has-default-focus is-hidden-interactive has-margin-top-large">
<footer id=footer data-bi-name=footer class="footer-layout uhf-container has-padding" role=contentinfo>
<div class="display-flex is-full-height has-padding-right-extra-large-desktop">
<a data-mscc-ic=false class="locale-selector-link flex-shrink-0" href="https://docs.microsoft.com/en-us/locale?target=https://docs.microsoft.com/en-us/dotnet/csharp/async" data-bi-name=select-locale><span class="icon docon docon-world font-size-l has-margin-right-small" aria-hidden=true></span><span class=local-selector-link-text>English (United States)</span></a>
<div class="margin-inline-xs flex-shrink-0">
<div class="dropdown has-caret-up">
<button class="dropdown-trigger button is-transparent is-small is-icon-only-touch has-inner-focus theme-dropdown-trigger" aria-controls=theme-menu aria-expanded=false title=Theme data-bi-name=theme>
<span class=icon>
<span class="docon docon-sun" aria-hidden=true></span>
</span>
<span>Theme</span>
</button>
<div class="dropdown-menu sf-hidden" id=theme-menu role=menu>
</div>
</div> </div>
</div>
<ul class=links data-bi-name=footerlinks>
<li class="manage-cookies-holder sf-hidden" hidden></li>
<li><a data-mscc-ic=false href=https://docs.microsoft.com/en-us/previous-versions/ data-bi-name=archivelink>Previous Version Docs</a></li>
<li><a data-mscc-ic=false href=https://docs.microsoft.com/en-us/teamblog data-bi-name=bloglink>Blog</a></li>
<li><a data-mscc-ic=false href=https://docs.microsoft.com/en-us/contribute data-bi-name=contributorGuide>Contribute</a></li>
<li><a data-mscc-ic=false href="https://go.microsoft.com/fwlink/?LinkId=521839" data-bi-name=privacy>Privacy & Cookies</a></li>
<li><a data-mscc-ic=false href=https://docs.microsoft.com/en-us/legal/termsofuse data-bi-name=termsofuse>Terms of Use</a></li>
<li><a data-mscc-ic=false href=https://www.microsoft.com/en-us/legal/intellectualproperty/Trademarks/EN-US.aspx data-bi-name=trademarks>Trademarks</a></li>
<li>© Microsoft 2021</li>
</ul>
</footer>
</section>
<div id=action-panel role=region aria-label="Action Panel" class="action-panel has-default-focus sf-hidden" tabindex=-1></div>
<div class=usabilla_live_button_container role=button tabindex=0 style=top:50%;margin-top:0px;position:fixed;width:0px;height:0px;z-index:99999990;right:0px;display:none aria-label="Usabilla Feedback Button"></div> | 203.494186 | 132,864 | 0.840662 |
b5a8e91fa97fd2d2e83527adcdf85966060d5ed1 | 556 | swift | Swift | ECGmonitor/UIViewBGCextension.swift | GilsonFrias/ECGmonitor- | aff233eeb49197d7a5b19be4081219f7759d059e | [
"MIT"
] | 1 | 2020-12-14T05:26:38.000Z | 2020-12-14T05:26:38.000Z | ECGmonitor/UIViewBGCextension.swift | GilsonFrias/ECGmonitor- | aff233eeb49197d7a5b19be4081219f7759d059e | [
"MIT"
] | null | null | null | ECGmonitor/UIViewBGCextension.swift | GilsonFrias/ECGmonitor- | aff233eeb49197d7a5b19be4081219f7759d059e | [
"MIT"
] | null | null | null | //
// UIViewBGCextension.swift
// ECGmonitor
//
// Created by Gilson on 2019/11/20.
// Copyright © 2019 Gilosn Frias . All rights reserved.
// Based on the Youtube video tutorial by Sean Allen: https://www.youtube.com/watch?v=3gUNg3Jhjwo
import Foundation
import UIKit
extension UIView {
func setGradientBackground(color0:UIColor, color1:UIColor) {
let gradient = CAGradientLayer()
gradient.frame = self.bounds
gradient.colors = [color0.cgColor, color1.cgColor]
self.layer.insertSublayer(gradient, at: 0)
}
}
| 27.8 | 98 | 0.703237 |
6b7291886ab14e135dda11a8dd02b9ea0ce4c29b | 1,823 | rs | Rust | CXT/xsd10/src/model/simple_types/qname.rs | lumeohq/ez-xsd | b31f6f288e3fdd23ff16485e31c3c593eccb9289 | [
"Apache-2.0",
"MIT"
] | null | null | null | CXT/xsd10/src/model/simple_types/qname.rs | lumeohq/ez-xsd | b31f6f288e3fdd23ff16485e31c3c593eccb9289 | [
"Apache-2.0",
"MIT"
] | 12 | 2020-08-16T09:48:12.000Z | 2020-08-18T04:29:41.000Z | CXT/xsd10/src/model/simple_types/qname.rs | lumeohq/ez-xsd | b31f6f288e3fdd23ff16485e31c3c593eccb9289 | [
"Apache-2.0",
"MIT"
] | null | null | null | use std::fmt;
// xsd:QName
// The type xsd:QName represents an XML namespace-qualified name. A xsd:QName value consists of a prefix and a local part, separated by a colon, both of which are NCName values. The prefix and colon are optional, but if they are not present, it is assumed that either the name is namespace-qualified by other means (e.g., by a default namespace declaration), or the name is not in a namespace.
// Simple Type Information
// Namespace: http://www.w3.org/2001/XMLSchema
// Schema Document: datatypes.xsd
//
// Content
// Based on xsd:anySimpleType
// White Space: collapse
// Examples
// Valid values Comment
// pre:myElement valid assuming the prefix "pre" is mapped to a namespace in scope
// myElement prefix and colon are optional
// Invalid values Comment
// :myElement a QName must not start with a colon
// pre:3rdElement the local part must not start with a number; it must be a valid NCName
// an empty value is not valid, unless xsi:nil is used
//
// Type Inheritance Chain
// xsd:anySimpleType
// restricted by xsd:QName
#[derive(Default, Debug, PartialEq)]
pub struct QName<'a> {
pub prefix: Option<&'a str>,
pub name: &'a str,
}
impl<'a> QName<'a> {
pub fn new(name: &'a str) -> Self {
match name.find(':') {
Some(index) => Self {
prefix: Some(&name[0..index]),
name: &name[index + 1..],
},
None => Self { prefix: None, name },
}
}
}
impl fmt::Display for QName<'_> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
if let Some(prefix) = self.prefix {
write!(f, "{}:{}", prefix, self.name)
} else {
write!(f, "{}", self.name)
}
}
}
| 35.745098 | 393 | 0.605595 |
e9cf8a44693accd6f1b8512ef73deb8d17ee6ea3 | 3,048 | rs | Rust | service/tasks/src/worker/backend/mock.rs | replicante-io/replicante | 18b42665d8773968a650396ec6f8ca3bebd55a06 | [
"MIT"
] | 2 | 2018-03-23T13:40:20.000Z | 2021-11-03T11:36:42.000Z | service/tasks/src/worker/backend/mock.rs | replicante-io/replicante | 18b42665d8773968a650396ec6f8ca3bebd55a06 | [
"MIT"
] | null | null | null | service/tasks/src/worker/backend/mock.rs | replicante-io/replicante | 18b42665d8773968a650396ec6f8ca3bebd55a06 | [
"MIT"
] | null | null | null | use std::collections::HashMap;
use std::collections::VecDeque;
use std::sync::Arc;
use std::sync::Mutex;
use std::thread::sleep;
use std::time::Duration;
use serde::Serialize;
use super::super::TaskId;
use super::AckStrategy;
use super::Backend;
use super::Result;
use super::Task;
use super::TaskQueue;
/// Strategy to operate on mock tasks.
pub struct MockAck {
pub mock: Arc<Mutex<MockTask>>,
}
impl<Q: TaskQueue> AckStrategy<Q> for MockAck {
fn fail(&self, _task: Task<Q>) -> Result<()> {
self.mock.lock().unwrap().ack = TaskAck::Fail;
Ok(())
}
fn skip(&self, _task: Task<Q>) -> Result<()> {
self.mock.lock().unwrap().ack = TaskAck::Skipped;
Ok(())
}
fn success(&self, _task: Task<Q>) -> Result<()> {
self.mock.lock().unwrap().ack = TaskAck::Success;
Ok(())
}
}
/// Mock implementation of a tasks queue backend.
pub struct MockBackend<Q: TaskQueue> {
pub tasks: Arc<Mutex<VecDeque<TaskTemplate<Q>>>>,
}
impl<Q: TaskQueue> Backend<Q> for MockBackend<Q> {
fn poll(&self, timeout: Duration) -> Result<Option<Task<Q>>> {
// Simulate waiting for a task to arrive.
sleep(timeout / 2);
let task = self
.tasks
.lock()
.expect("mock tasks lock poisoned")
.pop_front()
.map(|t| t.task());
Ok(task)
}
fn subscribe(&mut self, _queue: &Q) -> Result<()> {
Ok(())
}
}
/// Mock tools to simulate tasks.
pub struct MockTask {
pub ack: TaskAck,
}
/// Track the acknowledgement state of a mocked task.
#[derive(Debug, Eq, PartialEq)]
pub enum TaskAck {
Fail,
NotAcked,
Skipped,
Success,
}
/// Template describing mocked tasks that can be later inspected for assertions.
pub struct TaskTemplate<Q: TaskQueue> {
headers: HashMap<String, String>,
id: TaskId,
message: Vec<u8>,
mock: Arc<Mutex<MockTask>>,
queue: Q,
retry_count: u8,
}
impl<Q: TaskQueue> TaskTemplate<Q> {
pub fn new<M>(
queue: Q,
message: M,
headers: HashMap<String, String>,
retry_count: u8,
) -> TaskTemplate<Q>
where
M: Serialize,
{
let mock = Arc::new(Mutex::new(MockTask {
ack: TaskAck::NotAcked,
}));
TaskTemplate {
headers,
id: TaskId::new(),
message: ::serde_json::to_vec(&message).expect("mock message to serialise"),
mock,
queue,
retry_count,
}
}
pub fn mock(&self) -> Arc<Mutex<MockTask>> {
Arc::clone(&self.mock)
}
pub fn task(&self) -> Task<Q> {
let ack_strategy = Arc::new(MockAck {
mock: Arc::clone(&self.mock),
});
Task {
ack_strategy,
headers: self.headers.clone(),
id: self.id.clone(),
message: self.message.clone(),
processed: false,
queue: self.queue.clone(),
retry_count: self.retry_count,
}
}
}
| 23.8125 | 88 | 0.559055 |
716e9016c78c51389c580e68b4a071ce617c9591 | 2,033 | swift | Swift | DragView/DragView/ViewController.swift | motoom/ios-apps | 443e7f7423e6bd3ac67c020c3d1926dee31f7cb0 | [
"MIT"
] | null | null | null | DragView/DragView/ViewController.swift | motoom/ios-apps | 443e7f7423e6bd3ac67c020c3d1926dee31f7cb0 | [
"MIT"
] | null | null | null | DragView/DragView/ViewController.swift | motoom/ios-apps | 443e7f7423e6bd3ac67c020c3d1926dee31f7cb0 | [
"MIT"
] | null | null | null | //
// ViewController.swift
// DragView
//
// Created by User on 2016-02-14.
// Copyright © 2016 motoom. All rights reserved.
//
import UIKit
class ViewController: UIViewController {
@IBOutlet weak var fieldView: FieldView!
@IBOutlet weak var dragView: DragView!
@IBOutlet weak var dragLabel: UILabel!
@IBOutlet var tap: UITapGestureRecognizer!
var dragging: Int? // hashValue of UITouch dragging the view
var dragoffset: CGPoint = CGPoint()
override func touchesBegan(touches: Set<UITouch>, withEvent event: UIEvent?) {
if let touch = touches.first {
if dragView == touch.view {
dragging = touch.hashValue
dragLabel.text = String(touch.hashValue)
dragoffset = touch.locationInView(dragView)
}
}
}
override func touchesMoved(touches: Set<UITouch>, withEvent event: UIEvent?) {
for touch in touches {
if touch.hashValue == dragging {
let x = touch.locationInView(fieldView).x - dragoffset.x
let y = touch.locationInView(fieldView).y - dragoffset.y
dragView.frame.origin = CGPoint(x: x, y: y)
let middle = CGPoint(x: dragView.center.x, y: dragView.center.y)
let snapped = gridsnap(middle, CGPoint(x: 2, y: 2), CGPoint(x: 30, y: 30))
fieldView.registerPoint(snapped)
fieldView.setNeedsDisplay()
}
}
}
override func touchesEnded(touches: Set<UITouch>, withEvent event: UIEvent?) {
for touch in touches {
if touch.hashValue == dragging {
dragLabel.text = ""
dragging = nil
}
}
}
override func viewDidLoad() {
super.viewDidLoad()
tap.cancelsTouchesInView = false
}
@IBAction func tapped(sender: UITapGestureRecognizer) {
fieldView.reset()
fieldView.setNeedsDisplay()
}
}
| 29.897059 | 90 | 0.580423 |
6b3b2f400f0d9ca0790f8f3d8745802feb262c26 | 3,449 | c | C | DeviceCode/Targets/OS/Toppers/hrp2/target/ev3_gcc/drivers/motor/src/motor_dri.c | Sirokujira/MicroFrameworkPK_v4_3 | a0d80b4fd8eeda6dbdb58f6f7beb4f07f7ef563e | [
"Apache-2.0"
] | null | null | null | DeviceCode/Targets/OS/Toppers/hrp2/target/ev3_gcc/drivers/motor/src/motor_dri.c | Sirokujira/MicroFrameworkPK_v4_3 | a0d80b4fd8eeda6dbdb58f6f7beb4f07f7ef563e | [
"Apache-2.0"
] | null | null | null | DeviceCode/Targets/OS/Toppers/hrp2/target/ev3_gcc/drivers/motor/src/motor_dri.c | Sirokujira/MicroFrameworkPK_v4_3 | a0d80b4fd8eeda6dbdb58f6f7beb4f07f7ef563e | [
"Apache-2.0"
] | 1 | 2019-12-05T18:59:01.000Z | 2019-12-05T18:59:01.000Z | /*
* d_pwm.c
*
* Created on: Sep 20, 2013
* Author: liyixiao
*/
#include "driver_common.h"
#include "motor_dri.h"
#include "platform.h"
#define InitGpio PWM_InitGpio
#define TRUE (1)
#define FALSE (0)
#undef SYSCFG0
#undef SYSCFG1
#undef PSC1
/**
* Define pointers of registers as 'volatile' to suppress optimization.
*/
static volatile ULONG *GPIO;
static volatile ULONG *SYSCFG0;
static volatile ULONG *SYSCFG1;
static volatile ULONG *PLLC1;
static volatile ULONG *PSC1;
static volatile UWORD *eHRPWM1;
static volatile UWORD *eCAP0;
static volatile UWORD *eCAP1;
static volatile ULONG *TIMER64P3;
static inline
void GetPeriphealBasePtr(ULONG Address, ULONG Size, ULONG **Ptr) {
*Ptr = (ULONG*)Address;
}
static inline
void request_irq_wrapper(intptr_t exinf) {
irq_handler_t handler = (irq_handler_t)exinf;
handler(0, NULL);
}
static inline
void SetGpioRisingIrq(UBYTE PinNo, irqreturn_t (*IntFuncPtr)(int, void *)) {
request_gpio_irq(PinNo, TRIG_RIS_EDGE | TRIG_FAL_EDGE, request_irq_wrapper, (intptr_t)IntFuncPtr);
}
#define MotorData MotorData_
/*
* Reuse of 'd_pwm.c' from LEGO MINDSTORMS EV3 source code
*/
#include "../d_pwm/Linuxmod_AM1808/d_pwm.c"
#undef MotorData
//write_fp_t pwm_dev1_write = Device1Write;
//volatile MOTORDATA* pwm_dev2_mmap;
//volatile UBYTE* MotorReadyStatusPtr;
static motor_data_t driver_data_motor[TNUM_OUTPUT_PORT];
//extern uint8_t *driver_data_motor_rdy;
static void initialize(intptr_t unused) {
ModuleInit();
// pwm_dev2_mmap = pMotor;
// driver_data_motor_rdy = &ReadyStatus;
for(int i = 0; i < TNUM_OUTPUT_PORT; ++i) {
driver_data_motor[i].speed = &(pMotor[i].Speed);
driver_data_motor[i].tachoSensor = (int32_t*)&(pMotor[i].TachoSensor);
}
global_brick_info.motor_data = driver_data_motor;
global_brick_info.motor_ready = &ReadyStatus;
#if defined(DEBUG) || 1
syslog(LOG_NOTICE, "motor_dri initialized.");
#endif
}
static void softreset(intptr_t unused) {
char buf[5];
buf[0] = opOUTPUT_SET_TYPE;
buf[1] = TYPE_NONE;
buf[2] = TYPE_NONE;
buf[3] = TYPE_NONE;
buf[4] = TYPE_NONE;
Device1Write(NULL, buf, sizeof(buf), NULL);
}
void initialize_motor_dri(intptr_t unused) {
ev3_driver_t driver;
driver.init_func = initialize;
driver.softreset_func = softreset;
SVC_PERROR(platform_register_driver(&driver));
}
/**
* Implementation of extended service calls
*/
/**
* Function to execute a motor command.
* @param cmd
* @param size
* @retval E_OK success
*/
ER_UINT extsvc_motor_command(intptr_t cmd, intptr_t size, intptr_t par3, intptr_t par4, intptr_t par5, ID cdmid) {
ER_UINT ercd;
Device1Write(NULL, (void*)cmd, size, NULL);
ercd = E_OK;
//error_exit:
return(ercd);
}
/**
* Legacy code
*/
#if 0
//ER motor_command(void *cmd, uint32_t size) {
// // TODO: prb_mem
//
// MotorInfoCmd *mic = cmd;
//
// switch(((uint8_t*)cmd)[0]) {
// case MOTOR_CMD_GET_COUNT:
// // TODO: check port
// mic->info.tachoSensor = pMotor[mic->port].TachoSensor;
// break;
// default:
// Device1Write(NULL, cmd, size, NULL);
// }
//
//}
//void ev3_motor_set_speed(uint_t port, int speed)
//{
// SetRegulationPower(port, speed * 100);
//}
//
//void ev3_motor_brake(uint_t port, bool_t is_float)
//{
// if(is_float)
// StopAndFloatMotor(port);
// else
// StopAndBrakeMotor(port);
//}
//
//MOTORDATA *ev3_get_motor_data(uint_t port) {
// return &pMotor[port];
//}
#endif
| 22.108974 | 114 | 0.704842 |
9c3a3b32ecb7ede8f18b1f5aabd2c97a300cf8e8 | 428 | js | JavaScript | routes/index.js | cewinkler/portalchess | b06790bc2ec7466b5d488417f7b7b956f6422cd8 | [
"Apache-2.0"
] | null | null | null | routes/index.js | cewinkler/portalchess | b06790bc2ec7466b5d488417f7b7b956f6422cd8 | [
"Apache-2.0"
] | null | null | null | routes/index.js | cewinkler/portalchess | b06790bc2ec7466b5d488417f7b7b956f6422cd8 | [
"Apache-2.0"
] | null | null | null | var express = require('express');
var router = express.Router();
var db = require('mongoose').connection;
var async = require('asyncawait/async');
var await = require('asyncawait/await');
exports.index = function (req, res) {
res.locals = {
title: 'PortalChess',
};
return res.render('index/index', {
partials: {
layout: 'layout',
partial: 'index/_test'
}
});
};
| 23.777778 | 40 | 0.581776 |
c3f136f2876b699603b37afe9d2f8c1b52299704 | 765 | rs | Rust | src/test/ui/issues/issue-20801.rs | Eric-Arellano/rust | 0f6f2d681b39c5f95459cd09cb936b6ceb27cd82 | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] | 66,762 | 2015-01-01T08:32:03.000Z | 2022-03-31T23:26:40.000Z | src/test/ui/issues/issue-20801.rs | Eric-Arellano/rust | 0f6f2d681b39c5f95459cd09cb936b6ceb27cd82 | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] | 76,993 | 2015-01-01T00:06:33.000Z | 2022-03-31T23:59:15.000Z | src/test/ui/issues/issue-20801.rs | Eric-Arellano/rust | 0f6f2d681b39c5f95459cd09cb936b6ceb27cd82 | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] | 11,787 | 2015-01-01T00:01:19.000Z | 2022-03-31T19:03:42.000Z | // We used to ICE when moving out of a `*mut T` or `*const T`.
struct T(u8);
static mut GLOBAL_MUT_T: T = T(0);
static GLOBAL_T: T = T(0);
fn imm_ref() -> &'static T {
unsafe { &GLOBAL_T }
}
fn mut_ref() -> &'static mut T {
unsafe { &mut GLOBAL_MUT_T }
}
fn mut_ptr() -> *mut T {
unsafe { core::ptr::null_mut() }
}
fn const_ptr() -> *const T {
unsafe { core::ptr::null() }
}
pub fn main() {
let a = unsafe { *mut_ref() };
//~^ ERROR cannot move out of a mutable reference
let b = unsafe { *imm_ref() };
//~^ ERROR cannot move out of a shared reference
let c = unsafe { *mut_ptr() };
//~^ ERROR cannot move out of a raw pointer
let d = unsafe { *const_ptr() };
//~^ ERROR cannot move out of a raw pointer
}
| 20.131579 | 62 | 0.576471 |
85a4f695d605e6769278a81644c52b4fa33cde32 | 119 | kt | Kotlin | http/src/commonMain/kotlin/pw/binom/io/http/websocket/InvalidSecurityKeyException.kt | caffeine-mgn/pw.binom.io | 4811a4cf0a0b935772c7bd4416dec35d8556a3ab | [
"Apache-2.0"
] | 47 | 2019-05-15T07:44:27.000Z | 2022-03-22T07:15:09.000Z | http/src/commonMain/kotlin/pw/binom/io/http/websocket/InvalidSecurityKeyException.kt | caffeine-mgn/pw.binom.io | 4811a4cf0a0b935772c7bd4416dec35d8556a3ab | [
"Apache-2.0"
] | 17 | 2020-07-01T08:00:50.000Z | 2021-06-17T08:51:14.000Z | http/src/commonMain/kotlin/pw/binom/io/http/websocket/InvalidSecurityKeyException.kt | caffeine-mgn/pw.binom.io | 4811a4cf0a0b935772c7bd4416dec35d8556a3ab | [
"Apache-2.0"
] | 2 | 2019-12-09T07:25:49.000Z | 2020-07-06T09:54:51.000Z | package pw.binom.io.http.websocket
import pw.binom.io.IOException
class InvalidSecurityKeyException:IOException() | 23.8 | 47 | 0.823529 |
1bde984571b7f4f4e48121c1095f28ca435b7f01 | 6,195 | py | Python | PyFile/pyfile.py | chyka-dev/PyFile | a52e69c712c10934bc88c0b75b3f536e12303c83 | [
"MIT"
] | null | null | null | PyFile/pyfile.py | chyka-dev/PyFile | a52e69c712c10934bc88c0b75b3f536e12303c83 | [
"MIT"
] | null | null | null | PyFile/pyfile.py | chyka-dev/PyFile | a52e69c712c10934bc88c0b75b3f536e12303c83 | [
"MIT"
] | null | null | null | # -*- coding:utf-8 -*-
import os
import six
from .pystring import PyString
class PyFile(object):
"""More human-friendly file access interface.
Works on Python2 and 3.
Usage:
file = File(".bashrc")
file.write("Hello, world!!")
print(file.read())
del file
"""
class Mode:
r = "rb"
w = "wb+"
a = "ab+"
def __init__(self, path, encoding="utf-8"):
self.path = path
self.encoding = encoding
self.mode = None
self._fd = None
def __del__(self):
self.ensure_close()
def __str__(self):
return "<File object: path={}, encoding={} mode={}".format(
self.path, self.encoding, self.mode
)
def __iter__(self):
self.ensure_open(self.Mode.r)
for l in self._fd:
yield PyString(l)
def statinfo(self):
return os.stat(self.path)
def size(self):
return os.stat(self.path).st_size
def top(self):
"""
Usage:
>>> file = File("hello.txt")
>>> print(file.read())
hello, world
>>> print(file.read())
>>> print(file.top())
>>> print(file.read())
hello, world
"""
return self.seek(0)
def end(self):
"""
Usage:
>>> file = File("hello.txt")
>>> print(file.end())
>>> print(file.read())
"""
return self.seek(0, 2)
def seek(self, *args, **kwargs):
"""WIP what about mode?"""
return self._fd.seek(*args, **kwargs)
def truncate(self, *args, **kwargs):
"""WIP How should I work??"""
return self._fd.truncate(*args, **kwargs)
def read(self, *args, **kwargs):
"""
Usage:
>>> file = File("hello.txt")
>>> print(file.read())
hello, world
"""
self.ensure_open(self.Mode.r)
return PyString(self._fd.read(*args, **kwargs))
def readline(self, *args, **kwargs):
self.ensure_open(self.Mode.r)
return PyString(self._fd.readline(*args, **kwargs))
def readlines(self, *args, **kwargs):
self.ensure_open(self.Mode.r)
return (PyString(s) for s in self._fd.readlines(*args, **kwargs))
def write(self, data, *args, **kwargs):
"""
Usage:
>>> file = File("hello.txt")
>>> file.write("hello, world")
>>> print(file.read())
hello, world
"""
self.ensure_open(self.Mode.w)
return self.__write(data, *args, **kwargs)
def writelines(self, seq, *args, **kwargs):
"""
Usage:
>>> file = File("hello.txt")
>>> file.writelines(["hello", "world"])
>>> print(file.read())
hello
world
"""
self.ensure_open(self.Mode.w)
seq = [self.__ensure_nl(line) for line in seq]
return self.__writelines(seq, *args, **kwargs)
def append(self, data, *args, **kwargs):
"""
Usage:
>>> file = File("hello.txt")
>>> print(file.read())
hello
>>> file.append(", world")
>>> print(file.read())
hello, world
"""
self.ensure_open(self.Mode.a)
return self.__write(data, *args, **kwargs)
def appendlines(self, seq, *args, **kwargs):
"""
Usage:
>>> file = File("hello.txt")
>>> print(file.read())
hello
>>> file.appendlines(["world", "!!"])
>>> print(file.read())
hello
world
!!
"""
self.ensure_open(self.Mode.a)
seq = [self.__ensure_nl("")] + [self.__ensure_nl(line) for line in seq]
return self.__writelines(seq, *args, **kwargs)
def open(self, mode, *args, **kwargs):
""" An alias of ensure_open
Usage:
>>> file = File(path, encoding).open(File.Mode.R)
"""
return self.ensure_open(mode, *args, **kwargs)
def close(self, *args, **kwargs):
"""An alias of ensure_close
Usage:
>>> file.close()
"""
self.ensure_close(*args, **kwargs)
def ensure_open(self, mode, *args, **kwargs):
""" Open the file with mode `mode` if not opend.
Usually you don't have to use this method directly.
Use read, write, append,.. methods instead.
Usage:
>>> file.ensure_open(File.Mode.R)
"""
if self._fd and self.mode == mode:
return self
self.mode = mode
self._fd = self.__open(
self.path, mode, *args, **kwargs
)
return self
def ensure_close(self, *args, **kwargs):
"""
Close the file if opened.
Usually you don't have to use this method directly.
Usage:
>>> file.ensure_close()
"""
if not self._fd:
return
self._fd.close(*args, **kwargs)
self._fd = None
self.mode = None
return
def __ensure_nl(self, string):
"""Append new line chars to the end of `string`.
Usage:
>>> assert self.__ensure_nl("") == "\n"
>>> assert self.__ensure_nl("hello") == "hello\n"
"""
if not string.endswith("\n"):
string += "\n"
return string
def __write(self, data, *args, **kwargs):
"""Use this instead of fd.write.
"""
data = PyString(data, self.encoding)
self._fd.write(data.encode(self.encoding), *args, **kwargs)
def __writelines(self, seq, *args, **kwargs):
"""Use this instead of fd.writelines.
"""
seq = [PyString(s, self.encoding).encode(self.encoding) for s in seq]
self._fd.writelines(seq, *args, **kwargs)
def __open(self, *args, **kwargs):
# In python2, open doesn't accept `encoding`.
# In python3, `encoding` cannot be specified on binary mode.
if 'encoding' in kwargs:
del kwargs['encoding']
return open(*args, **kwargs)
| 26.934783 | 80 | 0.501211 |
859278aaa5184ffc80e18004d9ecef8a06a031dd | 2,199 | js | JavaScript | src/components/Organization/index.js | susithrj/Codelabz | 7503f1843e2b91395acd0b0256805ecaccdf0bb4 | [
"Apache-2.0"
] | null | null | null | src/components/Organization/index.js | susithrj/Codelabz | 7503f1843e2b91395acd0b0256805ecaccdf0bb4 | [
"Apache-2.0"
] | null | null | null | src/components/Organization/index.js | susithrj/Codelabz | 7503f1843e2b91395acd0b0256805ecaccdf0bb4 | [
"Apache-2.0"
] | 1 | 2021-02-19T18:02:57.000Z | 2021-02-19T18:02:57.000Z | import React, { useState } from "react";
import OrgSidebar from "./OrgSidebar/orgSidebar";
import { useMediaQuery } from "react-responsive";
import { Row, Col, Layout, Drawer, Button } from "antd";
import OrgInfoCard from "./OrgInfoCard/orgInfoCard";
import OrgUsersCard from "./OrgUsersCard/orgUsersCard";
const { Content, Sider } = Layout;
const Organizations = () => {
window.scrollTo(0, 0);
const [drawerVisible, setDrawerVisible] = useState(false);
const isDesktop = useMediaQuery({
query: "(min-device-width: 767px)"
});
return (
<Layout className="row-footer-below">
<Layout>
{isDesktop && (
<Sider width={"66px"} theme="light">
<div className="mini-sidebar-column">
<OrgSidebar onOrgChange={() => {}} />
</div>
</Sider>
)}
{!isDesktop && (
<Drawer
title="Switch organization"
placement="bottom"
closable={true}
height={"60%"}
visible={drawerVisible}
onClose={() => setDrawerVisible(false)}
>
<Row>
<Col xs={24} className="col-pad-24-s pt-0">
<OrgSidebar
onOrgChange={() => {
setDrawerVisible(false);
}}
/>
</Col>
</Row>
</Drawer>
)}
<Content style={{ backgroundColor: "white" }}>
{!isDesktop && (
<Row>
<Col xs={24} className="col-pad-24-s pb-0">
<Button
onClick={() => setDrawerVisible(true)}
block
type="primary"
>
Switch organization
</Button>
</Col>
</Row>
)}
<Row>
<Col xs={24} sm={24} md={14} className="col-pad-24-s pr-12">
<OrgInfoCard />
</Col>
<Col xs={24} sm={24} md={10} className="col-pad-24-s pl-12">
<OrgUsersCard />
</Col>
</Row>
</Content>
</Layout>
</Layout>
);
};
export default Organizations;
| 28.192308 | 72 | 0.468849 |
759dac00d31bb10c8c87eeb7576411e1d021f687 | 300,947 | h | C | Include/10.0.19041.0/km/crt/arm_neon.h | sezero/windows-sdk-headers | e8e9d4d50769ded01a2df905c6bf4355eb3fa8b5 | [
"MIT"
] | 5 | 2020-05-29T06:22:17.000Z | 2021-11-28T08:21:38.000Z | Include/10.0.19041.0/km/crt/arm_neon.h | sezero/windows-sdk-headers | e8e9d4d50769ded01a2df905c6bf4355eb3fa8b5 | [
"MIT"
] | null | null | null | Include/10.0.19041.0/km/crt/arm_neon.h | sezero/windows-sdk-headers | e8e9d4d50769ded01a2df905c6bf4355eb3fa8b5 | [
"MIT"
] | 5 | 2020-05-30T04:15:11.000Z | 2021-11-28T08:48:56.000Z | /***
* arm_neon.h - declarations/definitions for ARM NEON specific intrinsics
*
* Copyright (c) Microsoft Corporation. All rights reserved.
*
*Purpose:
* This include file contains the declarations for ARM NEON intrinsic functions
*
****/
#pragma once
#include <sal.h>
#if !defined(_M_ARM)
#error This header is specific to ARM targets
#endif
#if defined(__cplusplus)
extern "C" {
#endif
///////////////////////////////////////////////////////////////////////////////
//
#if !defined(_ADVSIMD_ALIGN)
#if defined(__midl)
#define _ADVSIMD_ALIGN(x)
#else
#define _ADVSIMD_ALIGN(x) __declspec(align(x))
#endif
#endif
#ifndef DUMMYNEONSTRUCT
#define DUMMYNEONSTRUCT s
#endif
///////////////////////////////////////////////////////////////////////////////
//
// ARM Advanced SIMD 64bit type
//
typedef union __declspec(intrin_type) _ADVSIMD_ALIGN(8) __n64
{
unsigned __int64 n64_u64[1];
unsigned __int32 n64_u32[2];
unsigned __int16 n64_u16[4];
unsigned __int8 n64_u8[8];
__int64 n64_i64[1];
__int32 n64_i32[2];
__int16 n64_i16[4];
__int8 n64_i8[8];
float n64_f32[2];
} __n64;
///////////////////////////////////////////////////////////////////////////////
//
// ARM Advanced SIMD 128bit type
//
typedef union __declspec(intrin_type) _ADVSIMD_ALIGN(8) __n128
{
unsigned __int64 n128_u64[2];
unsigned __int32 n128_u32[4];
unsigned __int16 n128_u16[8];
unsigned __int8 n128_u8[16];
__int64 n128_i64[2];
__int32 n128_i32[4];
__int16 n128_i16[8];
__int8 n128_i8[16];
float n128_f32[4];
struct
{
__n64 low64;
__n64 high64;
} DUMMYNEONSTRUCT;
} __n128;
typedef struct __n64x2
{
__n64 val[2];
} __n64x2;
typedef struct __n64x3
{
__n64 val[3];
} __n64x3;
typedef struct __n64x4
{
__n64 val[4];
} __n64x4;
typedef struct __n128x2
{
__n128 val[2];
} __n128x2;
typedef struct __n128x3
{
__n128 val[3];
} __n128x3;
typedef struct __n128x4
{
__n128 val[4];
} __n128x4;
///////////////////////////////////////////////////////////////////////////////
//
typedef unsigned __int8 poly8_t;
typedef unsigned __int16 poly16_t;
typedef float float32_t;
///////////////////////////////////////////////////////////////////////////////
//
__inline __n64 *__int8ToN64(_In_ __int8 *p) { return (__n64 *)p; }
__inline __n64 *__int16ToN64(__int16 *p) { return (__n64 *)p; }
__inline __n64 *__int32ToN64(__int32 *p) { return (__n64 *)p; }
__inline __n64 *__int64ToN64(__int64 *p) { return (__n64 *)p; }
__inline __n64 *__uint8ToN64(unsigned __int8 *p) { return (__n64 *)p; }
__inline __n64 *__uint16ToN64(unsigned __int16 *p) { return (__n64 *)p; }
__inline __n64 *__uint32ToN64(unsigned __int32 *p) { return (__n64 *)p; }
__inline __n64 *__uint64ToN64(unsigned __int64 *p) { return (__n64 *)p; }
__inline __n64 *__poly8ToN64(poly8_t *p) { return (__n64 *)p; }
__inline __n64 *__poly16ToN64(poly16_t *p) { return (__n64 *)p; }
__inline __n64 *__float32ToN64(float32_t *p) { return (__n64 *)p; }
__inline const __n64 *__int8ToN64_c(const __int8 *p) { return (const __n64 *)p; }
__inline const __n64 *__int16ToN64_c(const __int16 *p) { return (const __n64 *)p; }
__inline const __n64 *__int32ToN64_c(const __int32 *p) { return (const __n64 *)p; }
__inline const __n64 *__int64ToN64_c(const __int64 *p) { return (const __n64 *)p; }
__inline const __n64 *__uint8ToN64_c(const unsigned __int8 *p) { return (const __n64 *)p; }
__inline const __n64 *__uint16ToN64_c(const unsigned __int16 *p) { return (const __n64 *)p; }
__inline const __n64 *__uint32ToN64_c(const unsigned __int32 *p) { return (const __n64 *)p; }
__inline const __n64 *__uint64ToN64_c(const unsigned __int64 *p) { return (const __n64 *)p; }
__inline const __n64 *__poly8ToN64_c(const poly8_t *p) { return (const __n64 *)p; }
__inline const __n64 *__poly16ToN64_c(const poly16_t *p) { return (const __n64 *)p; }
__inline const __n64 *__float32ToN64_c(const float32_t *p) { return (const __n64 *)p; }
__inline __int32 __int8ToInt32(__int8 i) { return (__int32)i; }
__inline __int32 __int16ToInt32(__int16 i) { return (__int32)i; }
__inline __int32 __int32ToInt32(__int32 i) { return (__int32)i; }
__inline __int64 __int64ToInt64(__int64 i) { return (__int64)i; }
__inline __int32 __uint8ToInt32(unsigned __int8 i) { return (__int32)i; }
__inline __int32 __uint16ToInt32(unsigned __int16 i) { return (__int32)i; }
__inline __int32 __uint32ToInt32(unsigned __int32 i) { return (__int32)i; }
__inline __int64 __uint64ToInt64(unsigned __int64 i) { return (__int64)i; }
__inline __int32 __poly8ToInt32(poly8_t i) { return (__int32)i; }
__inline __int32 __poly16ToInt32(poly16_t i) { return (__int32)i; }
///////////////////////////////////////////////////////////////////////////////
//
// { +++ auto-generated code begins (explicit types)
typedef __n64 float32x2_t;
typedef __n64x2 float32x2x2_t;
typedef __n64x3 float32x2x3_t;
typedef __n64x4 float32x2x4_t;
typedef __n64 int8x8_t;
typedef __n64x2 int8x8x2_t;
typedef __n64x3 int8x8x3_t;
typedef __n64x4 int8x8x4_t;
typedef __n64 int16x4_t;
typedef __n64x2 int16x4x2_t;
typedef __n64x3 int16x4x3_t;
typedef __n64x4 int16x4x4_t;
typedef __n64 int32x2_t;
typedef __n64x2 int32x2x2_t;
typedef __n64x3 int32x2x3_t;
typedef __n64x4 int32x2x4_t;
typedef __n64 int64x1_t;
typedef __n64x2 int64x1x2_t;
typedef __n64x3 int64x1x3_t;
typedef __n64x4 int64x1x4_t;
typedef __n64 poly8x8_t;
typedef __n64x2 poly8x8x2_t;
typedef __n64x3 poly8x8x3_t;
typedef __n64x4 poly8x8x4_t;
typedef __n64 poly16x4_t;
typedef __n64x2 poly16x4x2_t;
typedef __n64x3 poly16x4x3_t;
typedef __n64x4 poly16x4x4_t;
typedef __n64 uint8x8_t;
typedef __n64x2 uint8x8x2_t;
typedef __n64x3 uint8x8x3_t;
typedef __n64x4 uint8x8x4_t;
typedef __n64 uint16x4_t;
typedef __n64x2 uint16x4x2_t;
typedef __n64x3 uint16x4x3_t;
typedef __n64x4 uint16x4x4_t;
typedef __n64 uint32x2_t;
typedef __n64x2 uint32x2x2_t;
typedef __n64x3 uint32x2x3_t;
typedef __n64x4 uint32x2x4_t;
typedef __n64 uint64x1_t;
typedef __n64x2 uint64x1x2_t;
typedef __n64x3 uint64x1x3_t;
typedef __n64x4 uint64x1x4_t;
typedef __n128 float32x4_t;
typedef __n128x2 float32x4x2_t;
typedef __n128x3 float32x4x3_t;
typedef __n128x4 float32x4x4_t;
typedef __n128 int8x16_t;
typedef __n128x2 int8x16x2_t;
typedef __n128x3 int8x16x3_t;
typedef __n128x4 int8x16x4_t;
typedef __n128 int16x8_t;
typedef __n128x2 int16x8x2_t;
typedef __n128x3 int16x8x3_t;
typedef __n128x4 int16x8x4_t;
typedef __n128 int32x4_t;
typedef __n128x2 int32x4x2_t;
typedef __n128x3 int32x4x3_t;
typedef __n128x4 int32x4x4_t;
typedef __n128 int64x2_t;
typedef __n128x2 int64x2x2_t;
typedef __n128x3 int64x2x3_t;
typedef __n128x4 int64x2x4_t;
typedef __n128 poly8x16_t;
typedef __n128x2 poly8x16x2_t;
typedef __n128x3 poly8x16x3_t;
typedef __n128x4 poly8x16x4_t;
typedef __n128 poly16x8_t;
typedef __n128x2 poly16x8x2_t;
typedef __n128x3 poly16x8x3_t;
typedef __n128x4 poly16x8x4_t;
typedef __n128 uint8x16_t;
typedef __n128x2 uint8x16x2_t;
typedef __n128x3 uint8x16x3_t;
typedef __n128x4 uint8x16x4_t;
typedef __n128 uint16x8_t;
typedef __n128x2 uint16x8x2_t;
typedef __n128x3 uint16x8x3_t;
typedef __n128x4 uint16x8x4_t;
typedef __n128 uint32x4_t;
typedef __n128x2 uint32x4x2_t;
typedef __n128x3 uint32x4x3_t;
typedef __n128x4 uint32x4x4_t;
typedef __n128 uint64x2_t;
typedef __n128x2 uint64x2x2_t;
typedef __n128x3 uint64x2x3_t;
typedef __n128x4 uint64x2x4_t;
// } +++ auto-generated code ends (explicit types)
///////////////////////////////////////////////////////////////////////////////
//
// { +++ auto-generated code begins (prototypes)
__n64x2 __neon_DdDm_acc2(unsigned int, __n64, __n64);
__n64x2 __neon_Dx2Adr(unsigned int, const __n64*);
__n64x2 __neon_Dx2Adr_acc(unsigned int, __n64x2, const __n64*);
__n64x3 __neon_Dx3Adr(unsigned int, const __n64*);
__n64x3 __neon_Dx3Adr_acc(unsigned int, __n64x3, const __n64*);
__n64x4 __neon_Dx4Adr(unsigned int, const __n64*);
__n64x4 __neon_Dx4Adr_acc(unsigned int, __n64x4, const __n64*);
__n64 __neon_DdDm(unsigned int, __n64);
__n64 __neon_DdDx2Dm(unsigned int, __n64x2, __n64);
__n64 __neon_DdDx2Dm_acc(unsigned int, __n64, __n64x2, __n64);
__n64 __neon_DdDx3Dm(unsigned int, __n64x3, __n64);
__n64 __neon_DdDx3Dm_acc(unsigned int, __n64, __n64x3, __n64);
__n64 __neon_DdDx4Dm(unsigned int, __n64x4, __n64);
__n64 __neon_DdDx4Dm_acc(unsigned int, __n64, __n64x4, __n64);
__n64 __neon_DdDm_acc(unsigned int, __n64, __n64);
__n64 __neon_DdDnDm(unsigned int, __n64, __n64);
__n64 __neon_DdDnDm_acc(unsigned int, __n64, __n64, __n64);
__n64 __neon_DdDnDmx(unsigned int, __n64, __n64);
__n64 __neon_DdDnDmx_acc(unsigned int, __n64, __n64, __n64);
__n64 __neon_DdFt(unsigned int, float);
__n64 __neon_DdFt_acc(unsigned int, __n64, float);
__n64 __neon_D1Adr(unsigned int, const __n64*);
__n64 __neon_D1Adr_acc(unsigned int, __n64, const __n64*);
__n64 __neon_DdQm(unsigned int, __n128);
__n64 __neon_DdQm_high(unsigned int, __n128);
__n64 __neon_DdQm_low(unsigned int, __n128);
__n64 __neon_DdQnQm(unsigned int, __n128, __n128);
__n64 __neon_DdRt(unsigned int, int);
__n64 __neon_DdRtRt2(unsigned int, __int64);
__n64 __neon_DdRtRt2_acc(unsigned int, __n64, __int64);
__n64 __neon_DdRt_acc(unsigned int, __n64, int);
float __neon_FtDn(unsigned int, __n64);
float __neon_FtQn(unsigned int, __n128);
__n128x2 __neon_Qx2Adr(unsigned int, const __n64*);
__n128x2 __neon_Qx2Adr_acc(unsigned int, __n128x2, const __n64*);
__n128x2 __neon_QdQm_acc2(unsigned int, __n128, __n128);
__n128x3 __neon_Qx3Adr(unsigned int, const __n64*);
__n128x3 __neon_Qx3Adr_acc(unsigned int, __n128x3, const __n64*);
__n128x4 __neon_Qx4Adr(unsigned int, const __n64*);
__n128x4 __neon_Qx4Adr_acc(unsigned int, __n128x4, const __n64*);
__n128 __neon_QdDm(unsigned int, __n64);
__n128 __neon_QdDnDm(unsigned int, __n64, __n64);
__n128 __neon_QdDnDm_acc(unsigned int, __n128, __n64, __n64);
__n128 __neon_QdDnDm_merge(unsigned int, __n64, __n64);
__n128 __neon_QdDnDmx(unsigned int, __n64, __n64);
__n128 __neon_QdDnDmx_acc(unsigned int, __n128, __n64, __n64);
__n128 __neon_QdFt(unsigned int, float);
__n128 __neon_QdFt_acc(unsigned int, __n128, float);
__n128 __neon_Q1Adr(unsigned int, const __n64*);
__n128 __neon_Q1Adr_acc(unsigned int, __n128, const __n64*);
__n128 __neon_QdQm(unsigned int, __n128);
__n128 __neon_QdQm_acc(unsigned int, __n128, __n128);
__n128 __neon_QdQnDm(unsigned int, __n128, __n64);
__n128 __neon_QdQnDmx(unsigned int, __n128, __n64);
__n128 __neon_QdQnDmx_acc(unsigned int, __n128, __n128, __n64);
__n128 __neon_QdQnQm(unsigned int, __n128, __n128);
__n128 __neon_QdQnQm_acc(unsigned int, __n128, __n128, __n128);
__n128 __neon_QdRt(unsigned int, int);
__n128 __neon_QdRtRt2_acc(unsigned int, __n128, __int64);
__n128 __neon_QdRtRt2_dup(unsigned int, __int64);
__n128 __neon_QdRt_acc(unsigned int, __n128, int);
__int64 __neon_RtRt2Dm(unsigned int, __n64);
__int64 __neon_RtRt2Qm(unsigned int, __n128);
int __neon_RtDn(unsigned int, __n64);
int __neon_RtQn(unsigned int, __n128);
void __neon_AdrD1(unsigned int, __n64*, __n64);
void __neon_AdrDx2(unsigned int, __n64*, __n64x2);
void __neon_AdrDx2x(unsigned int, __n64*, __n64x2);
void __neon_AdrDx3(unsigned int, __n64*, __n64x3);
void __neon_AdrDx3x(unsigned int, __n64*, __n64x3);
void __neon_AdrDx4(unsigned int, __n64*, __n64x4);
void __neon_AdrDx4x(unsigned int, __n64*, __n64x4);
void __neon_AdrQ1(unsigned int, __n64*, __n128);
void __neon_AdrQx2(unsigned int, __n64*, __n128x2);
void __neon_AdrQx2x(unsigned int, __n64*, __n128x2);
void __neon_AdrQx3(unsigned int, __n64*, __n128x3);
void __neon_AdrQx3x(unsigned int, __n64*, __n128x3);
void __neon_AdrQx4(unsigned int, __n64*, __n128x4);
void __neon_AdrQx4x(unsigned int, __n64*, __n128x4);
// } +++ auto-generated code ends (prototypes)
#if defined(__cplusplus)
}
#endif
///////////////////////////////////////////////////////////////////////////////
//
// VLDx/VSTx alignment specifications
//
#define _NEON_ALIGN16(a) \
( \
((a) == 8) ? 0 : \
((a) == 16) ? 1 : \
-1)
#define _NEON_ALIGN32(a) \
( \
((a) == 8) ? 0 : \
((a) == 32) ? 1 : \
-1)
#define _NEON_ALIGN64(a) \
( \
((a) == 8) ? 0 : \
((a) == 64) ? 1 : \
-1)
#define _NEON_ALIGN64_128(a) \
( \
((a) == 8) ? 0 : \
((a) == 64) ? 1 : \
((a) == 128) ? 2 : \
-1)
#define _NEON_ALIGN64_128_256(a) \
( \
((a) == 8) ? 0 : \
((a) == 64) ? 1 : \
((a) == 128) ? 2 : \
((a) == 256) ? 3 : \
-1)
///////////////////////////////////////////////////////////////////////////////
//
// { +++ auto-generated code begins (encoding macros)
#define _NENC_0(x) ((x) & 0x1)
#define _NENC_11_8(x) (((x) << 8) & 0xf00)
#define _NENC_12(x) (((x) << 12) & 0x1000)
#define _NENC_16(x) (((x) << 16) & 0x10000)
#define _NENC_18_16(x) (((x) << 16) & 0x70000)
#define _NENC_19(x) (((x) << 19) & 0x80000)
#define _NENC_19_16(x) (((x) << 16) & 0xf0000)
#define _NENC_19_17(x) (((x) << 17) & 0xe0000)
#define _NENC_19_18(x) (((x) << 18) & 0xc0000)
#define _NENC_20_16(x) (((x) << 16) & 0x1f0000)
#define _NENC_21(x) (((x) << 21) & 0x200000)
#define _NENC_21_16(x) (((x) << 16) & 0x3f0000)
#define _NENC_21x6(x) (((x) << 6) & 0x40 | ((x) << 20) & 0x200000)
#define _NENC_21x6_5(x) (((x) << 5) & 0x60 | ((x) << 19) & 0x200000)
#define _NENC_4(x) (((x) << 4) & 0x10)
#define _NENC_5(x) (((x) << 5) & 0x20)
#define _NENC_5_4(x) (((x) << 4) & 0x30)
#define _NENC_5x3(x) (((x) << 3) & 0x8 | ((x) << 4) & 0x20)
#define _NENC_7(x) (((x) << 7) & 0x80)
#define _NENC_7_5(x) (((x) << 5) & 0xe0)
#define _NENC_7_6(x) (((x) << 6) & 0xc0)
// } +++ auto-generated code ends (encoding macros)
///////////////////////////////////////////////////////////////////////////////
//
// { +++ auto-generated code begins (Neon macros)
// VABA, VABAL
#define vaba_s16(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf2100710, (Dd), (Dn), (Dm)) )
#define vaba_s32(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf2200710, (Dd), (Dn), (Dm)) )
#define vaba_s8(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf2000710, (Dd), (Dn), (Dm)) )
#define vaba_u16(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3100710, (Dd), (Dn), (Dm)) )
#define vaba_u32(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3200710, (Dd), (Dn), (Dm)) )
#define vaba_u8(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3000710, (Dd), (Dn), (Dm)) )
#define vabal_s16(Qd, Dn, Dm) ( __neon_QdDnDm_acc( 0xf2900500, (Qd), (Dn), (Dm)) )
#define vabal_s32(Qd, Dn, Dm) ( __neon_QdDnDm_acc( 0xf2a00500, (Qd), (Dn), (Dm)) )
#define vabal_s8(Qd, Dn, Dm) ( __neon_QdDnDm_acc( 0xf2800500, (Qd), (Dn), (Dm)) )
#define vabal_u16(Qd, Dn, Dm) ( __neon_QdDnDm_acc( 0xf3900500, (Qd), (Dn), (Dm)) )
#define vabal_u32(Qd, Dn, Dm) ( __neon_QdDnDm_acc( 0xf3a00500, (Qd), (Dn), (Dm)) )
#define vabal_u8(Qd, Dn, Dm) ( __neon_QdDnDm_acc( 0xf3800500, (Qd), (Dn), (Dm)) )
#define vabaq_s16(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf2100750, (Qd), (Qn), (Qm)) )
#define vabaq_s32(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf2200750, (Qd), (Qn), (Qm)) )
#define vabaq_s8(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf2000750, (Qd), (Qn), (Qm)) )
#define vabaq_u16(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3100750, (Qd), (Qn), (Qm)) )
#define vabaq_u32(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3200750, (Qd), (Qn), (Qm)) )
#define vabaq_u8(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3000750, (Qd), (Qn), (Qm)) )
// VABD (floating point)
#define vabd_f32(Dn, Dm) ( __neon_DdDnDm( 0xf3200d00, (Dn), (Dm)) )
#define vabdq_f32(Qn, Qm) ( __neon_QdQnQm( 0xf3200d40, (Qn), (Qm)) )
// VABD[L] (integer)
#define vabd_s16(Dn, Dm) ( __neon_DdDnDm( 0xf2100700, (Dn), (Dm)) )
#define vabd_s32(Dn, Dm) ( __neon_DdDnDm( 0xf2200700, (Dn), (Dm)) )
#define vabd_s8(Dn, Dm) ( __neon_DdDnDm( 0xf2000700, (Dn), (Dm)) )
#define vabd_u16(Dn, Dm) ( __neon_DdDnDm( 0xf3100700, (Dn), (Dm)) )
#define vabd_u32(Dn, Dm) ( __neon_DdDnDm( 0xf3200700, (Dn), (Dm)) )
#define vabd_u8(Dn, Dm) ( __neon_DdDnDm( 0xf3000700, (Dn), (Dm)) )
#define vabdl_s16(Dn, Dm) ( __neon_QdDnDm( 0xf2900700, (Dn), (Dm)) )
#define vabdl_s32(Dn, Dm) ( __neon_QdDnDm( 0xf2a00700, (Dn), (Dm)) )
#define vabdl_s8(Dn, Dm) ( __neon_QdDnDm( 0xf2800700, (Dn), (Dm)) )
#define vabdl_u16(Dn, Dm) ( __neon_QdDnDm( 0xf3900700, (Dn), (Dm)) )
#define vabdl_u32(Dn, Dm) ( __neon_QdDnDm( 0xf3a00700, (Dn), (Dm)) )
#define vabdl_u8(Dn, Dm) ( __neon_QdDnDm( 0xf3800700, (Dn), (Dm)) )
#define vabdq_s16(Qn, Qm) ( __neon_QdQnQm( 0xf2100740, (Qn), (Qm)) )
#define vabdq_s32(Qn, Qm) ( __neon_QdQnQm( 0xf2200740, (Qn), (Qm)) )
#define vabdq_s8(Qn, Qm) ( __neon_QdQnQm( 0xf2000740, (Qn), (Qm)) )
#define vabdq_u16(Qn, Qm) ( __neon_QdQnQm( 0xf3100740, (Qn), (Qm)) )
#define vabdq_u32(Qn, Qm) ( __neon_QdQnQm( 0xf3200740, (Qn), (Qm)) )
#define vabdq_u8(Qn, Qm) ( __neon_QdQnQm( 0xf3000740, (Qn), (Qm)) )
// VABS, VNEG
#define vabs_f32(Dm) ( __neon_DdDm( 0xf3b90700, (Dm)) )
#define vabs_s16(Dm) ( __neon_DdDm( 0xf3b50300, (Dm)) )
#define vabs_s32(Dm) ( __neon_DdDm( 0xf3b90300, (Dm)) )
#define vabs_s8(Dm) ( __neon_DdDm( 0xf3b10300, (Dm)) )
#define vneg_f32(Dm) ( __neon_DdDm( 0xf3b90780, (Dm)) )
#define vneg_s16(Dm) ( __neon_DdDm( 0xf3b50380, (Dm)) )
#define vneg_s32(Dm) ( __neon_DdDm( 0xf3b90380, (Dm)) )
#define vneg_s8(Dm) ( __neon_DdDm( 0xf3b10380, (Dm)) )
#define vabsq_f32(Qm) ( __neon_QdQm( 0xf3b90740, (Qm)) )
#define vabsq_s16(Qm) ( __neon_QdQm( 0xf3b50340, (Qm)) )
#define vabsq_s32(Qm) ( __neon_QdQm( 0xf3b90340, (Qm)) )
#define vabsq_s8(Qm) ( __neon_QdQm( 0xf3b10340, (Qm)) )
#define vnegq_f32(Qm) ( __neon_QdQm( 0xf3b907c0, (Qm)) )
#define vnegq_s16(Qm) ( __neon_QdQm( 0xf3b503c0, (Qm)) )
#define vnegq_s32(Qm) ( __neon_QdQm( 0xf3b903c0, (Qm)) )
#define vnegq_s8(Qm) ( __neon_QdQm( 0xf3b103c0, (Qm)) )
// VACGE, VACGT, VACLE, VACLT
#define vacge_f32(Dn, Dm) ( __neon_DdDnDm( 0xf3000e10, (Dn), (Dm)) )
#define vacgt_f32(Dn, Dm) ( __neon_DdDnDm( 0xf3200e10, (Dn), (Dm)) )
#define vacle_f32(Dn, Dm) ( __neon_DdDnDm( 0xf3000e10, (Dm), (Dn)) )
#define vaclt_f32(Dn, Dm) ( __neon_DdDnDm( 0xf3200e10, (Dm), (Dn)) )
#define vacgeq_f32(Qn, Qm) ( __neon_QdQnQm( 0xf3000e50, (Qn), (Qm)) )
#define vacgtq_f32(Qn, Qm) ( __neon_QdQnQm( 0xf3200e50, (Qn), (Qm)) )
#define vacleq_f32(Qn, Qm) ( __neon_QdQnQm( 0xf3000e50, (Qm), (Qn)) )
#define vacltq_f32(Qn, Qm) ( __neon_QdQnQm( 0xf3200e50, (Qm), (Qn)) )
// VADD
#define vadd_f32(Dn, Dm) ( __neon_DdDnDm( 0xf2000d00, (Dn), (Dm)) )
#define vadd_s16(Dn, Dm) ( __neon_DdDnDm( 0xf2100800, (Dn), (Dm)) )
#define vadd_s32(Dn, Dm) ( __neon_DdDnDm( 0xf2200800, (Dn), (Dm)) )
#define vadd_s64(Dn, Dm) ( __neon_DdDnDm( 0xf2300800, (Dn), (Dm)) )
#define vadd_s8(Dn, Dm) ( __neon_DdDnDm( 0xf2000800, (Dn), (Dm)) )
#define vadd_u16(Dn, Dm) ( __neon_DdDnDm( 0xf2100800, (Dn), (Dm)) )
#define vadd_u32(Dn, Dm) ( __neon_DdDnDm( 0xf2200800, (Dn), (Dm)) )
#define vadd_u64(Dn, Dm) ( __neon_DdDnDm( 0xf2300800, (Dn), (Dm)) )
#define vadd_u8(Dn, Dm) ( __neon_DdDnDm( 0xf2000800, (Dn), (Dm)) )
#define vaddq_f32(Qn, Qm) ( __neon_QdQnQm( 0xf2000d40, (Qn), (Qm)) )
#define vaddq_s16(Qn, Qm) ( __neon_QdQnQm( 0xf2100840, (Qn), (Qm)) )
#define vaddq_s32(Qn, Qm) ( __neon_QdQnQm( 0xf2200840, (Qn), (Qm)) )
#define vaddq_s64(Qn, Qm) ( __neon_QdQnQm( 0xf2300840, (Qn), (Qm)) )
#define vaddq_s8(Qn, Qm) ( __neon_QdQnQm( 0xf2000840, (Qn), (Qm)) )
#define vaddq_u16(Qn, Qm) ( __neon_QdQnQm( 0xf2100840, (Qn), (Qm)) )
#define vaddq_u32(Qn, Qm) ( __neon_QdQnQm( 0xf2200840, (Qn), (Qm)) )
#define vaddq_u64(Qn, Qm) ( __neon_QdQnQm( 0xf2300840, (Qn), (Qm)) )
#define vaddq_u8(Qn, Qm) ( __neon_QdQnQm( 0xf2000840, (Qn), (Qm)) )
// VADDHN, VRADDHN
#define vaddhn_s16(Qn, Qm) ( __neon_DdQnQm( 0xf2800400, (Qn), (Qm)) )
#define vaddhn_s32(Qn, Qm) ( __neon_DdQnQm( 0xf2900400, (Qn), (Qm)) )
#define vaddhn_s64(Qn, Qm) ( __neon_DdQnQm( 0xf2a00400, (Qn), (Qm)) )
#define vaddhn_u16(Qn, Qm) ( __neon_DdQnQm( 0xf2800400, (Qn), (Qm)) )
#define vaddhn_u32(Qn, Qm) ( __neon_DdQnQm( 0xf2900400, (Qn), (Qm)) )
#define vaddhn_u64(Qn, Qm) ( __neon_DdQnQm( 0xf2a00400, (Qn), (Qm)) )
#define vraddhn_s16(Qn, Qm) ( __neon_DdQnQm( 0xf3800400, (Qn), (Qm)) )
#define vraddhn_s32(Qn, Qm) ( __neon_DdQnQm( 0xf3900400, (Qn), (Qm)) )
#define vraddhn_s64(Qn, Qm) ( __neon_DdQnQm( 0xf3a00400, (Qn), (Qm)) )
#define vraddhn_u16(Qn, Qm) ( __neon_DdQnQm( 0xf3800400, (Qn), (Qm)) )
#define vraddhn_u32(Qn, Qm) ( __neon_DdQnQm( 0xf3900400, (Qn), (Qm)) )
#define vraddhn_u64(Qn, Qm) ( __neon_DdQnQm( 0xf3a00400, (Qn), (Qm)) )
// VADDL, VADDW
#define vaddl_s16(Dn, Dm) ( __neon_QdDnDm( 0xf2900000, (Dn), (Dm)) )
#define vaddl_s32(Dn, Dm) ( __neon_QdDnDm( 0xf2a00000, (Dn), (Dm)) )
#define vaddl_s8(Dn, Dm) ( __neon_QdDnDm( 0xf2800000, (Dn), (Dm)) )
#define vaddl_u16(Dn, Dm) ( __neon_QdDnDm( 0xf3900000, (Dn), (Dm)) )
#define vaddl_u32(Dn, Dm) ( __neon_QdDnDm( 0xf3a00000, (Dn), (Dm)) )
#define vaddl_u8(Dn, Dm) ( __neon_QdDnDm( 0xf3800000, (Dn), (Dm)) )
#define vaddw_s16(Qn, Dm) ( __neon_QdQnDm( 0xf2900100, (Qn), (Dm)) )
#define vaddw_s32(Qn, Dm) ( __neon_QdQnDm( 0xf2a00100, (Qn), (Dm)) )
#define vaddw_s8(Qn, Dm) ( __neon_QdQnDm( 0xf2800100, (Qn), (Dm)) )
#define vaddw_u16(Qn, Dm) ( __neon_QdQnDm( 0xf3900100, (Qn), (Dm)) )
#define vaddw_u32(Qn, Dm) ( __neon_QdQnDm( 0xf3a00100, (Qn), (Dm)) )
#define vaddw_u8(Qn, Dm) ( __neon_QdQnDm( 0xf3800100, (Qn), (Dm)) )
// VAND, VORR
#define vand_s16(Dn, Dm) ( __neon_DdDnDm( 0xf2000110, (Dn), (Dm)) )
#define vand_s32(Dn, Dm) ( __neon_DdDnDm( 0xf2000110, (Dn), (Dm)) )
#define vand_s64(Dn, Dm) ( __neon_DdDnDm( 0xf2000110, (Dn), (Dm)) )
#define vand_s8(Dn, Dm) ( __neon_DdDnDm( 0xf2000110, (Dn), (Dm)) )
#define vand_u16(Dn, Dm) ( __neon_DdDnDm( 0xf2000110, (Dn), (Dm)) )
#define vand_u32(Dn, Dm) ( __neon_DdDnDm( 0xf2000110, (Dn), (Dm)) )
#define vand_u64(Dn, Dm) ( __neon_DdDnDm( 0xf2000110, (Dn), (Dm)) )
#define vand_u8(Dn, Dm) ( __neon_DdDnDm( 0xf2000110, (Dn), (Dm)) )
#define vorr_s16(Dn, Dm) ( __neon_DdDnDm( 0xf2200110, (Dn), (Dm)) )
#define vorr_s32(Dn, Dm) ( __neon_DdDnDm( 0xf2200110, (Dn), (Dm)) )
#define vorr_s64(Dn, Dm) ( __neon_DdDnDm( 0xf2200110, (Dn), (Dm)) )
#define vorr_s8(Dn, Dm) ( __neon_DdDnDm( 0xf2200110, (Dn), (Dm)) )
#define vorr_u16(Dn, Dm) ( __neon_DdDnDm( 0xf2200110, (Dn), (Dm)) )
#define vorr_u32(Dn, Dm) ( __neon_DdDnDm( 0xf2200110, (Dn), (Dm)) )
#define vorr_u64(Dn, Dm) ( __neon_DdDnDm( 0xf2200110, (Dn), (Dm)) )
#define vorr_u8(Dn, Dm) ( __neon_DdDnDm( 0xf2200110, (Dn), (Dm)) )
#define vandq_s16(Qn, Qm) ( __neon_QdQnQm( 0xf2000150, (Qn), (Qm)) )
#define vandq_s32(Qn, Qm) ( __neon_QdQnQm( 0xf2000150, (Qn), (Qm)) )
#define vandq_s64(Qn, Qm) ( __neon_QdQnQm( 0xf2000150, (Qn), (Qm)) )
#define vandq_s8(Qn, Qm) ( __neon_QdQnQm( 0xf2000150, (Qn), (Qm)) )
#define vandq_u16(Qn, Qm) ( __neon_QdQnQm( 0xf2000150, (Qn), (Qm)) )
#define vandq_u32(Qn, Qm) ( __neon_QdQnQm( 0xf2000150, (Qn), (Qm)) )
#define vandq_u64(Qn, Qm) ( __neon_QdQnQm( 0xf2000150, (Qn), (Qm)) )
#define vandq_u8(Qn, Qm) ( __neon_QdQnQm( 0xf2000150, (Qn), (Qm)) )
#define vorrq_s16(Qn, Qm) ( __neon_QdQnQm( 0xf2200150, (Qn), (Qm)) )
#define vorrq_s32(Qn, Qm) ( __neon_QdQnQm( 0xf2200150, (Qn), (Qm)) )
#define vorrq_s64(Qn, Qm) ( __neon_QdQnQm( 0xf2200150, (Qn), (Qm)) )
#define vorrq_s8(Qn, Qm) ( __neon_QdQnQm( 0xf2200150, (Qn), (Qm)) )
#define vorrq_u16(Qn, Qm) ( __neon_QdQnQm( 0xf2200150, (Qn), (Qm)) )
#define vorrq_u32(Qn, Qm) ( __neon_QdQnQm( 0xf2200150, (Qn), (Qm)) )
#define vorrq_u64(Qn, Qm) ( __neon_QdQnQm( 0xf2200150, (Qn), (Qm)) )
#define vorrq_u8(Qn, Qm) ( __neon_QdQnQm( 0xf2200150, (Qn), (Qm)) )
// VBIF, VBIT, VBSL
#define vbif_f32(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3300110, (Dd), (Dn), (Dm)) )
#define vbif_p16(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3300110, (Dd), (Dn), (Dm)) )
#define vbif_p8(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3300110, (Dd), (Dn), (Dm)) )
#define vbif_s16(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3300110, (Dd), (Dn), (Dm)) )
#define vbif_s32(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3300110, (Dd), (Dn), (Dm)) )
#define vbif_s64(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3300110, (Dd), (Dn), (Dm)) )
#define vbif_s8(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3300110, (Dd), (Dn), (Dm)) )
#define vbif_u16(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3300110, (Dd), (Dn), (Dm)) )
#define vbif_u32(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3300110, (Dd), (Dn), (Dm)) )
#define vbif_u64(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3300110, (Dd), (Dn), (Dm)) )
#define vbif_u8(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3300110, (Dd), (Dn), (Dm)) )
#define vbit_f32(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3200110, (Dd), (Dn), (Dm)) )
#define vbit_p16(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3200110, (Dd), (Dn), (Dm)) )
#define vbit_p8(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3200110, (Dd), (Dn), (Dm)) )
#define vbit_s16(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3200110, (Dd), (Dn), (Dm)) )
#define vbit_s32(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3200110, (Dd), (Dn), (Dm)) )
#define vbit_s64(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3200110, (Dd), (Dn), (Dm)) )
#define vbit_s8(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3200110, (Dd), (Dn), (Dm)) )
#define vbit_u16(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3200110, (Dd), (Dn), (Dm)) )
#define vbit_u32(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3200110, (Dd), (Dn), (Dm)) )
#define vbit_u64(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3200110, (Dd), (Dn), (Dm)) )
#define vbit_u8(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3200110, (Dd), (Dn), (Dm)) )
#define vbsl_f32(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3100110, (Dd), (Dn), (Dm)) )
#define vbsl_p16(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3100110, (Dd), (Dn), (Dm)) )
#define vbsl_p8(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3100110, (Dd), (Dn), (Dm)) )
#define vbsl_s16(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3100110, (Dd), (Dn), (Dm)) )
#define vbsl_s32(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3100110, (Dd), (Dn), (Dm)) )
#define vbsl_s64(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3100110, (Dd), (Dn), (Dm)) )
#define vbsl_s8(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3100110, (Dd), (Dn), (Dm)) )
#define vbsl_u16(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3100110, (Dd), (Dn), (Dm)) )
#define vbsl_u32(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3100110, (Dd), (Dn), (Dm)) )
#define vbsl_u64(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3100110, (Dd), (Dn), (Dm)) )
#define vbsl_u8(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3100110, (Dd), (Dn), (Dm)) )
#define vbifq_f32(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3300150, (Qd), (Qn), (Qm)) )
#define vbifq_p16(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3300150, (Qd), (Qn), (Qm)) )
#define vbifq_p8(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3300150, (Qd), (Qn), (Qm)) )
#define vbifq_s16(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3300150, (Qd), (Qn), (Qm)) )
#define vbifq_s32(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3300150, (Qd), (Qn), (Qm)) )
#define vbifq_s64(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3300150, (Qd), (Qn), (Qm)) )
#define vbifq_s8(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3300150, (Qd), (Qn), (Qm)) )
#define vbifq_u16(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3300150, (Qd), (Qn), (Qm)) )
#define vbifq_u32(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3300150, (Qd), (Qn), (Qm)) )
#define vbifq_u64(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3300150, (Qd), (Qn), (Qm)) )
#define vbifq_u8(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3300150, (Qd), (Qn), (Qm)) )
#define vbitq_f32(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3200150, (Qd), (Qn), (Qm)) )
#define vbitq_p16(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3200150, (Qd), (Qn), (Qm)) )
#define vbitq_p8(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3200150, (Qd), (Qn), (Qm)) )
#define vbitq_s16(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3200150, (Qd), (Qn), (Qm)) )
#define vbitq_s32(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3200150, (Qd), (Qn), (Qm)) )
#define vbitq_s64(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3200150, (Qd), (Qn), (Qm)) )
#define vbitq_s8(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3200150, (Qd), (Qn), (Qm)) )
#define vbitq_u16(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3200150, (Qd), (Qn), (Qm)) )
#define vbitq_u32(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3200150, (Qd), (Qn), (Qm)) )
#define vbitq_u64(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3200150, (Qd), (Qn), (Qm)) )
#define vbitq_u8(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3200150, (Qd), (Qn), (Qm)) )
#define vbslq_f32(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3100150, (Qd), (Qn), (Qm)) )
#define vbslq_p16(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3100150, (Qd), (Qn), (Qm)) )
#define vbslq_p8(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3100150, (Qd), (Qn), (Qm)) )
#define vbslq_s16(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3100150, (Qd), (Qn), (Qm)) )
#define vbslq_s32(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3100150, (Qd), (Qn), (Qm)) )
#define vbslq_s64(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3100150, (Qd), (Qn), (Qm)) )
#define vbslq_s8(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3100150, (Qd), (Qn), (Qm)) )
#define vbslq_u16(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3100150, (Qd), (Qn), (Qm)) )
#define vbslq_u32(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3100150, (Qd), (Qn), (Qm)) )
#define vbslq_u64(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3100150, (Qd), (Qn), (Qm)) )
#define vbslq_u8(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3100150, (Qd), (Qn), (Qm)) )
// VCEQ (register)
#define vceq_f32(Dn, Dm) ( __neon_DdDnDm( 0xf2000e00, (Dn), (Dm)) )
#define vceq_p8(Dn, Dm) ( __neon_DdDnDm( 0xf3000810, (Dn), (Dm)) )
#define vceq_s16(Dn, Dm) ( __neon_DdDnDm( 0xf3100810, (Dn), (Dm)) )
#define vceq_s32(Dn, Dm) ( __neon_DdDnDm( 0xf3200810, (Dn), (Dm)) )
#define vceq_s8(Dn, Dm) ( __neon_DdDnDm( 0xf3000810, (Dn), (Dm)) )
#define vceq_u16(Dn, Dm) ( __neon_DdDnDm( 0xf3100810, (Dn), (Dm)) )
#define vceq_u32(Dn, Dm) ( __neon_DdDnDm( 0xf3200810, (Dn), (Dm)) )
#define vceq_u8(Dn, Dm) ( __neon_DdDnDm( 0xf3000810, (Dn), (Dm)) )
#define vceqq_f32(Qn, Qm) ( __neon_QdQnQm( 0xf2000e40, (Qn), (Qm)) )
#define vceqq_p8(Qn, Qm) ( __neon_QdQnQm( 0xf3000850, (Qn), (Qm)) )
#define vceqq_s16(Qn, Qm) ( __neon_QdQnQm( 0xf3100850, (Qn), (Qm)) )
#define vceqq_s32(Qn, Qm) ( __neon_QdQnQm( 0xf3200850, (Qn), (Qm)) )
#define vceqq_s8(Qn, Qm) ( __neon_QdQnQm( 0xf3000850, (Qn), (Qm)) )
#define vceqq_u16(Qn, Qm) ( __neon_QdQnQm( 0xf3100850, (Qn), (Qm)) )
#define vceqq_u32(Qn, Qm) ( __neon_QdQnQm( 0xf3200850, (Qn), (Qm)) )
#define vceqq_u8(Qn, Qm) ( __neon_QdQnQm( 0xf3000850, (Qn), (Qm)) )
// VCGE, VCLE (register)
#define vcge_f32(Dn, Dm) ( __neon_DdDnDm( 0xf3000e00, (Dn), (Dm)) )
#define vcge_s16(Dn, Dm) ( __neon_DdDnDm( 0xf2100310, (Dn), (Dm)) )
#define vcge_s32(Dn, Dm) ( __neon_DdDnDm( 0xf2200310, (Dn), (Dm)) )
#define vcge_s8(Dn, Dm) ( __neon_DdDnDm( 0xf2000310, (Dn), (Dm)) )
#define vcge_u16(Dn, Dm) ( __neon_DdDnDm( 0xf3100310, (Dn), (Dm)) )
#define vcge_u32(Dn, Dm) ( __neon_DdDnDm( 0xf3200310, (Dn), (Dm)) )
#define vcge_u8(Dn, Dm) ( __neon_DdDnDm( 0xf3000310, (Dn), (Dm)) )
#define vcle_f32(Dn, Dm) ( __neon_DdDnDm( 0xf3000e00, (Dm), (Dn)) )
#define vcle_s16(Dn, Dm) ( __neon_DdDnDm( 0xf2100310, (Dm), (Dn)) )
#define vcle_s32(Dn, Dm) ( __neon_DdDnDm( 0xf2200310, (Dm), (Dn)) )
#define vcle_s8(Dn, Dm) ( __neon_DdDnDm( 0xf2000310, (Dm), (Dn)) )
#define vcle_u16(Dn, Dm) ( __neon_DdDnDm( 0xf3100310, (Dm), (Dn)) )
#define vcle_u32(Dn, Dm) ( __neon_DdDnDm( 0xf3200310, (Dm), (Dn)) )
#define vcle_u8(Dn, Dm) ( __neon_DdDnDm( 0xf3000310, (Dm), (Dn)) )
#define vcgeq_f32(Qn, Qm) ( __neon_QdQnQm( 0xf3000e40, (Qn), (Qm)) )
#define vcgeq_s16(Qn, Qm) ( __neon_QdQnQm( 0xf2100350, (Qn), (Qm)) )
#define vcgeq_s32(Qn, Qm) ( __neon_QdQnQm( 0xf2200350, (Qn), (Qm)) )
#define vcgeq_s8(Qn, Qm) ( __neon_QdQnQm( 0xf2000350, (Qn), (Qm)) )
#define vcgeq_u16(Qn, Qm) ( __neon_QdQnQm( 0xf3100350, (Qn), (Qm)) )
#define vcgeq_u32(Qn, Qm) ( __neon_QdQnQm( 0xf3200350, (Qn), (Qm)) )
#define vcgeq_u8(Qn, Qm) ( __neon_QdQnQm( 0xf3000350, (Qn), (Qm)) )
#define vcleq_f32(Qn, Qm) ( __neon_QdQnQm( 0xf3000e40, (Qm), (Qn)) )
#define vcleq_s16(Qn, Qm) ( __neon_QdQnQm( 0xf2100350, (Qm), (Qn)) )
#define vcleq_s32(Qn, Qm) ( __neon_QdQnQm( 0xf2200350, (Qm), (Qn)) )
#define vcleq_s8(Qn, Qm) ( __neon_QdQnQm( 0xf2000350, (Qm), (Qn)) )
#define vcleq_u16(Qn, Qm) ( __neon_QdQnQm( 0xf3100350, (Qm), (Qn)) )
#define vcleq_u32(Qn, Qm) ( __neon_QdQnQm( 0xf3200350, (Qm), (Qn)) )
#define vcleq_u8(Qn, Qm) ( __neon_QdQnQm( 0xf3000350, (Qm), (Qn)) )
// VCGT, VCLT (register)
#define vcgt_f32(Dn, Dm) ( __neon_DdDnDm( 0xf3200e00, (Dn), (Dm)) )
#define vcgt_s16(Dn, Dm) ( __neon_DdDnDm( 0xf2100300, (Dn), (Dm)) )
#define vcgt_s32(Dn, Dm) ( __neon_DdDnDm( 0xf2200300, (Dn), (Dm)) )
#define vcgt_s8(Dn, Dm) ( __neon_DdDnDm( 0xf2000300, (Dn), (Dm)) )
#define vcgt_u16(Dn, Dm) ( __neon_DdDnDm( 0xf3100300, (Dn), (Dm)) )
#define vcgt_u32(Dn, Dm) ( __neon_DdDnDm( 0xf3200300, (Dn), (Dm)) )
#define vcgt_u8(Dn, Dm) ( __neon_DdDnDm( 0xf3000300, (Dn), (Dm)) )
#define vclt_f32(Dn, Dm) ( __neon_DdDnDm( 0xf3200e00, (Dm), (Dn)) )
#define vclt_s16(Dn, Dm) ( __neon_DdDnDm( 0xf2100300, (Dm), (Dn)) )
#define vclt_s32(Dn, Dm) ( __neon_DdDnDm( 0xf2200300, (Dm), (Dn)) )
#define vclt_s8(Dn, Dm) ( __neon_DdDnDm( 0xf2000300, (Dm), (Dn)) )
#define vclt_u16(Dn, Dm) ( __neon_DdDnDm( 0xf3100300, (Dm), (Dn)) )
#define vclt_u32(Dn, Dm) ( __neon_DdDnDm( 0xf3200300, (Dm), (Dn)) )
#define vclt_u8(Dn, Dm) ( __neon_DdDnDm( 0xf3000300, (Dm), (Dn)) )
#define vcgtq_f32(Qn, Qm) ( __neon_QdQnQm( 0xf3200e40, (Qn), (Qm)) )
#define vcgtq_s16(Qn, Qm) ( __neon_QdQnQm( 0xf2100340, (Qn), (Qm)) )
#define vcgtq_s32(Qn, Qm) ( __neon_QdQnQm( 0xf2200340, (Qn), (Qm)) )
#define vcgtq_s8(Qn, Qm) ( __neon_QdQnQm( 0xf2000340, (Qn), (Qm)) )
#define vcgtq_u16(Qn, Qm) ( __neon_QdQnQm( 0xf3100340, (Qn), (Qm)) )
#define vcgtq_u32(Qn, Qm) ( __neon_QdQnQm( 0xf3200340, (Qn), (Qm)) )
#define vcgtq_u8(Qn, Qm) ( __neon_QdQnQm( 0xf3000340, (Qn), (Qm)) )
#define vcltq_f32(Qn, Qm) ( __neon_QdQnQm( 0xf3200e40, (Qm), (Qn)) )
#define vcltq_s16(Qn, Qm) ( __neon_QdQnQm( 0xf2100340, (Qm), (Qn)) )
#define vcltq_s32(Qn, Qm) ( __neon_QdQnQm( 0xf2200340, (Qm), (Qn)) )
#define vcltq_s8(Qn, Qm) ( __neon_QdQnQm( 0xf2000340, (Qm), (Qn)) )
#define vcltq_u16(Qn, Qm) ( __neon_QdQnQm( 0xf3100340, (Qm), (Qn)) )
#define vcltq_u32(Qn, Qm) ( __neon_QdQnQm( 0xf3200340, (Qm), (Qn)) )
#define vcltq_u8(Qn, Qm) ( __neon_QdQnQm( 0xf3000340, (Qm), (Qn)) )
// VCLS, VCLZ
#define vcls_s16(Dm) ( __neon_DdDm( 0xf3b40400, (Dm)) )
#define vcls_s32(Dm) ( __neon_DdDm( 0xf3b80400, (Dm)) )
#define vcls_s8(Dm) ( __neon_DdDm( 0xf3b00400, (Dm)) )
#define vclz_s16(Dm) ( __neon_DdDm( 0xf3b40480, (Dm)) )
#define vclz_s32(Dm) ( __neon_DdDm( 0xf3b80480, (Dm)) )
#define vclz_s8(Dm) ( __neon_DdDm( 0xf3b00480, (Dm)) )
#define vclz_u16(Dm) ( __neon_DdDm( 0xf3b40480, (Dm)) )
#define vclz_u32(Dm) ( __neon_DdDm( 0xf3b80480, (Dm)) )
#define vclz_u8(Dm) ( __neon_DdDm( 0xf3b00480, (Dm)) )
#define vclsq_s16(Qm) ( __neon_QdQm( 0xf3b40440, (Qm)) )
#define vclsq_s32(Qm) ( __neon_QdQm( 0xf3b80440, (Qm)) )
#define vclsq_s8(Qm) ( __neon_QdQm( 0xf3b00440, (Qm)) )
#define vclzq_s16(Qm) ( __neon_QdQm( 0xf3b404c0, (Qm)) )
#define vclzq_s32(Qm) ( __neon_QdQm( 0xf3b804c0, (Qm)) )
#define vclzq_s8(Qm) ( __neon_QdQm( 0xf3b004c0, (Qm)) )
#define vclzq_u16(Qm) ( __neon_QdQm( 0xf3b404c0, (Qm)) )
#define vclzq_u32(Qm) ( __neon_QdQm( 0xf3b804c0, (Qm)) )
#define vclzq_u8(Qm) ( __neon_QdQm( 0xf3b004c0, (Qm)) )
// VCNT
#define vcnt_p8(Dm) ( __neon_DdDm( 0xf3b00500, (Dm)) )
#define vcnt_s8(Dm) ( __neon_DdDm( 0xf3b00500, (Dm)) )
#define vcnt_u8(Dm) ( __neon_DdDm( 0xf3b00500, (Dm)) )
#define vcntq_p8(Qm) ( __neon_QdQm( 0xf3b00540, (Qm)) )
#define vcntq_s8(Qm) ( __neon_QdQm( 0xf3b00540, (Qm)) )
#define vcntq_u8(Qm) ( __neon_QdQm( 0xf3b00540, (Qm)) )
// VCOMBINE (combine 2x64bit into a 128bit register)
#define vcombine_f32(Dn, Dm) ( __neon_QdDnDm_merge( 0x00000000, (Dn), (Dm)) )
#define vcombine_p16(Dn, Dm) ( __neon_QdDnDm_merge( 0x00000000, (Dn), (Dm)) )
#define vcombine_p8(Dn, Dm) ( __neon_QdDnDm_merge( 0x00000000, (Dn), (Dm)) )
#define vcombine_s16(Dn, Dm) ( __neon_QdDnDm_merge( 0x00000000, (Dn), (Dm)) )
#define vcombine_s32(Dn, Dm) ( __neon_QdDnDm_merge( 0x00000000, (Dn), (Dm)) )
#define vcombine_s64(Dn, Dm) ( __neon_QdDnDm_merge( 0x00000000, (Dn), (Dm)) )
#define vcombine_s8(Dn, Dm) ( __neon_QdDnDm_merge( 0x00000000, (Dn), (Dm)) )
#define vcombine_u16(Dn, Dm) ( __neon_QdDnDm_merge( 0x00000000, (Dn), (Dm)) )
#define vcombine_u32(Dn, Dm) ( __neon_QdDnDm_merge( 0x00000000, (Dn), (Dm)) )
#define vcombine_u64(Dn, Dm) ( __neon_QdDnDm_merge( 0x00000000, (Dn), (Dm)) )
#define vcombine_u8(Dn, Dm) ( __neon_QdDnDm_merge( 0x00000000, (Dn), (Dm)) )
// VCREATE (ARM core register pair to Neon 64bit register)
#define vcreate_f32(R64t) ( __neon_DdRtRt2( 0xec400b10, __uint64ToInt64(R64t)) )
#define vcreate_p16(R64t) ( __neon_DdRtRt2( 0xec400b10, __uint64ToInt64(R64t)) )
#define vcreate_p8(R64t) ( __neon_DdRtRt2( 0xec400b10, __uint64ToInt64(R64t)) )
#define vcreate_s16(R64t) ( __neon_DdRtRt2( 0xec400b10, __uint64ToInt64(R64t)) )
#define vcreate_s32(R64t) ( __neon_DdRtRt2( 0xec400b10, __uint64ToInt64(R64t)) )
#define vcreate_s64(R64t) ( __neon_DdRtRt2( 0xec400b10, __uint64ToInt64(R64t)) )
#define vcreate_s8(R64t) ( __neon_DdRtRt2( 0xec400b10, __uint64ToInt64(R64t)) )
#define vcreate_u16(R64t) ( __neon_DdRtRt2( 0xec400b10, __uint64ToInt64(R64t)) )
#define vcreate_u32(R64t) ( __neon_DdRtRt2( 0xec400b10, __uint64ToInt64(R64t)) )
#define vcreate_u64(R64t) ( __neon_DdRtRt2( 0xec400b10, __uint64ToInt64(R64t)) )
#define vcreate_u8(R64t) ( __neon_DdRtRt2( 0xec400b10, __uint64ToInt64(R64t)) )
// VCVT (between floating-point and fixed-point)
#define vcvt_n_f32_s32(Dm, fbits) ( __static_assert((fbits) >= 1 && (fbits) <= 32, "invalid fbits value"), __neon_DdDm( 0xf2800e10 | _NENC_21_16(64 - (fbits)), (Dm)) )
#define vcvt_n_f32_u32(Dm, fbits) ( __static_assert((fbits) >= 1 && (fbits) <= 32, "invalid fbits value"), __neon_DdDm( 0xf3800e10 | _NENC_21_16(64 - (fbits)), (Dm)) )
#define vcvt_n_s32_f32(Dm, fbits) ( __static_assert((fbits) >= 1 && (fbits) <= 32, "invalid fbits value"), __neon_DdDm( 0xf2800f10 | _NENC_21_16(64 - (fbits)), (Dm)) )
#define vcvt_n_u32_f32(Dm, fbits) ( __static_assert((fbits) >= 1 && (fbits) <= 32, "invalid fbits value"), __neon_DdDm( 0xf3800f10 | _NENC_21_16(64 - (fbits)), (Dm)) )
#define vcvtq_n_f32_s32(Qm, fbits) ( __static_assert((fbits) >= 1 && (fbits) <= 32, "invalid fbits value"), __neon_QdQm( 0xf2800e50 | _NENC_21_16(64 - (fbits)), (Qm)) )
#define vcvtq_n_f32_u32(Qm, fbits) ( __static_assert((fbits) >= 1 && (fbits) <= 32, "invalid fbits value"), __neon_QdQm( 0xf3800e50 | _NENC_21_16(64 - (fbits)), (Qm)) )
#define vcvtq_n_s32_f32(Qm, fbits) ( __static_assert((fbits) >= 1 && (fbits) <= 32, "invalid fbits value"), __neon_QdQm( 0xf2800f50 | _NENC_21_16(64 - (fbits)), (Qm)) )
#define vcvtq_n_u32_f32(Qm, fbits) ( __static_assert((fbits) >= 1 && (fbits) <= 32, "invalid fbits value"), __neon_QdQm( 0xf3800f50 | _NENC_21_16(64 - (fbits)), (Qm)) )
// VCVT (between floating-point and integer)
#define vcvt_f32_s32(Dm) ( __neon_DdDm( 0xf3bb0600, (Dm)) )
#define vcvt_f32_u32(Dm) ( __neon_DdDm( 0xf3bb0680, (Dm)) )
#define vcvt_s32_f32(Dm) ( __neon_DdDm( 0xf3bb0700, (Dm)) )
#define vcvt_u32_f32(Dm) ( __neon_DdDm( 0xf3bb0780, (Dm)) )
#define vcvtq_f32_s32(Qm) ( __neon_QdQm( 0xf3bb0640, (Qm)) )
#define vcvtq_f32_u32(Qm) ( __neon_QdQm( 0xf3bb06c0, (Qm)) )
#define vcvtq_s32_f32(Qm) ( __neon_QdQm( 0xf3bb0740, (Qm)) )
#define vcvtq_u32_f32(Qm) ( __neon_QdQm( 0xf3bb07c0, (Qm)) )
// VDUP (scalar)
#define vdup_lane_f32(Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_DdDm( 0xf3b40c00 | _NENC_19(lane), (Dm)) )
#define vdup_lane_p16(Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_DdDm( 0xf3b20c00 | _NENC_19_18(lane), (Dm)) )
#define vdup_lane_p8(Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_DdDm( 0xf3b10c00 | _NENC_19_17(lane), (Dm)) )
#define vdup_lane_s16(Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_DdDm( 0xf3b20c00 | _NENC_19_18(lane), (Dm)) )
#define vdup_lane_s32(Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_DdDm( 0xf3b40c00 | _NENC_19(lane), (Dm)) )
#define vdup_lane_s8(Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_DdDm( 0xf3b10c00 | _NENC_19_17(lane), (Dm)) )
#define vdup_lane_u16(Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_DdDm( 0xf3b20c00 | _NENC_19_18(lane), (Dm)) )
#define vdup_lane_u32(Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_DdDm( 0xf3b40c00 | _NENC_19(lane), (Dm)) )
#define vdup_lane_u8(Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_DdDm( 0xf3b10c00 | _NENC_19_17(lane), (Dm)) )
#define vdupq_lane_f32(Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_QdDm( 0xf3b40c40 | _NENC_19(lane), (Dm)) )
#define vdupq_lane_p16(Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_QdDm( 0xf3b20c40 | _NENC_19_18(lane), (Dm)) )
#define vdupq_lane_p8(Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_QdDm( 0xf3b10c40 | _NENC_19_17(lane), (Dm)) )
#define vdupq_lane_s16(Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_QdDm( 0xf3b20c40 | _NENC_19_18(lane), (Dm)) )
#define vdupq_lane_s32(Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_QdDm( 0xf3b40c40 | _NENC_19(lane), (Dm)) )
#define vdupq_lane_s8(Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_QdDm( 0xf3b10c40 | _NENC_19_17(lane), (Dm)) )
#define vdupq_lane_u16(Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_QdDm( 0xf3b20c40 | _NENC_19_18(lane), (Dm)) )
#define vdupq_lane_u32(Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_QdDm( 0xf3b40c40 | _NENC_19(lane), (Dm)) )
#define vdupq_lane_u8(Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_QdDm( 0xf3b10c40 | _NENC_19_17(lane), (Dm)) )
// VDUP, VMOV (ARM core register to Neon register)
#define vdup_n_f32(Ft) ( __neon_DdFt( 0xee800b10, (Ft)) )
#define vmov_n_f32(Ft) ( __neon_DdFt( 0xee800b10, (Ft)) )
#define vdup_n_p16(Rt) ( __neon_DdRt( 0xee800b30, __poly16ToInt32(Rt)) )
#define vdup_n_p8(Rt) ( __neon_DdRt( 0xeec00b10, __poly8ToInt32(Rt)) )
#define vdup_n_s16(Rt) ( __neon_DdRt( 0xee800b30, __int16ToInt32(Rt)) )
#define vdup_n_s32(Rt) ( __neon_DdRt( 0xee800b10, __int32ToInt32(Rt)) )
#define vdup_n_s8(Rt) ( __neon_DdRt( 0xeec00b10, __int8ToInt32(Rt)) )
#define vdup_n_u16(Rt) ( __neon_DdRt( 0xee800b30, __uint16ToInt32(Rt)) )
#define vdup_n_u32(Rt) ( __neon_DdRt( 0xee800b10, __uint32ToInt32(Rt)) )
#define vdup_n_u8(Rt) ( __neon_DdRt( 0xeec00b10, __uint8ToInt32(Rt)) )
#define vmov_n_p16(Rt) ( __neon_DdRt( 0xee800b30, __poly16ToInt32(Rt)) )
#define vmov_n_p8(Rt) ( __neon_DdRt( 0xeec00b10, __poly8ToInt32(Rt)) )
#define vmov_n_s16(Rt) ( __neon_DdRt( 0xee800b30, __int16ToInt32(Rt)) )
#define vmov_n_s32(Rt) ( __neon_DdRt( 0xee800b10, __int32ToInt32(Rt)) )
#define vmov_n_s8(Rt) ( __neon_DdRt( 0xeec00b10, __int8ToInt32(Rt)) )
#define vmov_n_u16(Rt) ( __neon_DdRt( 0xee800b30, __uint16ToInt32(Rt)) )
#define vmov_n_u32(Rt) ( __neon_DdRt( 0xee800b10, __uint32ToInt32(Rt)) )
#define vmov_n_u8(Rt) ( __neon_DdRt( 0xeec00b10, __uint8ToInt32(Rt)) )
#define vdupq_n_f32(Ft) ( __neon_QdFt( 0xeea00b10, (Ft)) )
#define vmovq_n_f32(Ft) ( __neon_QdFt( 0xeea00b10, (Ft)) )
#define vdupq_n_p16(Rt) ( __neon_QdRt( 0xeea00b30, __poly16ToInt32(Rt)) )
#define vdupq_n_p8(Rt) ( __neon_QdRt( 0xeee00b10, __poly8ToInt32(Rt)) )
#define vdupq_n_s16(Rt) ( __neon_QdRt( 0xeea00b30, __int16ToInt32(Rt)) )
#define vdupq_n_s32(Rt) ( __neon_QdRt( 0xeea00b10, __int32ToInt32(Rt)) )
#define vdupq_n_s8(Rt) ( __neon_QdRt( 0xeee00b10, __int8ToInt32(Rt)) )
#define vdupq_n_u16(Rt) ( __neon_QdRt( 0xeea00b30, __uint16ToInt32(Rt)) )
#define vdupq_n_u32(Rt) ( __neon_QdRt( 0xeea00b10, __uint32ToInt32(Rt)) )
#define vdupq_n_u8(Rt) ( __neon_QdRt( 0xeee00b10, __uint8ToInt32(Rt)) )
#define vmovq_n_p16(Rt) ( __neon_QdRt( 0xeea00b30, __poly16ToInt32(Rt)) )
#define vmovq_n_p8(Rt) ( __neon_QdRt( 0xeee00b10, __poly8ToInt32(Rt)) )
#define vmovq_n_s16(Rt) ( __neon_QdRt( 0xeea00b30, __int16ToInt32(Rt)) )
#define vmovq_n_s32(Rt) ( __neon_QdRt( 0xeea00b10, __int32ToInt32(Rt)) )
#define vmovq_n_s8(Rt) ( __neon_QdRt( 0xeee00b10, __int8ToInt32(Rt)) )
#define vmovq_n_u16(Rt) ( __neon_QdRt( 0xeea00b30, __uint16ToInt32(Rt)) )
#define vmovq_n_u32(Rt) ( __neon_QdRt( 0xeea00b10, __uint32ToInt32(Rt)) )
#define vmovq_n_u8(Rt) ( __neon_QdRt( 0xeee00b10, __uint8ToInt32(Rt)) )
// VDUP.64, VMOV.64 (ARM core register pair to Neon registers)
#define vdup_n_s64(R64t) ( __neon_DdRtRt2( 0xec400b10, __int64ToInt64(R64t)) )
#define vdup_n_u64(R64t) ( __neon_DdRtRt2( 0xec400b10, __uint64ToInt64(R64t)) )
#define vmov_n_s64(R64t) ( __neon_DdRtRt2( 0xec400b10, __int64ToInt64(R64t)) )
#define vmov_n_u64(R64t) ( __neon_DdRtRt2( 0xec400b10, __uint64ToInt64(R64t)) )
#define vdupq_n_s64(R64t) ( __neon_QdRtRt2_dup( 0xec400b10, __int64ToInt64(R64t)) )
#define vdupq_n_u64(R64t) ( __neon_QdRtRt2_dup( 0xec400b10, __uint64ToInt64(R64t)) )
#define vmovq_n_s64(R64t) ( __neon_QdRtRt2_dup( 0xec400b10, __int64ToInt64(R64t)) )
#define vmovq_n_u64(R64t) ( __neon_QdRtRt2_dup( 0xec400b10, __uint64ToInt64(R64t)) )
// VEOR, VBIC, VORN
#define vbic_s16(Dn, Dm) ( __neon_DdDnDm( 0xf2100110, (Dn), (Dm)) )
#define vbic_s32(Dn, Dm) ( __neon_DdDnDm( 0xf2100110, (Dn), (Dm)) )
#define vbic_s64(Dn, Dm) ( __neon_DdDnDm( 0xf2100110, (Dn), (Dm)) )
#define vbic_s8(Dn, Dm) ( __neon_DdDnDm( 0xf2100110, (Dn), (Dm)) )
#define vbic_u16(Dn, Dm) ( __neon_DdDnDm( 0xf2100110, (Dn), (Dm)) )
#define vbic_u32(Dn, Dm) ( __neon_DdDnDm( 0xf2100110, (Dn), (Dm)) )
#define vbic_u64(Dn, Dm) ( __neon_DdDnDm( 0xf2100110, (Dn), (Dm)) )
#define vbic_u8(Dn, Dm) ( __neon_DdDnDm( 0xf2100110, (Dn), (Dm)) )
#define veor_s16(Dn, Dm) ( __neon_DdDnDm( 0xf3000110, (Dn), (Dm)) )
#define veor_s32(Dn, Dm) ( __neon_DdDnDm( 0xf3000110, (Dn), (Dm)) )
#define veor_s64(Dn, Dm) ( __neon_DdDnDm( 0xf3000110, (Dn), (Dm)) )
#define veor_s8(Dn, Dm) ( __neon_DdDnDm( 0xf3000110, (Dn), (Dm)) )
#define veor_u16(Dn, Dm) ( __neon_DdDnDm( 0xf3000110, (Dn), (Dm)) )
#define veor_u32(Dn, Dm) ( __neon_DdDnDm( 0xf3000110, (Dn), (Dm)) )
#define veor_u64(Dn, Dm) ( __neon_DdDnDm( 0xf3000110, (Dn), (Dm)) )
#define veor_u8(Dn, Dm) ( __neon_DdDnDm( 0xf3000110, (Dn), (Dm)) )
#define vorn_s16(Dn, Dm) ( __neon_DdDnDm( 0xf2300110, (Dn), (Dm)) )
#define vorn_s32(Dn, Dm) ( __neon_DdDnDm( 0xf2300110, (Dn), (Dm)) )
#define vorn_s64(Dn, Dm) ( __neon_DdDnDm( 0xf2300110, (Dn), (Dm)) )
#define vorn_s8(Dn, Dm) ( __neon_DdDnDm( 0xf2300110, (Dn), (Dm)) )
#define vorn_u16(Dn, Dm) ( __neon_DdDnDm( 0xf2300110, (Dn), (Dm)) )
#define vorn_u32(Dn, Dm) ( __neon_DdDnDm( 0xf2300110, (Dn), (Dm)) )
#define vorn_u64(Dn, Dm) ( __neon_DdDnDm( 0xf2300110, (Dn), (Dm)) )
#define vorn_u8(Dn, Dm) ( __neon_DdDnDm( 0xf2300110, (Dn), (Dm)) )
#define vbicq_s16(Qn, Qm) ( __neon_QdQnQm( 0xf2100150, (Qn), (Qm)) )
#define vbicq_s32(Qn, Qm) ( __neon_QdQnQm( 0xf2100150, (Qn), (Qm)) )
#define vbicq_s64(Qn, Qm) ( __neon_QdQnQm( 0xf2100150, (Qn), (Qm)) )
#define vbicq_s8(Qn, Qm) ( __neon_QdQnQm( 0xf2100150, (Qn), (Qm)) )
#define vbicq_u16(Qn, Qm) ( __neon_QdQnQm( 0xf2100150, (Qn), (Qm)) )
#define vbicq_u32(Qn, Qm) ( __neon_QdQnQm( 0xf2100150, (Qn), (Qm)) )
#define vbicq_u64(Qn, Qm) ( __neon_QdQnQm( 0xf2100150, (Qn), (Qm)) )
#define vbicq_u8(Qn, Qm) ( __neon_QdQnQm( 0xf2100150, (Qn), (Qm)) )
#define veorq_s16(Qn, Qm) ( __neon_QdQnQm( 0xf3000150, (Qn), (Qm)) )
#define veorq_s32(Qn, Qm) ( __neon_QdQnQm( 0xf3000150, (Qn), (Qm)) )
#define veorq_s64(Qn, Qm) ( __neon_QdQnQm( 0xf3000150, (Qn), (Qm)) )
#define veorq_s8(Qn, Qm) ( __neon_QdQnQm( 0xf3000150, (Qn), (Qm)) )
#define veorq_u16(Qn, Qm) ( __neon_QdQnQm( 0xf3000150, (Qn), (Qm)) )
#define veorq_u32(Qn, Qm) ( __neon_QdQnQm( 0xf3000150, (Qn), (Qm)) )
#define veorq_u64(Qn, Qm) ( __neon_QdQnQm( 0xf3000150, (Qn), (Qm)) )
#define veorq_u8(Qn, Qm) ( __neon_QdQnQm( 0xf3000150, (Qn), (Qm)) )
#define vornq_s16(Qn, Qm) ( __neon_QdQnQm( 0xf2300150, (Qn), (Qm)) )
#define vornq_s32(Qn, Qm) ( __neon_QdQnQm( 0xf2300150, (Qn), (Qm)) )
#define vornq_s64(Qn, Qm) ( __neon_QdQnQm( 0xf2300150, (Qn), (Qm)) )
#define vornq_s8(Qn, Qm) ( __neon_QdQnQm( 0xf2300150, (Qn), (Qm)) )
#define vornq_u16(Qn, Qm) ( __neon_QdQnQm( 0xf2300150, (Qn), (Qm)) )
#define vornq_u32(Qn, Qm) ( __neon_QdQnQm( 0xf2300150, (Qn), (Qm)) )
#define vornq_u64(Qn, Qm) ( __neon_QdQnQm( 0xf2300150, (Qn), (Qm)) )
#define vornq_u8(Qn, Qm) ( __neon_QdQnQm( 0xf2300150, (Qn), (Qm)) )
// VEXT
#define vext_f32(Dn, Dm, pos) ( __static_assert((pos) >= 0 && (pos) < 2, "invalid position value"), __neon_DdDnDm( 0xf2b00000 | _NENC_11_8((pos) * 4), (Dn), (Dm)) )
#define vext_p16(Dn, Dm, pos) ( __static_assert((pos) >= 0 && (pos) < 4, "invalid position value"), __neon_DdDnDm( 0xf2b00000 | _NENC_11_8((pos) * 2), (Dn), (Dm)) )
#define vext_p8(Dn, Dm, pos) ( __static_assert((pos) >= 0 && (pos) < 8, "invalid position value"), __neon_DdDnDm( 0xf2b00000 | _NENC_11_8(pos), (Dn), (Dm)) )
#define vext_s16(Dn, Dm, pos) ( __static_assert((pos) >= 0 && (pos) < 4, "invalid position value"), __neon_DdDnDm( 0xf2b00000 | _NENC_11_8((pos) * 2), (Dn), (Dm)) )
#define vext_s32(Dn, Dm, pos) ( __static_assert((pos) >= 0 && (pos) < 2, "invalid position value"), __neon_DdDnDm( 0xf2b00000 | _NENC_11_8((pos) * 4), (Dn), (Dm)) )
#define vext_s64(Dn, Dm, pos) ( __static_assert((pos) >= 0 && (pos) < 1, "invalid position value"), __neon_DdDnDm( 0xf2b00000 | _NENC_11_8((pos) * 8), (Dn), (Dm)) )
#define vext_s8(Dn, Dm, pos) ( __static_assert((pos) >= 0 && (pos) < 8, "invalid position value"), __neon_DdDnDm( 0xf2b00000 | _NENC_11_8(pos), (Dn), (Dm)) )
#define vext_u16(Dn, Dm, pos) ( __static_assert((pos) >= 0 && (pos) < 4, "invalid position value"), __neon_DdDnDm( 0xf2b00000 | _NENC_11_8((pos) * 2), (Dn), (Dm)) )
#define vext_u32(Dn, Dm, pos) ( __static_assert((pos) >= 0 && (pos) < 2, "invalid position value"), __neon_DdDnDm( 0xf2b00000 | _NENC_11_8((pos) * 4), (Dn), (Dm)) )
#define vext_u64(Dn, Dm, pos) ( __static_assert((pos) >= 0 && (pos) < 1, "invalid position value"), __neon_DdDnDm( 0xf2b00000 | _NENC_11_8((pos) * 8), (Dn), (Dm)) )
#define vext_u8(Dn, Dm, pos) ( __static_assert((pos) >= 0 && (pos) < 8, "invalid position value"), __neon_DdDnDm( 0xf2b00000 | _NENC_11_8(pos), (Dn), (Dm)) )
#define vextq_f32(Qn, Qm, pos) ( __static_assert((pos) >= 0 && (pos) < 4, "invalid position value"), __neon_QdQnQm( 0xf2b00040 | _NENC_11_8((pos) * 4), (Qn), (Qm)) )
#define vextq_p16(Qn, Qm, pos) ( __static_assert((pos) >= 0 && (pos) < 8, "invalid position value"), __neon_QdQnQm( 0xf2b00040 | _NENC_11_8((pos) * 2), (Qn), (Qm)) )
#define vextq_p8(Qn, Qm, pos) ( __static_assert((pos) >= 0 && (pos) < 16, "invalid position value"), __neon_QdQnQm( 0xf2b00040 | _NENC_11_8(pos), (Qn), (Qm)) )
#define vextq_s16(Qn, Qm, pos) ( __static_assert((pos) >= 0 && (pos) < 8, "invalid position value"), __neon_QdQnQm( 0xf2b00040 | _NENC_11_8((pos) * 2), (Qn), (Qm)) )
#define vextq_s32(Qn, Qm, pos) ( __static_assert((pos) >= 0 && (pos) < 4, "invalid position value"), __neon_QdQnQm( 0xf2b00040 | _NENC_11_8((pos) * 4), (Qn), (Qm)) )
#define vextq_s64(Qn, Qm, pos) ( __static_assert((pos) >= 0 && (pos) < 2, "invalid position value"), __neon_QdQnQm( 0xf2b00040 | _NENC_11_8((pos) * 8), (Qn), (Qm)) )
#define vextq_s8(Qn, Qm, pos) ( __static_assert((pos) >= 0 && (pos) < 16, "invalid position value"), __neon_QdQnQm( 0xf2b00040 | _NENC_11_8(pos), (Qn), (Qm)) )
#define vextq_u16(Qn, Qm, pos) ( __static_assert((pos) >= 0 && (pos) < 8, "invalid position value"), __neon_QdQnQm( 0xf2b00040 | _NENC_11_8((pos) * 2), (Qn), (Qm)) )
#define vextq_u32(Qn, Qm, pos) ( __static_assert((pos) >= 0 && (pos) < 4, "invalid position value"), __neon_QdQnQm( 0xf2b00040 | _NENC_11_8((pos) * 4), (Qn), (Qm)) )
#define vextq_u64(Qn, Qm, pos) ( __static_assert((pos) >= 0 && (pos) < 2, "invalid position value"), __neon_QdQnQm( 0xf2b00040 | _NENC_11_8((pos) * 8), (Qn), (Qm)) )
#define vextq_u8(Qn, Qm, pos) ( __static_assert((pos) >= 0 && (pos) < 16, "invalid position value"), __neon_QdQnQm( 0xf2b00040 | _NENC_11_8(pos), (Qn), (Qm)) )
// VGET (access the 64bit high/low part of a 128bit register)
#define vget_high_f32(Qm) ( __neon_DdQm_high( 0x00000000, (Qm)) )
#define vget_high_p16(Qm) ( __neon_DdQm_high( 0x00000000, (Qm)) )
#define vget_high_p8(Qm) ( __neon_DdQm_high( 0x00000000, (Qm)) )
#define vget_high_s16(Qm) ( __neon_DdQm_high( 0x00000000, (Qm)) )
#define vget_high_s32(Qm) ( __neon_DdQm_high( 0x00000000, (Qm)) )
#define vget_high_s64(Qm) ( __neon_DdQm_high( 0x00000000, (Qm)) )
#define vget_high_s8(Qm) ( __neon_DdQm_high( 0x00000000, (Qm)) )
#define vget_high_u16(Qm) ( __neon_DdQm_high( 0x00000000, (Qm)) )
#define vget_high_u32(Qm) ( __neon_DdQm_high( 0x00000000, (Qm)) )
#define vget_high_u64(Qm) ( __neon_DdQm_high( 0x00000000, (Qm)) )
#define vget_high_u8(Qm) ( __neon_DdQm_high( 0x00000000, (Qm)) )
#define vget_low_f32(Qm) ( __neon_DdQm_low( 0x00000000, (Qm)) )
#define vget_low_p16(Qm) ( __neon_DdQm_low( 0x00000000, (Qm)) )
#define vget_low_p8(Qm) ( __neon_DdQm_low( 0x00000000, (Qm)) )
#define vget_low_s16(Qm) ( __neon_DdQm_low( 0x00000000, (Qm)) )
#define vget_low_s32(Qm) ( __neon_DdQm_low( 0x00000000, (Qm)) )
#define vget_low_s64(Qm) ( __neon_DdQm_low( 0x00000000, (Qm)) )
#define vget_low_s8(Qm) ( __neon_DdQm_low( 0x00000000, (Qm)) )
#define vget_low_u16(Qm) ( __neon_DdQm_low( 0x00000000, (Qm)) )
#define vget_low_u32(Qm) ( __neon_DdQm_low( 0x00000000, (Qm)) )
#define vget_low_u64(Qm) ( __neon_DdQm_low( 0x00000000, (Qm)) )
#define vget_low_u8(Qm) ( __neon_DdQm_low( 0x00000000, (Qm)) )
// VHADD, VRHADD, VHSUB
#define vhadd_s16(Dn, Dm) ( __neon_DdDnDm( 0xf2100000, (Dn), (Dm)) )
#define vhadd_s32(Dn, Dm) ( __neon_DdDnDm( 0xf2200000, (Dn), (Dm)) )
#define vhadd_s8(Dn, Dm) ( __neon_DdDnDm( 0xf2000000, (Dn), (Dm)) )
#define vhadd_u16(Dn, Dm) ( __neon_DdDnDm( 0xf3100000, (Dn), (Dm)) )
#define vhadd_u32(Dn, Dm) ( __neon_DdDnDm( 0xf3200000, (Dn), (Dm)) )
#define vhadd_u8(Dn, Dm) ( __neon_DdDnDm( 0xf3000000, (Dn), (Dm)) )
#define vhsub_s16(Dn, Dm) ( __neon_DdDnDm( 0xf2100200, (Dn), (Dm)) )
#define vhsub_s32(Dn, Dm) ( __neon_DdDnDm( 0xf2200200, (Dn), (Dm)) )
#define vhsub_s8(Dn, Dm) ( __neon_DdDnDm( 0xf2000200, (Dn), (Dm)) )
#define vhsub_u16(Dn, Dm) ( __neon_DdDnDm( 0xf3100200, (Dn), (Dm)) )
#define vhsub_u32(Dn, Dm) ( __neon_DdDnDm( 0xf3200200, (Dn), (Dm)) )
#define vhsub_u8(Dn, Dm) ( __neon_DdDnDm( 0xf3000200, (Dn), (Dm)) )
#define vrhadd_s16(Dn, Dm) ( __neon_DdDnDm( 0xf2100100, (Dn), (Dm)) )
#define vrhadd_s32(Dn, Dm) ( __neon_DdDnDm( 0xf2200100, (Dn), (Dm)) )
#define vrhadd_s8(Dn, Dm) ( __neon_DdDnDm( 0xf2000100, (Dn), (Dm)) )
#define vrhadd_u16(Dn, Dm) ( __neon_DdDnDm( 0xf3100100, (Dn), (Dm)) )
#define vrhadd_u32(Dn, Dm) ( __neon_DdDnDm( 0xf3200100, (Dn), (Dm)) )
#define vrhadd_u8(Dn, Dm) ( __neon_DdDnDm( 0xf3000100, (Dn), (Dm)) )
#define vhaddq_s16(Qn, Qm) ( __neon_QdQnQm( 0xf2100040, (Qn), (Qm)) )
#define vhaddq_s32(Qn, Qm) ( __neon_QdQnQm( 0xf2200040, (Qn), (Qm)) )
#define vhaddq_s8(Qn, Qm) ( __neon_QdQnQm( 0xf2000040, (Qn), (Qm)) )
#define vhaddq_u16(Qn, Qm) ( __neon_QdQnQm( 0xf3100040, (Qn), (Qm)) )
#define vhaddq_u32(Qn, Qm) ( __neon_QdQnQm( 0xf3200040, (Qn), (Qm)) )
#define vhaddq_u8(Qn, Qm) ( __neon_QdQnQm( 0xf3000040, (Qn), (Qm)) )
#define vhsubq_s16(Qn, Qm) ( __neon_QdQnQm( 0xf2100240, (Qn), (Qm)) )
#define vhsubq_s32(Qn, Qm) ( __neon_QdQnQm( 0xf2200240, (Qn), (Qm)) )
#define vhsubq_s8(Qn, Qm) ( __neon_QdQnQm( 0xf2000240, (Qn), (Qm)) )
#define vhsubq_u16(Qn, Qm) ( __neon_QdQnQm( 0xf3100240, (Qn), (Qm)) )
#define vhsubq_u32(Qn, Qm) ( __neon_QdQnQm( 0xf3200240, (Qn), (Qm)) )
#define vhsubq_u8(Qn, Qm) ( __neon_QdQnQm( 0xf3000240, (Qn), (Qm)) )
#define vrhaddq_s16(Qn, Qm) ( __neon_QdQnQm( 0xf2100140, (Qn), (Qm)) )
#define vrhaddq_s32(Qn, Qm) ( __neon_QdQnQm( 0xf2200140, (Qn), (Qm)) )
#define vrhaddq_s8(Qn, Qm) ( __neon_QdQnQm( 0xf2000140, (Qn), (Qm)) )
#define vrhaddq_u16(Qn, Qm) ( __neon_QdQnQm( 0xf3100140, (Qn), (Qm)) )
#define vrhaddq_u32(Qn, Qm) ( __neon_QdQnQm( 0xf3200140, (Qn), (Qm)) )
#define vrhaddq_u8(Qn, Qm) ( __neon_QdQnQm( 0xf3000140, (Qn), (Qm)) )
// VLD1 (multiple single elements)
#define vld1_f32(pcD) ( __neon_D1Adr( 0xf420078f, __float32ToN64_c(pcD)) )
#define vld1_p16(pcD) ( __neon_D1Adr( 0xf420074f, __poly16ToN64_c(pcD)) )
#define vld1_p8(pcD) ( __neon_D1Adr( 0xf420070f, __poly8ToN64_c(pcD)) )
#define vld1_s16(pcD) ( __neon_D1Adr( 0xf420074f, __int16ToN64_c(pcD)) )
#define vld1_s32(pcD) ( __neon_D1Adr( 0xf420078f, __int32ToN64_c(pcD)) )
#define vld1_s64(pcD) ( __neon_D1Adr( 0xf42007cf, __int64ToN64_c(pcD)) )
#define vld1_s8(pcD) ( __neon_D1Adr( 0xf420070f, __int8ToN64_c(pcD)) )
#define vld1_u16(pcD) ( __neon_D1Adr( 0xf420074f, __uint16ToN64_c(pcD)) )
#define vld1_u32(pcD) ( __neon_D1Adr( 0xf420078f, __uint32ToN64_c(pcD)) )
#define vld1_u64(pcD) ( __neon_D1Adr( 0xf42007cf, __uint64ToN64_c(pcD)) )
#define vld1_u8(pcD) ( __neon_D1Adr( 0xf420070f, __uint8ToN64_c(pcD)) )
#define vld1_f32_ex(pcD, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_D1Adr( 0xf420078f | _NENC_5_4(_NEON_ALIGN64(align)), __float32ToN64_c(pcD)) )
#define vld1_p16_ex(pcD, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_D1Adr( 0xf420074f | _NENC_5_4(_NEON_ALIGN64(align)), __poly16ToN64_c(pcD)) )
#define vld1_p8_ex(pcD, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_D1Adr( 0xf420070f | _NENC_5_4(_NEON_ALIGN64(align)), __poly8ToN64_c(pcD)) )
#define vld1_s16_ex(pcD, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_D1Adr( 0xf420074f | _NENC_5_4(_NEON_ALIGN64(align)), __int16ToN64_c(pcD)) )
#define vld1_s32_ex(pcD, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_D1Adr( 0xf420078f | _NENC_5_4(_NEON_ALIGN64(align)), __int32ToN64_c(pcD)) )
#define vld1_s64_ex(pcD, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_D1Adr( 0xf42007cf | _NENC_5_4(_NEON_ALIGN64(align)), __int64ToN64_c(pcD)) )
#define vld1_s8_ex(pcD, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_D1Adr( 0xf420070f | _NENC_5_4(_NEON_ALIGN64(align)), __int8ToN64_c(pcD)) )
#define vld1_u16_ex(pcD, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_D1Adr( 0xf420074f | _NENC_5_4(_NEON_ALIGN64(align)), __uint16ToN64_c(pcD)) )
#define vld1_u32_ex(pcD, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_D1Adr( 0xf420078f | _NENC_5_4(_NEON_ALIGN64(align)), __uint32ToN64_c(pcD)) )
#define vld1_u64_ex(pcD, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_D1Adr( 0xf42007cf | _NENC_5_4(_NEON_ALIGN64(align)), __uint64ToN64_c(pcD)) )
#define vld1_u8_ex(pcD, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_D1Adr( 0xf420070f | _NENC_5_4(_NEON_ALIGN64(align)), __uint8ToN64_c(pcD)) )
#define vld1q_f32(pcD) ( __neon_Q1Adr( 0xf4200a8f, __float32ToN64_c(pcD)) )
#define vld1q_p16(pcD) ( __neon_Q1Adr( 0xf4200a4f, __poly16ToN64_c(pcD)) )
#define vld1q_p8(pcD) ( __neon_Q1Adr( 0xf4200a0f, __poly8ToN64_c(pcD)) )
#define vld1q_s16(pcD) ( __neon_Q1Adr( 0xf4200a4f, __int16ToN64_c(pcD)) )
#define vld1q_s32(pcD) ( __neon_Q1Adr( 0xf4200a8f, __int32ToN64_c(pcD)) )
#define vld1q_s64(pcD) ( __neon_Q1Adr( 0xf4200acf, __int64ToN64_c(pcD)) )
#define vld1q_s8(pcD) ( __neon_Q1Adr( 0xf4200a0f, __int8ToN64_c(pcD)) )
#define vld1q_u16(pcD) ( __neon_Q1Adr( 0xf4200a4f, __uint16ToN64_c(pcD)) )
#define vld1q_u32(pcD) ( __neon_Q1Adr( 0xf4200a8f, __uint32ToN64_c(pcD)) )
#define vld1q_u64(pcD) ( __neon_Q1Adr( 0xf4200acf, __uint64ToN64_c(pcD)) )
#define vld1q_u8(pcD) ( __neon_Q1Adr( 0xf4200a0f, __uint8ToN64_c(pcD)) )
#define vld1q_f32_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Q1Adr( 0xf4200a8f | _NENC_5_4(_NEON_ALIGN64_128(align)), __float32ToN64_c(pcD)) )
#define vld1q_p16_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Q1Adr( 0xf4200a4f | _NENC_5_4(_NEON_ALIGN64_128(align)), __poly16ToN64_c(pcD)) )
#define vld1q_p8_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Q1Adr( 0xf4200a0f | _NENC_5_4(_NEON_ALIGN64_128(align)), __poly8ToN64_c(pcD)) )
#define vld1q_s16_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Q1Adr( 0xf4200a4f | _NENC_5_4(_NEON_ALIGN64_128(align)), __int16ToN64_c(pcD)) )
#define vld1q_s32_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Q1Adr( 0xf4200a8f | _NENC_5_4(_NEON_ALIGN64_128(align)), __int32ToN64_c(pcD)) )
#define vld1q_s64_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Q1Adr( 0xf4200acf | _NENC_5_4(_NEON_ALIGN64_128(align)), __int64ToN64_c(pcD)) )
#define vld1q_s8_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Q1Adr( 0xf4200a0f | _NENC_5_4(_NEON_ALIGN64_128(align)), __int8ToN64_c(pcD)) )
#define vld1q_u16_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Q1Adr( 0xf4200a4f | _NENC_5_4(_NEON_ALIGN64_128(align)), __uint16ToN64_c(pcD)) )
#define vld1q_u32_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Q1Adr( 0xf4200a8f | _NENC_5_4(_NEON_ALIGN64_128(align)), __uint32ToN64_c(pcD)) )
#define vld1q_u64_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Q1Adr( 0xf4200acf | _NENC_5_4(_NEON_ALIGN64_128(align)), __uint64ToN64_c(pcD)) )
#define vld1q_u8_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Q1Adr( 0xf4200a0f | _NENC_5_4(_NEON_ALIGN64_128(align)), __uint8ToN64_c(pcD)) )
// VLD1 (single element to all lanes)
#define vld1_dup_f32(pcD) ( __neon_D1Adr( 0xf4a00c8f, __float32ToN64_c(pcD)) )
#define vld1_dup_p16(pcD) ( __neon_D1Adr( 0xf4a00c4f, __poly16ToN64_c(pcD)) )
#define vld1_dup_p8(pcD) ( __neon_D1Adr( 0xf4a00c0f, __poly8ToN64_c(pcD)) )
#define vld1_dup_s16(pcD) ( __neon_D1Adr( 0xf4a00c4f, __int16ToN64_c(pcD)) )
#define vld1_dup_s32(pcD) ( __neon_D1Adr( 0xf4a00c8f, __int32ToN64_c(pcD)) )
#define vld1_dup_s8(pcD) ( __neon_D1Adr( 0xf4a00c0f, __int8ToN64_c(pcD)) )
#define vld1_dup_u16(pcD) ( __neon_D1Adr( 0xf4a00c4f, __uint16ToN64_c(pcD)) )
#define vld1_dup_u32(pcD) ( __neon_D1Adr( 0xf4a00c8f, __uint32ToN64_c(pcD)) )
#define vld1_dup_u8(pcD) ( __neon_D1Adr( 0xf4a00c0f, __uint8ToN64_c(pcD)) )
#define vld1q_dup_f32(pcD) ( __neon_Q1Adr( 0xf4a00caf, __float32ToN64_c(pcD)) )
#define vld1q_dup_p16(pcD) ( __neon_Q1Adr( 0xf4a00c6f, __poly16ToN64_c(pcD)) )
#define vld1q_dup_p8(pcD) ( __neon_Q1Adr( 0xf4a00c2f, __poly8ToN64_c(pcD)) )
#define vld1q_dup_s16(pcD) ( __neon_Q1Adr( 0xf4a00c6f, __int16ToN64_c(pcD)) )
#define vld1q_dup_s32(pcD) ( __neon_Q1Adr( 0xf4a00caf, __int32ToN64_c(pcD)) )
#define vld1q_dup_s8(pcD) ( __neon_Q1Adr( 0xf4a00c2f, __int8ToN64_c(pcD)) )
#define vld1q_dup_u16(pcD) ( __neon_Q1Adr( 0xf4a00c6f, __uint16ToN64_c(pcD)) )
#define vld1q_dup_u32(pcD) ( __neon_Q1Adr( 0xf4a00caf, __uint32ToN64_c(pcD)) )
#define vld1q_dup_u8(pcD) ( __neon_Q1Adr( 0xf4a00c2f, __uint8ToN64_c(pcD)) )
// VLD1 (single element to all lanes, aligned)
#define vld1_dup_f32_ex(pcD, align) ( __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_D1Adr( 0xf4a00c8f | _NENC_4(_NEON_ALIGN32(align)), __float32ToN64_c(pcD)) )
#define vld1_dup_p16_ex(pcD, align) ( __static_assert(_NEON_ALIGN16(align) >= 0, "invalid align"), __neon_D1Adr( 0xf4a00c4f | _NENC_4(_NEON_ALIGN16(align)), __poly16ToN64_c(pcD)) )
#define vld1_dup_s16_ex(pcD, align) ( __static_assert(_NEON_ALIGN16(align) >= 0, "invalid align"), __neon_D1Adr( 0xf4a00c4f | _NENC_4(_NEON_ALIGN16(align)), __int16ToN64_c(pcD)) )
#define vld1_dup_s32_ex(pcD, align) ( __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_D1Adr( 0xf4a00c8f | _NENC_4(_NEON_ALIGN32(align)), __int32ToN64_c(pcD)) )
#define vld1_dup_u16_ex(pcD, align) ( __static_assert(_NEON_ALIGN16(align) >= 0, "invalid align"), __neon_D1Adr( 0xf4a00c4f | _NENC_4(_NEON_ALIGN16(align)), __uint16ToN64_c(pcD)) )
#define vld1_dup_u32_ex(pcD, align) ( __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_D1Adr( 0xf4a00c8f | _NENC_4(_NEON_ALIGN32(align)), __uint32ToN64_c(pcD)) )
#define vld1q_dup_f32_ex(pcD, align) ( __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_Q1Adr( 0xf4a00caf | _NENC_4(_NEON_ALIGN32(align)), __float32ToN64_c(pcD)) )
#define vld1q_dup_p16_ex(pcD, align) ( __static_assert(_NEON_ALIGN16(align) >= 0, "invalid align"), __neon_Q1Adr( 0xf4a00c6f | _NENC_4(_NEON_ALIGN16(align)), __poly16ToN64_c(pcD)) )
#define vld1q_dup_s16_ex(pcD, align) ( __static_assert(_NEON_ALIGN16(align) >= 0, "invalid align"), __neon_Q1Adr( 0xf4a00c6f | _NENC_4(_NEON_ALIGN16(align)), __int16ToN64_c(pcD)) )
#define vld1q_dup_s32_ex(pcD, align) ( __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_Q1Adr( 0xf4a00caf | _NENC_4(_NEON_ALIGN32(align)), __int32ToN64_c(pcD)) )
#define vld1q_dup_u16_ex(pcD, align) ( __static_assert(_NEON_ALIGN16(align) >= 0, "invalid align"), __neon_Q1Adr( 0xf4a00c6f | _NENC_4(_NEON_ALIGN16(align)), __uint16ToN64_c(pcD)) )
#define vld1q_dup_u32_ex(pcD, align) ( __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_Q1Adr( 0xf4a00caf | _NENC_4(_NEON_ALIGN32(align)), __uint32ToN64_c(pcD)) )
// VLD1 (single element to one lane)
#define vld1_lane_f32(pcD, Dd, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_D1Adr_acc( 0xf4a0080f | _NENC_7(lane), (Dd), __float32ToN64_c(pcD)) )
#define vld1_lane_p16(pcD, Dd, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_D1Adr_acc( 0xf4a0040f | _NENC_7_6(lane), (Dd), __poly16ToN64_c(pcD)) )
#define vld1_lane_p8(pcD, Dd, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_D1Adr_acc( 0xf4a0000f | _NENC_7_5(lane), (Dd), __poly8ToN64_c(pcD)) )
#define vld1_lane_s16(pcD, Dd, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_D1Adr_acc( 0xf4a0040f | _NENC_7_6(lane), (Dd), __int16ToN64_c(pcD)) )
#define vld1_lane_s32(pcD, Dd, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_D1Adr_acc( 0xf4a0080f | _NENC_7(lane), (Dd), __int32ToN64_c(pcD)) )
#define vld1_lane_s8(pcD, Dd, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_D1Adr_acc( 0xf4a0000f | _NENC_7_5(lane), (Dd), __int8ToN64_c(pcD)) )
#define vld1_lane_u16(pcD, Dd, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_D1Adr_acc( 0xf4a0040f | _NENC_7_6(lane), (Dd), __uint16ToN64_c(pcD)) )
#define vld1_lane_u32(pcD, Dd, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_D1Adr_acc( 0xf4a0080f | _NENC_7(lane), (Dd), __uint32ToN64_c(pcD)) )
#define vld1_lane_u8(pcD, Dd, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_D1Adr_acc( 0xf4a0000f | _NENC_7_5(lane), (Dd), __uint8ToN64_c(pcD)) )
#define vld1q_lane_f32(pcD, Qd, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_Q1Adr_acc( 0xf4a0080f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0), (Qd), __float32ToN64_c(pcD)) )
#define vld1q_lane_p16(pcD, Qd, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_Q1Adr_acc( 0xf4a0040f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0), (Qd), __poly16ToN64_c(pcD)) )
#define vld1q_lane_p8(pcD, Qd, lane) ( __static_assert((lane) >= 0 && (lane) < 16, "invalid lane index"), __neon_Q1Adr_acc( 0xf4a0000f | _NENC_7_5((lane) % 8) | _NENC_12((lane) >= 8 ? 1 : 0), (Qd), __poly8ToN64_c(pcD)) )
#define vld1q_lane_s16(pcD, Qd, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_Q1Adr_acc( 0xf4a0040f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0), (Qd), __int16ToN64_c(pcD)) )
#define vld1q_lane_s32(pcD, Qd, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_Q1Adr_acc( 0xf4a0080f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0), (Qd), __int32ToN64_c(pcD)) )
#define vld1q_lane_s8(pcD, Qd, lane) ( __static_assert((lane) >= 0 && (lane) < 16, "invalid lane index"), __neon_Q1Adr_acc( 0xf4a0000f | _NENC_7_5((lane) % 8) | _NENC_12((lane) >= 8 ? 1 : 0), (Qd), __int8ToN64_c(pcD)) )
#define vld1q_lane_u16(pcD, Qd, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_Q1Adr_acc( 0xf4a0040f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0), (Qd), __uint16ToN64_c(pcD)) )
#define vld1q_lane_u32(pcD, Qd, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_Q1Adr_acc( 0xf4a0080f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0), (Qd), __uint32ToN64_c(pcD)) )
#define vld1q_lane_u8(pcD, Qd, lane) ( __static_assert((lane) >= 0 && (lane) < 16, "invalid lane index"), __neon_Q1Adr_acc( 0xf4a0000f | _NENC_7_5((lane) % 8) | _NENC_12((lane) >= 8 ? 1 : 0), (Qd), __uint8ToN64_c(pcD)) )
// VLD1 (single element to one lane, aligned)
#define vld1_lane_f32_ex(pcD, Dd, lane, align) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_D1Adr_acc( 0xf4a0080f | _NENC_7(lane) | _NENC_5_4(_NEON_ALIGN32(align) > 0 ? 3 : 0), (Dd), __float32ToN64_c(pcD)) )
#define vld1_lane_p16_ex(pcD, Dd, lane, align) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __static_assert(_NEON_ALIGN16(align) >= 0, "invalid align"), __neon_D1Adr_acc( 0xf4a0040f | _NENC_7_6(lane) | _NENC_4(_NEON_ALIGN16(align)), (Dd), __poly16ToN64_c(pcD)) )
#define vld1_lane_s16_ex(pcD, Dd, lane, align) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __static_assert(_NEON_ALIGN16(align) >= 0, "invalid align"), __neon_D1Adr_acc( 0xf4a0040f | _NENC_7_6(lane) | _NENC_4(_NEON_ALIGN16(align)), (Dd), __int16ToN64_c(pcD)) )
#define vld1_lane_s32_ex(pcD, Dd, lane, align) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_D1Adr_acc( 0xf4a0080f | _NENC_7(lane) | _NENC_5_4(_NEON_ALIGN32(align) > 0 ? 3 : 0), (Dd), __int32ToN64_c(pcD)) )
#define vld1_lane_u16_ex(pcD, Dd, lane, align) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __static_assert(_NEON_ALIGN16(align) >= 0, "invalid align"), __neon_D1Adr_acc( 0xf4a0040f | _NENC_7_6(lane) | _NENC_4(_NEON_ALIGN16(align)), (Dd), __uint16ToN64_c(pcD)) )
#define vld1_lane_u32_ex(pcD, Dd, lane, align) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_D1Adr_acc( 0xf4a0080f | _NENC_7(lane) | _NENC_5_4(_NEON_ALIGN32(align) > 0 ? 3 : 0), (Dd), __uint32ToN64_c(pcD)) )
#define vld1q_lane_f32_ex(pcD, Qd, lane, align) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_Q1Adr_acc( 0xf4a0080f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0) | _NENC_5_4(_NEON_ALIGN32(align) > 0 ? 3 : 0), (Qd), __float32ToN64_c(pcD)) )
#define vld1q_lane_p16_ex(pcD, Qd, lane, align) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __static_assert(_NEON_ALIGN16(align) >= 0, "invalid align"), __neon_Q1Adr_acc( 0xf4a0040f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0) | _NENC_4(_NEON_ALIGN16(align)), (Qd), __poly16ToN64_c(pcD)) )
#define vld1q_lane_s16_ex(pcD, Qd, lane, align) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __static_assert(_NEON_ALIGN16(align) >= 0, "invalid align"), __neon_Q1Adr_acc( 0xf4a0040f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0) | _NENC_4(_NEON_ALIGN16(align)), (Qd), __int16ToN64_c(pcD)) )
#define vld1q_lane_s32_ex(pcD, Qd, lane, align) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_Q1Adr_acc( 0xf4a0080f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0) | _NENC_5_4(_NEON_ALIGN32(align) > 0 ? 3 : 0), (Qd), __int32ToN64_c(pcD)) )
#define vld1q_lane_u16_ex(pcD, Qd, lane, align) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __static_assert(_NEON_ALIGN16(align) >= 0, "invalid align"), __neon_Q1Adr_acc( 0xf4a0040f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0) | _NENC_4(_NEON_ALIGN16(align)), (Qd), __uint16ToN64_c(pcD)) )
#define vld1q_lane_u32_ex(pcD, Qd, lane, align) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_Q1Adr_acc( 0xf4a0080f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0) | _NENC_5_4(_NEON_ALIGN32(align) > 0 ? 3 : 0), (Qd), __uint32ToN64_c(pcD)) )
// VLD2 (multiple 2-element structures)
#define vld2_f32(pcD) ( __neon_Dx2Adr( 0xf420088f, __float32ToN64_c(pcD)) )
#define vld2_p16(pcD) ( __neon_Dx2Adr( 0xf420084f, __poly16ToN64_c(pcD)) )
#define vld2_p8(pcD) ( __neon_Dx2Adr( 0xf420080f, __poly8ToN64_c(pcD)) )
#define vld2_s16(pcD) ( __neon_Dx2Adr( 0xf420084f, __int16ToN64_c(pcD)) )
#define vld2_s32(pcD) ( __neon_Dx2Adr( 0xf420088f, __int32ToN64_c(pcD)) )
#define vld2_s8(pcD) ( __neon_Dx2Adr( 0xf420080f, __int8ToN64_c(pcD)) )
#define vld2_u16(pcD) ( __neon_Dx2Adr( 0xf420084f, __uint16ToN64_c(pcD)) )
#define vld2_u32(pcD) ( __neon_Dx2Adr( 0xf420088f, __uint32ToN64_c(pcD)) )
#define vld2_u8(pcD) ( __neon_Dx2Adr( 0xf420080f, __uint8ToN64_c(pcD)) )
#define vld2_s64(pcD) ( __neon_Dx2Adr( 0xf4200acf, __int64ToN64_c(pcD)) )
#define vld2_u64(pcD) ( __neon_Dx2Adr( 0xf4200acf, __uint64ToN64_c(pcD)) )
#define vld2_s64_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Dx2Adr( 0xf4200acf | _NENC_5_4(_NEON_ALIGN64_128(align)), __int64ToN64_c(pcD)) )
#define vld2_u64_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Dx2Adr( 0xf4200acf | _NENC_5_4(_NEON_ALIGN64_128(align)), __uint64ToN64_c(pcD)) )
#define vld2_f32_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Dx2Adr( 0xf420088f | _NENC_5_4(_NEON_ALIGN64_128(align)), __float32ToN64_c(pcD)) )
#define vld2_p16_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Dx2Adr( 0xf420084f | _NENC_5_4(_NEON_ALIGN64_128(align)), __poly16ToN64_c(pcD)) )
#define vld2_p8_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Dx2Adr( 0xf420080f | _NENC_5_4(_NEON_ALIGN64_128(align)), __poly8ToN64_c(pcD)) )
#define vld2_s16_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Dx2Adr( 0xf420084f | _NENC_5_4(_NEON_ALIGN64_128(align)), __int16ToN64_c(pcD)) )
#define vld2_s32_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Dx2Adr( 0xf420088f | _NENC_5_4(_NEON_ALIGN64_128(align)), __int32ToN64_c(pcD)) )
#define vld2_s8_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Dx2Adr( 0xf420080f | _NENC_5_4(_NEON_ALIGN64_128(align)), __int8ToN64_c(pcD)) )
#define vld2_u16_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Dx2Adr( 0xf420084f | _NENC_5_4(_NEON_ALIGN64_128(align)), __uint16ToN64_c(pcD)) )
#define vld2_u32_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Dx2Adr( 0xf420088f | _NENC_5_4(_NEON_ALIGN64_128(align)), __uint32ToN64_c(pcD)) )
#define vld2_u8_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Dx2Adr( 0xf420080f | _NENC_5_4(_NEON_ALIGN64_128(align)), __uint8ToN64_c(pcD)) )
#define vld2q_f32(pcD) ( __neon_Qx2Adr( 0xf420098f, __float32ToN64_c(pcD)) )
#define vld2q_p16(pcD) ( __neon_Qx2Adr( 0xf420094f, __poly16ToN64_c(pcD)) )
#define vld2q_p8(pcD) ( __neon_Qx2Adr( 0xf420090f, __poly8ToN64_c(pcD)) )
#define vld2q_s16(pcD) ( __neon_Qx2Adr( 0xf420094f, __int16ToN64_c(pcD)) )
#define vld2q_s32(pcD) ( __neon_Qx2Adr( 0xf420098f, __int32ToN64_c(pcD)) )
#define vld2q_s8(pcD) ( __neon_Qx2Adr( 0xf420090f, __int8ToN64_c(pcD)) )
#define vld2q_u16(pcD) ( __neon_Qx2Adr( 0xf420094f, __uint16ToN64_c(pcD)) )
#define vld2q_u32(pcD) ( __neon_Qx2Adr( 0xf420098f, __uint32ToN64_c(pcD)) )
#define vld2q_u8(pcD) ( __neon_Qx2Adr( 0xf420090f, __uint8ToN64_c(pcD)) )
#define vld2q_f32_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Qx2Adr( 0xf420098f | _NENC_5_4(_NEON_ALIGN64_128(align)), __float32ToN64_c(pcD)) )
#define vld2q_p16_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Qx2Adr( 0xf420094f | _NENC_5_4(_NEON_ALIGN64_128(align)), __poly16ToN64_c(pcD)) )
#define vld2q_p8_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Qx2Adr( 0xf420090f | _NENC_5_4(_NEON_ALIGN64_128(align)), __poly8ToN64_c(pcD)) )
#define vld2q_s16_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Qx2Adr( 0xf420094f | _NENC_5_4(_NEON_ALIGN64_128(align)), __int16ToN64_c(pcD)) )
#define vld2q_s32_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Qx2Adr( 0xf420098f | _NENC_5_4(_NEON_ALIGN64_128(align)), __int32ToN64_c(pcD)) )
#define vld2q_s8_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Qx2Adr( 0xf420090f | _NENC_5_4(_NEON_ALIGN64_128(align)), __int8ToN64_c(pcD)) )
#define vld2q_u16_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Qx2Adr( 0xf420094f | _NENC_5_4(_NEON_ALIGN64_128(align)), __uint16ToN64_c(pcD)) )
#define vld2q_u32_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Qx2Adr( 0xf420098f | _NENC_5_4(_NEON_ALIGN64_128(align)), __uint32ToN64_c(pcD)) )
#define vld2q_u8_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Qx2Adr( 0xf420090f | _NENC_5_4(_NEON_ALIGN64_128(align)), __uint8ToN64_c(pcD)) )
// VLD2 (single 2-element structure to all lanes)
#define vld2_dup_f32(pcD) ( __neon_Dx2Adr( 0xf4a00d8f, __float32ToN64_c(pcD)) )
#define vld2_dup_p16(pcD) ( __neon_Dx2Adr( 0xf4a00d4f, __poly16ToN64_c(pcD)) )
#define vld2_dup_p8(pcD) ( __neon_Dx2Adr( 0xf4a00d0f, __poly8ToN64_c(pcD)) )
#define vld2_dup_s16(pcD) ( __neon_Dx2Adr( 0xf4a00d4f, __int16ToN64_c(pcD)) )
#define vld2_dup_s32(pcD) ( __neon_Dx2Adr( 0xf4a00d8f, __int32ToN64_c(pcD)) )
#define vld2_dup_s8(pcD) ( __neon_Dx2Adr( 0xf4a00d0f, __int8ToN64_c(pcD)) )
#define vld2_dup_u16(pcD) ( __neon_Dx2Adr( 0xf4a00d4f, __uint16ToN64_c(pcD)) )
#define vld2_dup_u32(pcD) ( __neon_Dx2Adr( 0xf4a00d8f, __uint32ToN64_c(pcD)) )
#define vld2_dup_u8(pcD) ( __neon_Dx2Adr( 0xf4a00d0f, __uint8ToN64_c(pcD)) )
#define vld2_dup_s64(pcD) ( __neon_Dx2Adr( 0xf4200acf, __int64ToN64_c(pcD)) )
#define vld2_dup_u64(pcD) ( __neon_Dx2Adr( 0xf4200acf, __uint64ToN64_c(pcD)) )
// VLD2 (single 2-element structure to all lanes, aligned)
#define vld2_dup_s64_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Dx2Adr( 0xf4200acf | _NENC_5_4(_NEON_ALIGN64_128(align)), __int64ToN64_c(pcD)) )
#define vld2_dup_u64_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Dx2Adr( 0xf4200acf | _NENC_5_4(_NEON_ALIGN64_128(align)), __uint64ToN64_c(pcD)) )
#define vld2_dup_f32_ex(pcD, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_Dx2Adr( 0xf4a00d8f | _NENC_4(_NEON_ALIGN64(align)), __float32ToN64_c(pcD)) )
#define vld2_dup_p16_ex(pcD, align) ( __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_Dx2Adr( 0xf4a00d4f | _NENC_4(_NEON_ALIGN32(align)), __poly16ToN64_c(pcD)) )
#define vld2_dup_p8_ex(pcD, align) ( __static_assert(_NEON_ALIGN16(align) >= 0, "invalid align"), __neon_Dx2Adr( 0xf4a00d0f | _NENC_4(_NEON_ALIGN16(align)), __poly8ToN64_c(pcD)) )
#define vld2_dup_s16_ex(pcD, align) ( __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_Dx2Adr( 0xf4a00d4f | _NENC_4(_NEON_ALIGN32(align)), __int16ToN64_c(pcD)) )
#define vld2_dup_s32_ex(pcD, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_Dx2Adr( 0xf4a00d8f | _NENC_4(_NEON_ALIGN64(align)), __int32ToN64_c(pcD)) )
#define vld2_dup_s8_ex(pcD, align) ( __static_assert(_NEON_ALIGN16(align) >= 0, "invalid align"), __neon_Dx2Adr( 0xf4a00d0f | _NENC_4(_NEON_ALIGN16(align)), __int8ToN64_c(pcD)) )
#define vld2_dup_u16_ex(pcD, align) ( __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_Dx2Adr( 0xf4a00d4f | _NENC_4(_NEON_ALIGN32(align)), __uint16ToN64_c(pcD)) )
#define vld2_dup_u32_ex(pcD, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_Dx2Adr( 0xf4a00d8f | _NENC_4(_NEON_ALIGN64(align)), __uint32ToN64_c(pcD)) )
#define vld2_dup_u8_ex(pcD, align) ( __static_assert(_NEON_ALIGN16(align) >= 0, "invalid align"), __neon_Dx2Adr( 0xf4a00d0f | _NENC_4(_NEON_ALIGN16(align)), __uint8ToN64_c(pcD)) )
// VLD2 (single 2-element structure to one lane)
#define vld2_lane_f32(pcD, D2, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_Dx2Adr_acc( 0xf4a0090f | _NENC_7(lane), (D2), __float32ToN64_c(pcD)) )
#define vld2_lane_p16(pcD, D2, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_Dx2Adr_acc( 0xf4a0050f | _NENC_7_6(lane), (D2), __poly16ToN64_c(pcD)) )
#define vld2_lane_p8(pcD, D2, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_Dx2Adr_acc( 0xf4a0010f | _NENC_7_5(lane), (D2), __poly8ToN64_c(pcD)) )
#define vld2_lane_s16(pcD, D2, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_Dx2Adr_acc( 0xf4a0050f | _NENC_7_6(lane), (D2), __int16ToN64_c(pcD)) )
#define vld2_lane_s32(pcD, D2, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_Dx2Adr_acc( 0xf4a0090f | _NENC_7(lane), (D2), __int32ToN64_c(pcD)) )
#define vld2_lane_s8(pcD, D2, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_Dx2Adr_acc( 0xf4a0010f | _NENC_7_5(lane), (D2), __int8ToN64_c(pcD)) )
#define vld2_lane_u16(pcD, D2, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_Dx2Adr_acc( 0xf4a0050f | _NENC_7_6(lane), (D2), __uint16ToN64_c(pcD)) )
#define vld2_lane_u32(pcD, D2, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_Dx2Adr_acc( 0xf4a0090f | _NENC_7(lane), (D2), __uint32ToN64_c(pcD)) )
#define vld2_lane_u8(pcD, D2, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_Dx2Adr_acc( 0xf4a0010f | _NENC_7_5(lane), (D2), __uint8ToN64_c(pcD)) )
#define vld2q_lane_f32(pcD, Q2, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_Qx2Adr_acc( 0xf4a0094f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0), (Q2), __float32ToN64_c(pcD)) )
#define vld2q_lane_p16(pcD, Q2, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_Qx2Adr_acc( 0xf4a0052f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0), (Q2), __poly16ToN64_c(pcD)) )
#define vld2q_lane_s16(pcD, Q2, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_Qx2Adr_acc( 0xf4a0052f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0), (Q2), __int16ToN64_c(pcD)) )
#define vld2q_lane_s32(pcD, Q2, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_Qx2Adr_acc( 0xf4a0094f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0), (Q2), __int32ToN64_c(pcD)) )
#define vld2q_lane_u16(pcD, Q2, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_Qx2Adr_acc( 0xf4a0052f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0), (Q2), __uint16ToN64_c(pcD)) )
#define vld2q_lane_u32(pcD, Q2, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_Qx2Adr_acc( 0xf4a0094f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0), (Q2), __uint32ToN64_c(pcD)) )
// VLD2 (single 2-element structure to one lane, aligned)
#define vld2_lane_f32_ex(pcD, D2, lane, align) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_Dx2Adr_acc( 0xf4a0090f | _NENC_7(lane) | _NENC_4(_NEON_ALIGN64(align)), (D2), __float32ToN64_c(pcD)) )
#define vld2_lane_p16_ex(pcD, D2, lane, align) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_Dx2Adr_acc( 0xf4a0050f | _NENC_7_6(lane) | _NENC_4(_NEON_ALIGN32(align)), (D2), __poly16ToN64_c(pcD)) )
#define vld2_lane_p8_ex(pcD, D2, lane, align) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __static_assert(_NEON_ALIGN16(align) >= 0, "invalid align"), __neon_Dx2Adr_acc( 0xf4a0010f | _NENC_7_5(lane) | _NENC_4(_NEON_ALIGN16(align)), (D2), __poly8ToN64_c(pcD)) )
#define vld2_lane_s16_ex(pcD, D2, lane, align) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_Dx2Adr_acc( 0xf4a0050f | _NENC_7_6(lane) | _NENC_4(_NEON_ALIGN32(align)), (D2), __int16ToN64_c(pcD)) )
#define vld2_lane_s32_ex(pcD, D2, lane, align) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_Dx2Adr_acc( 0xf4a0090f | _NENC_7(lane) | _NENC_4(_NEON_ALIGN64(align)), (D2), __int32ToN64_c(pcD)) )
#define vld2_lane_s8_ex(pcD, D2, lane, align) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __static_assert(_NEON_ALIGN16(align) >= 0, "invalid align"), __neon_Dx2Adr_acc( 0xf4a0010f | _NENC_7_5(lane) | _NENC_4(_NEON_ALIGN16(align)), (D2), __int8ToN64_c(pcD)) )
#define vld2_lane_u16_ex(pcD, D2, lane, align) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_Dx2Adr_acc( 0xf4a0050f | _NENC_7_6(lane) | _NENC_4(_NEON_ALIGN32(align)), (D2), __uint16ToN64_c(pcD)) )
#define vld2_lane_u32_ex(pcD, D2, lane, align) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_Dx2Adr_acc( 0xf4a0090f | _NENC_7(lane) | _NENC_4(_NEON_ALIGN64(align)), (D2), __uint32ToN64_c(pcD)) )
#define vld2_lane_u8_ex(pcD, D2, lane, align) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __static_assert(_NEON_ALIGN16(align) >= 0, "invalid align"), __neon_Dx2Adr_acc( 0xf4a0010f | _NENC_7_5(lane) | _NENC_4(_NEON_ALIGN16(align)), (D2), __uint8ToN64_c(pcD)) )
#define vld2q_lane_f32_ex(pcD, Q2, lane, align) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_Qx2Adr_acc( 0xf4a0094f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0) | _NENC_4(_NEON_ALIGN64(align)), (Q2), __float32ToN64_c(pcD)) )
#define vld2q_lane_p16_ex(pcD, Q2, lane, align) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_Qx2Adr_acc( 0xf4a0052f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0) | _NENC_4(_NEON_ALIGN32(align)), (Q2), __poly16ToN64_c(pcD)) )
#define vld2q_lane_s16_ex(pcD, Q2, lane, align) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_Qx2Adr_acc( 0xf4a0052f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0) | _NENC_4(_NEON_ALIGN32(align)), (Q2), __int16ToN64_c(pcD)) )
#define vld2q_lane_s32_ex(pcD, Q2, lane, align) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_Qx2Adr_acc( 0xf4a0094f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0) | _NENC_4(_NEON_ALIGN64(align)), (Q2), __int32ToN64_c(pcD)) )
#define vld2q_lane_u16_ex(pcD, Q2, lane, align) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_Qx2Adr_acc( 0xf4a0052f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0) | _NENC_4(_NEON_ALIGN32(align)), (Q2), __uint16ToN64_c(pcD)) )
#define vld2q_lane_u32_ex(pcD, Q2, lane, align) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_Qx2Adr_acc( 0xf4a0094f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0) | _NENC_4(_NEON_ALIGN64(align)), (Q2), __uint32ToN64_c(pcD)) )
// VLD3 (multiple 3-element structures)
#define vld3_f32(pcD) ( __neon_Dx3Adr( 0xf420048f, __float32ToN64_c(pcD)) )
#define vld3_p16(pcD) ( __neon_Dx3Adr( 0xf420044f, __poly16ToN64_c(pcD)) )
#define vld3_p8(pcD) ( __neon_Dx3Adr( 0xf420040f, __poly8ToN64_c(pcD)) )
#define vld3_s16(pcD) ( __neon_Dx3Adr( 0xf420044f, __int16ToN64_c(pcD)) )
#define vld3_s32(pcD) ( __neon_Dx3Adr( 0xf420048f, __int32ToN64_c(pcD)) )
#define vld3_s8(pcD) ( __neon_Dx3Adr( 0xf420040f, __int8ToN64_c(pcD)) )
#define vld3_u16(pcD) ( __neon_Dx3Adr( 0xf420044f, __uint16ToN64_c(pcD)) )
#define vld3_u32(pcD) ( __neon_Dx3Adr( 0xf420048f, __uint32ToN64_c(pcD)) )
#define vld3_u8(pcD) ( __neon_Dx3Adr( 0xf420040f, __uint8ToN64_c(pcD)) )
#define vld3_s64(pcD) ( __neon_Dx3Adr( 0xf42006cf, __int64ToN64_c(pcD)) )
#define vld3_u64(pcD) ( __neon_Dx3Adr( 0xf42006cf, __uint64ToN64_c(pcD)) )
#define vld3_s64_ex(pcD, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_Dx3Adr( 0xf42006cf | _NENC_5_4(_NEON_ALIGN64(align)), __int64ToN64_c(pcD)) )
#define vld3_u64_ex(pcD, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_Dx3Adr( 0xf42006cf | _NENC_5_4(_NEON_ALIGN64(align)), __uint64ToN64_c(pcD)) )
#define vld3_f32_ex(pcD, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_Dx3Adr( 0xf420048f | _NENC_5_4(_NEON_ALIGN64(align)), __float32ToN64_c(pcD)) )
#define vld3_p16_ex(pcD, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_Dx3Adr( 0xf420044f | _NENC_5_4(_NEON_ALIGN64(align)), __poly16ToN64_c(pcD)) )
#define vld3_p8_ex(pcD, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_Dx3Adr( 0xf420040f | _NENC_5_4(_NEON_ALIGN64(align)), __poly8ToN64_c(pcD)) )
#define vld3_s16_ex(pcD, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_Dx3Adr( 0xf420044f | _NENC_5_4(_NEON_ALIGN64(align)), __int16ToN64_c(pcD)) )
#define vld3_s32_ex(pcD, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_Dx3Adr( 0xf420048f | _NENC_5_4(_NEON_ALIGN64(align)), __int32ToN64_c(pcD)) )
#define vld3_s8_ex(pcD, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_Dx3Adr( 0xf420040f | _NENC_5_4(_NEON_ALIGN64(align)), __int8ToN64_c(pcD)) )
#define vld3_u16_ex(pcD, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_Dx3Adr( 0xf420044f | _NENC_5_4(_NEON_ALIGN64(align)), __uint16ToN64_c(pcD)) )
#define vld3_u32_ex(pcD, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_Dx3Adr( 0xf420048f | _NENC_5_4(_NEON_ALIGN64(align)), __uint32ToN64_c(pcD)) )
#define vld3_u8_ex(pcD, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_Dx3Adr( 0xf420040f | _NENC_5_4(_NEON_ALIGN64(align)), __uint8ToN64_c(pcD)) )
#define vld3q_f32(pcD) ( __neon_Qx3Adr( 0xf420058f, __float32ToN64_c(pcD)) )
#define vld3q_p16(pcD) ( __neon_Qx3Adr( 0xf420054f, __poly16ToN64_c(pcD)) )
#define vld3q_p8(pcD) ( __neon_Qx3Adr( 0xf420050f, __poly8ToN64_c(pcD)) )
#define vld3q_s16(pcD) ( __neon_Qx3Adr( 0xf420054f, __int16ToN64_c(pcD)) )
#define vld3q_s32(pcD) ( __neon_Qx3Adr( 0xf420058f, __int32ToN64_c(pcD)) )
#define vld3q_s8(pcD) ( __neon_Qx3Adr( 0xf420050f, __int8ToN64_c(pcD)) )
#define vld3q_u16(pcD) ( __neon_Qx3Adr( 0xf420054f, __uint16ToN64_c(pcD)) )
#define vld3q_u32(pcD) ( __neon_Qx3Adr( 0xf420058f, __uint32ToN64_c(pcD)) )
#define vld3q_u8(pcD) ( __neon_Qx3Adr( 0xf420050f, __uint8ToN64_c(pcD)) )
#define vld3q_f32_ex(pcD, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_Qx3Adr( 0xf420058f | _NENC_5_4(_NEON_ALIGN64(align)), __float32ToN64_c(pcD)) )
#define vld3q_p16_ex(pcD, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_Qx3Adr( 0xf420054f | _NENC_5_4(_NEON_ALIGN64(align)), __poly16ToN64_c(pcD)) )
#define vld3q_p8_ex(pcD, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_Qx3Adr( 0xf420050f | _NENC_5_4(_NEON_ALIGN64(align)), __poly8ToN64_c(pcD)) )
#define vld3q_s16_ex(pcD, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_Qx3Adr( 0xf420054f | _NENC_5_4(_NEON_ALIGN64(align)), __int16ToN64_c(pcD)) )
#define vld3q_s32_ex(pcD, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_Qx3Adr( 0xf420058f | _NENC_5_4(_NEON_ALIGN64(align)), __int32ToN64_c(pcD)) )
#define vld3q_s8_ex(pcD, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_Qx3Adr( 0xf420050f | _NENC_5_4(_NEON_ALIGN64(align)), __int8ToN64_c(pcD)) )
#define vld3q_u16_ex(pcD, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_Qx3Adr( 0xf420054f | _NENC_5_4(_NEON_ALIGN64(align)), __uint16ToN64_c(pcD)) )
#define vld3q_u32_ex(pcD, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_Qx3Adr( 0xf420058f | _NENC_5_4(_NEON_ALIGN64(align)), __uint32ToN64_c(pcD)) )
#define vld3q_u8_ex(pcD, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_Qx3Adr( 0xf420050f | _NENC_5_4(_NEON_ALIGN64(align)), __uint8ToN64_c(pcD)) )
// VLD3 (single 3-element structure to all lanes)
#define vld3_dup_f32(pcD) ( __neon_Dx3Adr( 0xf4a00e8f, __float32ToN64_c(pcD)) )
#define vld3_dup_p16(pcD) ( __neon_Dx3Adr( 0xf4a00e4f, __poly16ToN64_c(pcD)) )
#define vld3_dup_p8(pcD) ( __neon_Dx3Adr( 0xf4a00e0f, __poly8ToN64_c(pcD)) )
#define vld3_dup_s16(pcD) ( __neon_Dx3Adr( 0xf4a00e4f, __int16ToN64_c(pcD)) )
#define vld3_dup_s32(pcD) ( __neon_Dx3Adr( 0xf4a00e8f, __int32ToN64_c(pcD)) )
#define vld3_dup_s8(pcD) ( __neon_Dx3Adr( 0xf4a00e0f, __int8ToN64_c(pcD)) )
#define vld3_dup_u16(pcD) ( __neon_Dx3Adr( 0xf4a00e4f, __uint16ToN64_c(pcD)) )
#define vld3_dup_u32(pcD) ( __neon_Dx3Adr( 0xf4a00e8f, __uint32ToN64_c(pcD)) )
#define vld3_dup_u8(pcD) ( __neon_Dx3Adr( 0xf4a00e0f, __uint8ToN64_c(pcD)) )
#define vld3_dup_s64(pcD) ( __neon_Dx3Adr( 0xf42006cf, __int64ToN64_c(pcD)) )
#define vld3_dup_u64(pcD) ( __neon_Dx3Adr( 0xf42006cf, __uint64ToN64_c(pcD)) )
// VLD3 (single 3-element structure to one lane)
#define vld3_lane_f32(pcD, D3, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_Dx3Adr_acc( 0xf4a00a0f | _NENC_7(lane), (D3), __float32ToN64_c(pcD)) )
#define vld3_lane_p16(pcD, D3, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_Dx3Adr_acc( 0xf4a0060f | _NENC_7_6(lane), (D3), __poly16ToN64_c(pcD)) )
#define vld3_lane_p8(pcD, D3, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_Dx3Adr_acc( 0xf4a0020f | _NENC_7_5(lane), (D3), __poly8ToN64_c(pcD)) )
#define vld3_lane_s16(pcD, D3, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_Dx3Adr_acc( 0xf4a0060f | _NENC_7_6(lane), (D3), __int16ToN64_c(pcD)) )
#define vld3_lane_s32(pcD, D3, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_Dx3Adr_acc( 0xf4a00a0f | _NENC_7(lane), (D3), __int32ToN64_c(pcD)) )
#define vld3_lane_s8(pcD, D3, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_Dx3Adr_acc( 0xf4a0020f | _NENC_7_5(lane), (D3), __int8ToN64_c(pcD)) )
#define vld3_lane_u16(pcD, D3, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_Dx3Adr_acc( 0xf4a0060f | _NENC_7_6(lane), (D3), __uint16ToN64_c(pcD)) )
#define vld3_lane_u32(pcD, D3, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_Dx3Adr_acc( 0xf4a00a0f | _NENC_7(lane), (D3), __uint32ToN64_c(pcD)) )
#define vld3_lane_u8(pcD, D3, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_Dx3Adr_acc( 0xf4a0020f | _NENC_7_5(lane), (D3), __uint8ToN64_c(pcD)) )
#define vld3q_lane_f32(pcD, Q3, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_Qx3Adr_acc( 0xf4a00a4f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0), (Q3), __float32ToN64_c(pcD)) )
#define vld3q_lane_p16(pcD, Q3, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_Qx3Adr_acc( 0xf4a0062f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0), (Q3), __poly16ToN64_c(pcD)) )
#define vld3q_lane_s16(pcD, Q3, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_Qx3Adr_acc( 0xf4a0062f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0), (Q3), __int16ToN64_c(pcD)) )
#define vld3q_lane_s32(pcD, Q3, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_Qx3Adr_acc( 0xf4a00a4f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0), (Q3), __int32ToN64_c(pcD)) )
#define vld3q_lane_u16(pcD, Q3, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_Qx3Adr_acc( 0xf4a0062f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0), (Q3), __uint16ToN64_c(pcD)) )
#define vld3q_lane_u32(pcD, Q3, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_Qx3Adr_acc( 0xf4a00a4f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0), (Q3), __uint32ToN64_c(pcD)) )
// VLD4 (multiple 4-element structures)
#define vld4_f32(pcD) ( __neon_Dx4Adr( 0xf420008f, __float32ToN64_c(pcD)) )
#define vld4_p16(pcD) ( __neon_Dx4Adr( 0xf420004f, __poly16ToN64_c(pcD)) )
#define vld4_p8(pcD) ( __neon_Dx4Adr( 0xf420000f, __poly8ToN64_c(pcD)) )
#define vld4_s16(pcD) ( __neon_Dx4Adr( 0xf420004f, __int16ToN64_c(pcD)) )
#define vld4_s32(pcD) ( __neon_Dx4Adr( 0xf420008f, __int32ToN64_c(pcD)) )
#define vld4_s8(pcD) ( __neon_Dx4Adr( 0xf420000f, __int8ToN64_c(pcD)) )
#define vld4_u16(pcD) ( __neon_Dx4Adr( 0xf420004f, __uint16ToN64_c(pcD)) )
#define vld4_u32(pcD) ( __neon_Dx4Adr( 0xf420008f, __uint32ToN64_c(pcD)) )
#define vld4_u8(pcD) ( __neon_Dx4Adr( 0xf420000f, __uint8ToN64_c(pcD)) )
#define vld4_s64(pcD) ( __neon_Dx4Adr( 0xf42002cf, __int64ToN64_c(pcD)) )
#define vld4_u64(pcD) ( __neon_Dx4Adr( 0xf42002cf, __uint64ToN64_c(pcD)) )
#define vld4_s64_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128_256(align) >= 0, "invalid align"), __neon_Dx4Adr( 0xf42002cf | _NENC_5_4(_NEON_ALIGN64_128_256(align)), __int64ToN64_c(pcD)) )
#define vld4_u64_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128_256(align) >= 0, "invalid align"), __neon_Dx4Adr( 0xf42002cf | _NENC_5_4(_NEON_ALIGN64_128_256(align)), __uint64ToN64_c(pcD)) )
#define vld4_f32_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128_256(align) >= 0, "invalid align"), __neon_Dx4Adr( 0xf420008f | _NENC_5_4(_NEON_ALIGN64_128_256(align)), __float32ToN64_c(pcD)) )
#define vld4_p16_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128_256(align) >= 0, "invalid align"), __neon_Dx4Adr( 0xf420004f | _NENC_5_4(_NEON_ALIGN64_128_256(align)), __poly16ToN64_c(pcD)) )
#define vld4_p8_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128_256(align) >= 0, "invalid align"), __neon_Dx4Adr( 0xf420000f | _NENC_5_4(_NEON_ALIGN64_128_256(align)), __poly8ToN64_c(pcD)) )
#define vld4_s16_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128_256(align) >= 0, "invalid align"), __neon_Dx4Adr( 0xf420004f | _NENC_5_4(_NEON_ALIGN64_128_256(align)), __int16ToN64_c(pcD)) )
#define vld4_s32_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128_256(align) >= 0, "invalid align"), __neon_Dx4Adr( 0xf420008f | _NENC_5_4(_NEON_ALIGN64_128_256(align)), __int32ToN64_c(pcD)) )
#define vld4_s8_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128_256(align) >= 0, "invalid align"), __neon_Dx4Adr( 0xf420000f | _NENC_5_4(_NEON_ALIGN64_128_256(align)), __int8ToN64_c(pcD)) )
#define vld4_u16_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128_256(align) >= 0, "invalid align"), __neon_Dx4Adr( 0xf420004f | _NENC_5_4(_NEON_ALIGN64_128_256(align)), __uint16ToN64_c(pcD)) )
#define vld4_u32_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128_256(align) >= 0, "invalid align"), __neon_Dx4Adr( 0xf420008f | _NENC_5_4(_NEON_ALIGN64_128_256(align)), __uint32ToN64_c(pcD)) )
#define vld4_u8_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128_256(align) >= 0, "invalid align"), __neon_Dx4Adr( 0xf420000f | _NENC_5_4(_NEON_ALIGN64_128_256(align)), __uint8ToN64_c(pcD)) )
#define vld4q_f32(pcD) ( __neon_Qx4Adr( 0xf420018f, __float32ToN64_c(pcD)) )
#define vld4q_p16(pcD) ( __neon_Qx4Adr( 0xf420014f, __poly16ToN64_c(pcD)) )
#define vld4q_p8(pcD) ( __neon_Qx4Adr( 0xf420010f, __poly8ToN64_c(pcD)) )
#define vld4q_s16(pcD) ( __neon_Qx4Adr( 0xf420014f, __int16ToN64_c(pcD)) )
#define vld4q_s32(pcD) ( __neon_Qx4Adr( 0xf420018f, __int32ToN64_c(pcD)) )
#define vld4q_s8(pcD) ( __neon_Qx4Adr( 0xf420010f, __int8ToN64_c(pcD)) )
#define vld4q_u16(pcD) ( __neon_Qx4Adr( 0xf420014f, __uint16ToN64_c(pcD)) )
#define vld4q_u32(pcD) ( __neon_Qx4Adr( 0xf420018f, __uint32ToN64_c(pcD)) )
#define vld4q_u8(pcD) ( __neon_Qx4Adr( 0xf420010f, __uint8ToN64_c(pcD)) )
#define vld4q_f32_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128_256(align) >= 0, "invalid align"), __neon_Qx4Adr( 0xf420018f | _NENC_5_4(_NEON_ALIGN64_128_256(align)), __float32ToN64_c(pcD)) )
#define vld4q_p16_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128_256(align) >= 0, "invalid align"), __neon_Qx4Adr( 0xf420014f | _NENC_5_4(_NEON_ALIGN64_128_256(align)), __poly16ToN64_c(pcD)) )
#define vld4q_p8_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128_256(align) >= 0, "invalid align"), __neon_Qx4Adr( 0xf420010f | _NENC_5_4(_NEON_ALIGN64_128_256(align)), __poly8ToN64_c(pcD)) )
#define vld4q_s16_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128_256(align) >= 0, "invalid align"), __neon_Qx4Adr( 0xf420014f | _NENC_5_4(_NEON_ALIGN64_128_256(align)), __int16ToN64_c(pcD)) )
#define vld4q_s32_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128_256(align) >= 0, "invalid align"), __neon_Qx4Adr( 0xf420018f | _NENC_5_4(_NEON_ALIGN64_128_256(align)), __int32ToN64_c(pcD)) )
#define vld4q_s8_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128_256(align) >= 0, "invalid align"), __neon_Qx4Adr( 0xf420010f | _NENC_5_4(_NEON_ALIGN64_128_256(align)), __int8ToN64_c(pcD)) )
#define vld4q_u16_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128_256(align) >= 0, "invalid align"), __neon_Qx4Adr( 0xf420014f | _NENC_5_4(_NEON_ALIGN64_128_256(align)), __uint16ToN64_c(pcD)) )
#define vld4q_u32_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128_256(align) >= 0, "invalid align"), __neon_Qx4Adr( 0xf420018f | _NENC_5_4(_NEON_ALIGN64_128_256(align)), __uint32ToN64_c(pcD)) )
#define vld4q_u8_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128_256(align) >= 0, "invalid align"), __neon_Qx4Adr( 0xf420010f | _NENC_5_4(_NEON_ALIGN64_128_256(align)), __uint8ToN64_c(pcD)) )
// VLD4 (single 4-element structure to all lanes)
#define vld4_dup_f32(pcD) ( __neon_Dx4Adr( 0xf4a00f8f, __float32ToN64_c(pcD)) )
#define vld4_dup_p16(pcD) ( __neon_Dx4Adr( 0xf4a00f4f, __poly16ToN64_c(pcD)) )
#define vld4_dup_p8(pcD) ( __neon_Dx4Adr( 0xf4a00f0f, __poly8ToN64_c(pcD)) )
#define vld4_dup_s16(pcD) ( __neon_Dx4Adr( 0xf4a00f4f, __int16ToN64_c(pcD)) )
#define vld4_dup_s32(pcD) ( __neon_Dx4Adr( 0xf4a00f8f, __int32ToN64_c(pcD)) )
#define vld4_dup_s8(pcD) ( __neon_Dx4Adr( 0xf4a00f0f, __int8ToN64_c(pcD)) )
#define vld4_dup_u16(pcD) ( __neon_Dx4Adr( 0xf4a00f4f, __uint16ToN64_c(pcD)) )
#define vld4_dup_u32(pcD) ( __neon_Dx4Adr( 0xf4a00f8f, __uint32ToN64_c(pcD)) )
#define vld4_dup_u8(pcD) ( __neon_Dx4Adr( 0xf4a00f0f, __uint8ToN64_c(pcD)) )
#define vld4_dup_s64(pcD) ( __neon_Dx4Adr( 0xf42002cf, __int64ToN64_c(pcD)) )
#define vld4_dup_u64(pcD) ( __neon_Dx4Adr( 0xf42002cf, __uint64ToN64_c(pcD)) )
// VLD4 (single 4-element structure to all lanes, aligned)
#define vld4_dup_f32_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Dx4Adr( 0xf4a00f0f | _NENC_7_6(_NEON_ALIGN64_128(align) > 1 ? 3 : 2) | _NENC_4(_NEON_ALIGN64_128(align) > 0 ? 1 : 0), __float32ToN64_c(pcD)) )
#define vld4_dup_p16_ex(pcD, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_Dx4Adr( 0xf4a00f4f | _NENC_4(_NEON_ALIGN64(align)), __poly16ToN64_c(pcD)) )
#define vld4_dup_p8_ex(pcD, align) ( __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_Dx4Adr( 0xf4a00f0f | _NENC_4(_NEON_ALIGN32(align)), __poly8ToN64_c(pcD)) )
#define vld4_dup_s16_ex(pcD, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_Dx4Adr( 0xf4a00f4f | _NENC_4(_NEON_ALIGN64(align)), __int16ToN64_c(pcD)) )
#define vld4_dup_s32_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Dx4Adr( 0xf4a00f0f | _NENC_7_6(_NEON_ALIGN64_128(align) > 1 ? 3 : 2) | _NENC_4(_NEON_ALIGN64_128(align) > 0 ? 1 : 0), __int32ToN64_c(pcD)) )
#define vld4_dup_s8_ex(pcD, align) ( __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_Dx4Adr( 0xf4a00f0f | _NENC_4(_NEON_ALIGN32(align)), __int8ToN64_c(pcD)) )
#define vld4_dup_u16_ex(pcD, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_Dx4Adr( 0xf4a00f4f | _NENC_4(_NEON_ALIGN64(align)), __uint16ToN64_c(pcD)) )
#define vld4_dup_u32_ex(pcD, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Dx4Adr( 0xf4a00f0f | _NENC_7_6(_NEON_ALIGN64_128(align) > 1 ? 3 : 2) | _NENC_4(_NEON_ALIGN64_128(align) > 0 ? 1 : 0), __uint32ToN64_c(pcD)) )
#define vld4_dup_u8_ex(pcD, align) ( __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_Dx4Adr( 0xf4a00f0f | _NENC_4(_NEON_ALIGN32(align)), __uint8ToN64_c(pcD)) )
// VLD4 (single 4-element structure to one lane)
#define vld4_lane_f32(pcD, D4, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_Dx4Adr_acc( 0xf4a00b0f | _NENC_7(lane), (D4), __float32ToN64_c(pcD)) )
#define vld4_lane_p16(pcD, D4, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_Dx4Adr_acc( 0xf4a0070f | _NENC_7_6(lane), (D4), __poly16ToN64_c(pcD)) )
#define vld4_lane_p8(pcD, D4, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_Dx4Adr_acc( 0xf4a0030f | _NENC_7_5(lane), (D4), __poly8ToN64_c(pcD)) )
#define vld4_lane_s16(pcD, D4, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_Dx4Adr_acc( 0xf4a0070f | _NENC_7_6(lane), (D4), __int16ToN64_c(pcD)) )
#define vld4_lane_s32(pcD, D4, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_Dx4Adr_acc( 0xf4a00b0f | _NENC_7(lane), (D4), __int32ToN64_c(pcD)) )
#define vld4_lane_s8(pcD, D4, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_Dx4Adr_acc( 0xf4a0030f | _NENC_7_5(lane), (D4), __int8ToN64_c(pcD)) )
#define vld4_lane_u16(pcD, D4, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_Dx4Adr_acc( 0xf4a0070f | _NENC_7_6(lane), (D4), __uint16ToN64_c(pcD)) )
#define vld4_lane_u32(pcD, D4, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_Dx4Adr_acc( 0xf4a00b0f | _NENC_7(lane), (D4), __uint32ToN64_c(pcD)) )
#define vld4_lane_u8(pcD, D4, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_Dx4Adr_acc( 0xf4a0030f | _NENC_7_5(lane), (D4), __uint8ToN64_c(pcD)) )
#define vld4q_lane_f32(pcD, Q4, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_Qx4Adr_acc( 0xf4a00b4f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0), (Q4), __float32ToN64_c(pcD)) )
#define vld4q_lane_p16(pcD, Q4, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_Qx4Adr_acc( 0xf4a0072f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0), (Q4), __poly16ToN64_c(pcD)) )
#define vld4q_lane_s16(pcD, Q4, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_Qx4Adr_acc( 0xf4a0072f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0), (Q4), __int16ToN64_c(pcD)) )
#define vld4q_lane_s32(pcD, Q4, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_Qx4Adr_acc( 0xf4a00b4f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0), (Q4), __int32ToN64_c(pcD)) )
#define vld4q_lane_u16(pcD, Q4, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_Qx4Adr_acc( 0xf4a0072f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0), (Q4), __uint16ToN64_c(pcD)) )
#define vld4q_lane_u32(pcD, Q4, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_Qx4Adr_acc( 0xf4a00b4f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0), (Q4), __uint32ToN64_c(pcD)) )
// VLD4 (single 4-element structure to one lane, aligned)
#define vld4_lane_f32_ex(pcD, D4, lane, align) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Dx4Adr_acc( 0xf4a00b0f | _NENC_7(lane) | _NENC_5_4(_NEON_ALIGN64_128(align)), (D4), __float32ToN64_c(pcD)) )
#define vld4_lane_p16_ex(pcD, D4, lane, align) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_Dx4Adr_acc( 0xf4a0070f | _NENC_7_6(lane) | _NENC_4(_NEON_ALIGN64(align)), (D4), __poly16ToN64_c(pcD)) )
#define vld4_lane_p8_ex(pcD, D4, lane, align) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_Dx4Adr_acc( 0xf4a0030f | _NENC_7_5(lane) | _NENC_4(_NEON_ALIGN32(align)), (D4), __poly8ToN64_c(pcD)) )
#define vld4_lane_s16_ex(pcD, D4, lane, align) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_Dx4Adr_acc( 0xf4a0070f | _NENC_7_6(lane) | _NENC_4(_NEON_ALIGN64(align)), (D4), __int16ToN64_c(pcD)) )
#define vld4_lane_s32_ex(pcD, D4, lane, align) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Dx4Adr_acc( 0xf4a00b0f | _NENC_7(lane) | _NENC_5_4(_NEON_ALIGN64_128(align)), (D4), __int32ToN64_c(pcD)) )
#define vld4_lane_s8_ex(pcD, D4, lane, align) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_Dx4Adr_acc( 0xf4a0030f | _NENC_7_5(lane) | _NENC_4(_NEON_ALIGN32(align)), (D4), __int8ToN64_c(pcD)) )
#define vld4_lane_u16_ex(pcD, D4, lane, align) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_Dx4Adr_acc( 0xf4a0070f | _NENC_7_6(lane) | _NENC_4(_NEON_ALIGN64(align)), (D4), __uint16ToN64_c(pcD)) )
#define vld4_lane_u32_ex(pcD, D4, lane, align) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Dx4Adr_acc( 0xf4a00b0f | _NENC_7(lane) | _NENC_5_4(_NEON_ALIGN64_128(align)), (D4), __uint32ToN64_c(pcD)) )
#define vld4_lane_u8_ex(pcD, D4, lane, align) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_Dx4Adr_acc( 0xf4a0030f | _NENC_7_5(lane) | _NENC_4(_NEON_ALIGN32(align)), (D4), __uint8ToN64_c(pcD)) )
#define vld4q_lane_f32_ex(pcD, Q4, lane, align) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Qx4Adr_acc( 0xf4a00b4f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0) | _NENC_5_4(_NEON_ALIGN64_128(align)), (Q4), __float32ToN64_c(pcD)) )
#define vld4q_lane_p16_ex(pcD, Q4, lane, align) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_Qx4Adr_acc( 0xf4a0072f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0) | _NENC_4(_NEON_ALIGN64(align)), (Q4), __poly16ToN64_c(pcD)) )
#define vld4q_lane_s16_ex(pcD, Q4, lane, align) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_Qx4Adr_acc( 0xf4a0072f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0) | _NENC_4(_NEON_ALIGN64(align)), (Q4), __int16ToN64_c(pcD)) )
#define vld4q_lane_s32_ex(pcD, Q4, lane, align) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Qx4Adr_acc( 0xf4a00b4f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0) | _NENC_5_4(_NEON_ALIGN64_128(align)), (Q4), __int32ToN64_c(pcD)) )
#define vld4q_lane_u16_ex(pcD, Q4, lane, align) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_Qx4Adr_acc( 0xf4a0072f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0) | _NENC_4(_NEON_ALIGN64(align)), (Q4), __uint16ToN64_c(pcD)) )
#define vld4q_lane_u32_ex(pcD, Q4, lane, align) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_Qx4Adr_acc( 0xf4a00b4f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0) | _NENC_5_4(_NEON_ALIGN64_128(align)), (Q4), __uint32ToN64_c(pcD)) )
// VMAX, VMIN (floating point)
#define vmax_f32(Dn, Dm) ( __neon_DdDnDm( 0xf2000f00, (Dn), (Dm)) )
#define vmin_f32(Dn, Dm) ( __neon_DdDnDm( 0xf2200f00, (Dn), (Dm)) )
#define vmaxq_f32(Qn, Qm) ( __neon_QdQnQm( 0xf2000f40, (Qn), (Qm)) )
#define vminq_f32(Qn, Qm) ( __neon_QdQnQm( 0xf2200f40, (Qn), (Qm)) )
// VMAX, VMIN (integer)
#define vmax_s16(Dn, Dm) ( __neon_DdDnDm( 0xf2100600, (Dn), (Dm)) )
#define vmax_s32(Dn, Dm) ( __neon_DdDnDm( 0xf2200600, (Dn), (Dm)) )
#define vmax_s8(Dn, Dm) ( __neon_DdDnDm( 0xf2000600, (Dn), (Dm)) )
#define vmax_u16(Dn, Dm) ( __neon_DdDnDm( 0xf3100600, (Dn), (Dm)) )
#define vmax_u32(Dn, Dm) ( __neon_DdDnDm( 0xf3200600, (Dn), (Dm)) )
#define vmax_u8(Dn, Dm) ( __neon_DdDnDm( 0xf3000600, (Dn), (Dm)) )
#define vmin_s16(Dn, Dm) ( __neon_DdDnDm( 0xf2100610, (Dn), (Dm)) )
#define vmin_s32(Dn, Dm) ( __neon_DdDnDm( 0xf2200610, (Dn), (Dm)) )
#define vmin_s8(Dn, Dm) ( __neon_DdDnDm( 0xf2000610, (Dn), (Dm)) )
#define vmin_u16(Dn, Dm) ( __neon_DdDnDm( 0xf3100610, (Dn), (Dm)) )
#define vmin_u32(Dn, Dm) ( __neon_DdDnDm( 0xf3200610, (Dn), (Dm)) )
#define vmin_u8(Dn, Dm) ( __neon_DdDnDm( 0xf3000610, (Dn), (Dm)) )
#define vmaxq_s16(Qn, Qm) ( __neon_QdQnQm( 0xf2100640, (Qn), (Qm)) )
#define vmaxq_s32(Qn, Qm) ( __neon_QdQnQm( 0xf2200640, (Qn), (Qm)) )
#define vmaxq_s8(Qn, Qm) ( __neon_QdQnQm( 0xf2000640, (Qn), (Qm)) )
#define vmaxq_u16(Qn, Qm) ( __neon_QdQnQm( 0xf3100640, (Qn), (Qm)) )
#define vmaxq_u32(Qn, Qm) ( __neon_QdQnQm( 0xf3200640, (Qn), (Qm)) )
#define vmaxq_u8(Qn, Qm) ( __neon_QdQnQm( 0xf3000640, (Qn), (Qm)) )
#define vminq_s16(Qn, Qm) ( __neon_QdQnQm( 0xf2100650, (Qn), (Qm)) )
#define vminq_s32(Qn, Qm) ( __neon_QdQnQm( 0xf2200650, (Qn), (Qm)) )
#define vminq_s8(Qn, Qm) ( __neon_QdQnQm( 0xf2000650, (Qn), (Qm)) )
#define vminq_u16(Qn, Qm) ( __neon_QdQnQm( 0xf3100650, (Qn), (Qm)) )
#define vminq_u32(Qn, Qm) ( __neon_QdQnQm( 0xf3200650, (Qn), (Qm)) )
#define vminq_u8(Qn, Qm) ( __neon_QdQnQm( 0xf3000650, (Qn), (Qm)) )
// VMLA, VMLS (by scalar)
#define vmla_lane_f32(Dd, Dn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_DdDnDmx_acc( 0xf2a00140 | _NENC_5(lane), (Dd), (Dn), (Dm)) )
#define vmla_lane_s16(Dd, Dn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_DdDnDmx_acc( 0xf2900040 | _NENC_5x3(lane), (Dd), (Dn), (Dm)) )
#define vmla_lane_s32(Dd, Dn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_DdDnDmx_acc( 0xf2a00040 | _NENC_5(lane), (Dd), (Dn), (Dm)) )
#define vmla_lane_u16(Dd, Dn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_DdDnDmx_acc( 0xf2900040 | _NENC_5x3(lane), (Dd), (Dn), (Dm)) )
#define vmla_lane_u32(Dd, Dn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_DdDnDmx_acc( 0xf2a00040 | _NENC_5(lane), (Dd), (Dn), (Dm)) )
#define vmls_lane_f32(Dd, Dn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_DdDnDmx_acc( 0xf2a00540 | _NENC_5(lane), (Dd), (Dn), (Dm)) )
#define vmls_lane_s16(Dd, Dn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_DdDnDmx_acc( 0xf2900440 | _NENC_5x3(lane), (Dd), (Dn), (Dm)) )
#define vmls_lane_s32(Dd, Dn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_DdDnDmx_acc( 0xf2a00440 | _NENC_5(lane), (Dd), (Dn), (Dm)) )
#define vmls_lane_u16(Dd, Dn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_DdDnDmx_acc( 0xf2900440 | _NENC_5x3(lane), (Dd), (Dn), (Dm)) )
#define vmls_lane_u32(Dd, Dn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_DdDnDmx_acc( 0xf2a00440 | _NENC_5(lane), (Dd), (Dn), (Dm)) )
#define vmlaq_lane_f32(Qd, Qn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_QdQnDmx_acc( 0xf3a00140 | _NENC_5(lane), (Qd), (Qn), (Dm)) )
#define vmlaq_lane_s16(Qd, Qn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_QdQnDmx_acc( 0xf3900040 | _NENC_5x3(lane), (Qd), (Qn), (Dm)) )
#define vmlaq_lane_s32(Qd, Qn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_QdQnDmx_acc( 0xf3a00040 | _NENC_5(lane), (Qd), (Qn), (Dm)) )
#define vmlaq_lane_u16(Qd, Qn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_QdQnDmx_acc( 0xf3900040 | _NENC_5x3(lane), (Qd), (Qn), (Dm)) )
#define vmlaq_lane_u32(Qd, Qn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_QdQnDmx_acc( 0xf3a00040 | _NENC_5(lane), (Qd), (Qn), (Dm)) )
#define vmlsq_lane_f32(Qd, Qn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_QdQnDmx_acc( 0xf3a00540 | _NENC_5(lane), (Qd), (Qn), (Dm)) )
#define vmlsq_lane_s16(Qd, Qn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_QdQnDmx_acc( 0xf3900440 | _NENC_5x3(lane), (Qd), (Qn), (Dm)) )
#define vmlsq_lane_s32(Qd, Qn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_QdQnDmx_acc( 0xf3a00440 | _NENC_5(lane), (Qd), (Qn), (Dm)) )
#define vmlsq_lane_u16(Qd, Qn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_QdQnDmx_acc( 0xf3900440 | _NENC_5x3(lane), (Qd), (Qn), (Dm)) )
#define vmlsq_lane_u32(Qd, Qn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_QdQnDmx_acc( 0xf3a00440 | _NENC_5(lane), (Qd), (Qn), (Dm)) )
// VMLA, VMLS (floating point)
#define vmla_f32(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf2000d10, (Dd), (Dn), (Dm)) )
#define vmls_f32(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf2200d10, (Dd), (Dn), (Dm)) )
#define vmlaq_f32(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf2000d50, (Qd), (Qn), (Qm)) )
#define vmlsq_f32(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf2200d50, (Qd), (Qn), (Qm)) )
// VMLA, VMLS (integer)
#define vmla_s16(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf2100900, (Dd), (Dn), (Dm)) )
#define vmla_s32(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf2200900, (Dd), (Dn), (Dm)) )
#define vmla_s8(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf2000900, (Dd), (Dn), (Dm)) )
#define vmla_u16(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf2100900, (Dd), (Dn), (Dm)) )
#define vmla_u32(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf2200900, (Dd), (Dn), (Dm)) )
#define vmla_u8(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf2000900, (Dd), (Dn), (Dm)) )
#define vmls_s16(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3100900, (Dd), (Dn), (Dm)) )
#define vmls_s32(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3200900, (Dd), (Dn), (Dm)) )
#define vmls_s8(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3000900, (Dd), (Dn), (Dm)) )
#define vmls_u16(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3100900, (Dd), (Dn), (Dm)) )
#define vmls_u32(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3200900, (Dd), (Dn), (Dm)) )
#define vmls_u8(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3000900, (Dd), (Dn), (Dm)) )
#define vmlaq_s16(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf2100940, (Qd), (Qn), (Qm)) )
#define vmlaq_s32(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf2200940, (Qd), (Qn), (Qm)) )
#define vmlaq_s8(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf2000940, (Qd), (Qn), (Qm)) )
#define vmlaq_u16(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf2100940, (Qd), (Qn), (Qm)) )
#define vmlaq_u32(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf2200940, (Qd), (Qn), (Qm)) )
#define vmlaq_u8(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf2000940, (Qd), (Qn), (Qm)) )
#define vmlsq_s16(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3100940, (Qd), (Qn), (Qm)) )
#define vmlsq_s32(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3200940, (Qd), (Qn), (Qm)) )
#define vmlsq_s8(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3000940, (Qd), (Qn), (Qm)) )
#define vmlsq_u16(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3100940, (Qd), (Qn), (Qm)) )
#define vmlsq_u32(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3200940, (Qd), (Qn), (Qm)) )
#define vmlsq_u8(Qd, Qn, Qm) ( __neon_QdQnQm_acc( 0xf3000940, (Qd), (Qn), (Qm)) )
// VMLAL, VMLSL
#define vmlal_s16(Qd, Dn, Dm) ( __neon_QdDnDm_acc( 0xf2900800, (Qd), (Dn), (Dm)) )
#define vmlal_s32(Qd, Dn, Dm) ( __neon_QdDnDm_acc( 0xf2a00800, (Qd), (Dn), (Dm)) )
#define vmlal_s8(Qd, Dn, Dm) ( __neon_QdDnDm_acc( 0xf2800800, (Qd), (Dn), (Dm)) )
#define vmlal_u16(Qd, Dn, Dm) ( __neon_QdDnDm_acc( 0xf3900800, (Qd), (Dn), (Dm)) )
#define vmlal_u32(Qd, Dn, Dm) ( __neon_QdDnDm_acc( 0xf3a00800, (Qd), (Dn), (Dm)) )
#define vmlal_u8(Qd, Dn, Dm) ( __neon_QdDnDm_acc( 0xf3800800, (Qd), (Dn), (Dm)) )
#define vmlsl_s16(Qd, Dn, Dm) ( __neon_QdDnDm_acc( 0xf2900a00, (Qd), (Dn), (Dm)) )
#define vmlsl_s32(Qd, Dn, Dm) ( __neon_QdDnDm_acc( 0xf2a00a00, (Qd), (Dn), (Dm)) )
#define vmlsl_s8(Qd, Dn, Dm) ( __neon_QdDnDm_acc( 0xf2800a00, (Qd), (Dn), (Dm)) )
#define vmlsl_u16(Qd, Dn, Dm) ( __neon_QdDnDm_acc( 0xf3900a00, (Qd), (Dn), (Dm)) )
#define vmlsl_u32(Qd, Dn, Dm) ( __neon_QdDnDm_acc( 0xf3a00a00, (Qd), (Dn), (Dm)) )
#define vmlsl_u8(Qd, Dn, Dm) ( __neon_QdDnDm_acc( 0xf3800a00, (Qd), (Dn), (Dm)) )
// VMLAL, VMLSL (by scalar)
#define vmlal_lane_s16(Qd, Dn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_QdDnDmx_acc( 0xf2900240 | _NENC_5x3(lane), (Qd), (Dn), (Dm)) )
#define vmlal_lane_s32(Qd, Dn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_QdDnDmx_acc( 0xf2a00240 | _NENC_5(lane), (Qd), (Dn), (Dm)) )
#define vmlal_lane_u16(Qd, Dn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_QdDnDmx_acc( 0xf3900240 | _NENC_5x3(lane), (Qd), (Dn), (Dm)) )
#define vmlal_lane_u32(Qd, Dn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_QdDnDmx_acc( 0xf3a00240 | _NENC_5(lane), (Qd), (Dn), (Dm)) )
#define vmlsl_lane_s16(Qd, Dn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_QdDnDmx_acc( 0xf2900640 | _NENC_5x3(lane), (Qd), (Dn), (Dm)) )
#define vmlsl_lane_s32(Qd, Dn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_QdDnDmx_acc( 0xf2a00640 | _NENC_5(lane), (Qd), (Dn), (Dm)) )
#define vmlsl_lane_u16(Qd, Dn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_QdDnDmx_acc( 0xf3900640 | _NENC_5x3(lane), (Qd), (Dn), (Dm)) )
#define vmlsl_lane_u32(Qd, Dn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_QdDnDmx_acc( 0xf3a00640 | _NENC_5(lane), (Qd), (Dn), (Dm)) )
// VMOV (ARM core register to scalar)
#define vset_lane_f32(Ft, Dd, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_DdFt_acc( 0xee000b10 | _NENC_21(lane), (Dd), (Ft)) )
#define vset_lane_p16(Rt, Dd, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_DdRt_acc( 0xee000b30 | _NENC_21x6(lane), (Dd), __poly16ToInt32(Rt)) )
#define vset_lane_p8(Rt, Dd, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_DdRt_acc( 0xee400b10 | _NENC_21x6_5(lane), (Dd), __poly8ToInt32(Rt)) )
#define vset_lane_s16(Rt, Dd, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_DdRt_acc( 0xee000b30 | _NENC_21x6(lane), (Dd), __int16ToInt32(Rt)) )
#define vset_lane_s32(Rt, Dd, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_DdRt_acc( 0xee000b10 | _NENC_21(lane), (Dd), __int32ToInt32(Rt)) )
#define vset_lane_s8(Rt, Dd, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_DdRt_acc( 0xee400b10 | _NENC_21x6_5(lane), (Dd), __int8ToInt32(Rt)) )
#define vset_lane_u16(Rt, Dd, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_DdRt_acc( 0xee000b30 | _NENC_21x6(lane), (Dd), __uint16ToInt32(Rt)) )
#define vset_lane_u32(Rt, Dd, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_DdRt_acc( 0xee000b10 | _NENC_21(lane), (Dd), __uint32ToInt32(Rt)) )
#define vset_lane_u8(Rt, Dd, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_DdRt_acc( 0xee400b10 | _NENC_21x6_5(lane), (Dd), __uint8ToInt32(Rt)) )
// VMOV (scalar to ARM core register)
#define vget_lane_f32(Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_FtDn( 0xee100b10 | _NENC_21(lane), (Dm)) )
#define vget_lane_p16(Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), (poly16_t)__neon_RtDn( 0xee900b30 | _NENC_21x6(lane), (Dm)) )
#define vget_lane_p8(Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), (poly8_t)__neon_RtDn( 0xeed00b10 | _NENC_21x6_5(lane), (Dm)) )
#define vget_lane_s16(Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), (__int16)__neon_RtDn( 0xee100b30 | _NENC_21x6(lane), (Dm)) )
#define vget_lane_s8(Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), (__int8)__neon_RtDn( 0xee500b10 | _NENC_21x6_5(lane), (Dm)) )
#define vget_lane_s32(Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), (__int32)__neon_RtDn( 0xee100b10 | _NENC_21(lane), (Dm)) )
#define vget_lane_u16(Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), (unsigned __int16)__neon_RtDn( 0xee900b30 | _NENC_21x6(lane), (Dm)) )
#define vget_lane_u8(Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), (unsigned __int8)__neon_RtDn( 0xeed00b10 | _NENC_21x6_5(lane), (Dm)) )
#define vget_lane_u32(Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), (unsigned __int32)__neon_RtDn( 0xee100b10 | _NENC_21(lane), (Dm)) )
// VMOV.64 (ARM core register pair to scalar)
#define vset_lane_s64(R64t, Dd, lane) ( __static_assert((lane) >= 0 && (lane) < 1, "invalid lane index"), __neon_DdRtRt2_acc( 0xec400b10, (Dd), __int64ToInt64(R64t)) )
#define vset_lane_u64(R64t, Dd, lane) ( __static_assert((lane) >= 0 && (lane) < 1, "invalid lane index"), __neon_DdRtRt2_acc( 0xec400b10, (Dd), __uint64ToInt64(R64t)) )
#define vsetq_lane_s64(R64t, Qd, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_QdRtRt2_acc( 0xec400b10 | _NENC_0(lane), (Qd), __int64ToInt64(R64t)) )
#define vsetq_lane_u64(R64t, Qd, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_QdRtRt2_acc( 0xec400b10 | _NENC_0(lane), (Qd), __uint64ToInt64(R64t)) )
// VMOV.64 (scalar to ARM core register pair)
#define vget_lane_s64(Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 1, "invalid lane index"), (__int64)__neon_RtRt2Dm( 0xec500b10, (Dm)) )
#define vget_lane_u64(Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 1, "invalid lane index"), (unsigned __int64)__neon_RtRt2Dm( 0xec500b10, (Dm)) )
#define vgetq_lane_s64(Qm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), (__int64)__neon_RtRt2Qm( 0xec500b10 | _NENC_0(lane), (Qm)) )
#define vgetq_lane_u64(Qm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), (unsigned __int64)__neon_RtRt2Qm( 0xec500b10 | _NENC_0(lane), (Qm)) )
// VMOV.Q (ARM core register to scalar)
#define vsetq_lane_f32(Ft, Qd, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_QdFt_acc( 0xee000b10 | _NENC_16((lane) >= 2 ? 1 : 0) | _NENC_21((lane) % 2), (Qd), (Ft)) )
#define vsetq_lane_p16(Rt, Qd, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_QdRt_acc( 0xee000b30 | _NENC_16((lane) >= 4 ? 1 : 0) | _NENC_21x6((lane) % 4), (Qd), __poly16ToInt32(Rt)) )
#define vsetq_lane_p8(Rt, Qd, lane) ( __static_assert((lane) >= 0 && (lane) < 16, "invalid lane index"), __neon_QdRt_acc( 0xee400b10 | _NENC_16((lane) >= 8 ? 1 : 0) | _NENC_21x6_5((lane) % 8), (Qd), __poly8ToInt32(Rt)) )
#define vsetq_lane_s16(Rt, Qd, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_QdRt_acc( 0xee000b30 | _NENC_16((lane) >= 4 ? 1 : 0) | _NENC_21x6((lane) % 4), (Qd), __int16ToInt32(Rt)) )
#define vsetq_lane_s32(Rt, Qd, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_QdRt_acc( 0xee000b10 | _NENC_16((lane) >= 2 ? 1 : 0) | _NENC_21((lane) % 2), (Qd), __int32ToInt32(Rt)) )
#define vsetq_lane_s8(Rt, Qd, lane) ( __static_assert((lane) >= 0 && (lane) < 16, "invalid lane index"), __neon_QdRt_acc( 0xee400b10 | _NENC_16((lane) >= 8 ? 1 : 0) | _NENC_21x6_5((lane) % 8), (Qd), __int8ToInt32(Rt)) )
#define vsetq_lane_u16(Rt, Qd, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_QdRt_acc( 0xee000b30 | _NENC_16((lane) >= 4 ? 1 : 0) | _NENC_21x6((lane) % 4), (Qd), __uint16ToInt32(Rt)) )
#define vsetq_lane_u32(Rt, Qd, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_QdRt_acc( 0xee000b10 | _NENC_16((lane) >= 2 ? 1 : 0) | _NENC_21((lane) % 2), (Qd), __uint32ToInt32(Rt)) )
#define vsetq_lane_u8(Rt, Qd, lane) ( __static_assert((lane) >= 0 && (lane) < 16, "invalid lane index"), __neon_QdRt_acc( 0xee400b10 | _NENC_16((lane) >= 8 ? 1 : 0) | _NENC_21x6_5((lane) % 8), (Qd), __uint8ToInt32(Rt)) )
// VMOV.Q (scalar to ARM core register)
#define vgetq_lane_f32(Qm, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_FtQn( 0xee100b10 | _NENC_16((lane) >= 2 ? 1 : 0) | _NENC_21((lane) % 2), (Qm)) )
#define vgetq_lane_p16(Qm, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), (poly16_t)__neon_RtQn( 0xee900b30 | _NENC_16((lane) >= 4 ? 1 : 0) | _NENC_21x6((lane) % 4), (Qm)) )
#define vgetq_lane_p8(Qm, lane) ( __static_assert((lane) >= 0 && (lane) < 16, "invalid lane index"), (poly8_t)__neon_RtQn( 0xeed00b10 | _NENC_16((lane) >= 8 ? 1 : 0) | _NENC_21x6_5((lane) % 8), (Qm)) )
#define vgetq_lane_s16(Qm, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), (__int16)__neon_RtQn( 0xee100b30 | _NENC_16((lane) >= 4 ? 1 : 0) | _NENC_21x6((lane) % 4), (Qm)) )
#define vgetq_lane_s8(Qm, lane) ( __static_assert((lane) >= 0 && (lane) < 16, "invalid lane index"), (__int8)__neon_RtQn( 0xee500b10 | _NENC_16((lane) >= 8 ? 1 : 0) | _NENC_21x6_5((lane) % 8), (Qm)) )
#define vgetq_lane_s32(Qm, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), (__int32)__neon_RtQn( 0xee100b10 | _NENC_16((lane) >= 2 ? 1 : 0) | _NENC_21((lane) % 2), (Qm)) )
#define vgetq_lane_u16(Qm, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), (unsigned __int16)__neon_RtQn( 0xee900b30 | _NENC_16((lane) >= 4 ? 1 : 0) | _NENC_21x6((lane) % 4), (Qm)) )
#define vgetq_lane_u8(Qm, lane) ( __static_assert((lane) >= 0 && (lane) < 16, "invalid lane index"), (unsigned __int8)__neon_RtQn( 0xeed00b10 | _NENC_16((lane) >= 8 ? 1 : 0) | _NENC_21x6_5((lane) % 8), (Qm)) )
#define vgetq_lane_u32(Qm, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), (unsigned __int32)__neon_RtQn( 0xee100b10 | _NENC_16((lane) >= 2 ? 1 : 0) | _NENC_21((lane) % 2), (Qm)) )
// VMOVL
#define vmovl_s16(Dm) ( __neon_QdDm( 0xf2900a10, (Dm)) )
#define vmovl_s32(Dm) ( __neon_QdDm( 0xf2a00a10, (Dm)) )
#define vmovl_s8(Dm) ( __neon_QdDm( 0xf2880a10, (Dm)) )
#define vmovl_u16(Dm) ( __neon_QdDm( 0xf3900a10, (Dm)) )
#define vmovl_u32(Dm) ( __neon_QdDm( 0xf3a00a10, (Dm)) )
#define vmovl_u8(Dm) ( __neon_QdDm( 0xf3880a10, (Dm)) )
// VMOVN
#define vmovn_s16(Qm) ( __neon_DdQm( 0xf3b20200, (Qm)) )
#define vmovn_s32(Qm) ( __neon_DdQm( 0xf3b60200, (Qm)) )
#define vmovn_s64(Qm) ( __neon_DdQm( 0xf3ba0200, (Qm)) )
#define vmovn_u16(Qm) ( __neon_DdQm( 0xf3b20200, (Qm)) )
#define vmovn_u32(Qm) ( __neon_DdQm( 0xf3b60200, (Qm)) )
#define vmovn_u64(Qm) ( __neon_DdQm( 0xf3ba0200, (Qm)) )
// VMUL
#define vmul_f32(Dn, Dm) ( __neon_DdDnDm( 0xf3000d10, (Dn), (Dm)) )
#define vmul_p8(Dn, Dm) ( __neon_DdDnDm( 0xf3000910, (Dn), (Dm)) )
#define vmul_s16(Dn, Dm) ( __neon_DdDnDm( 0xf2100910, (Dn), (Dm)) )
#define vmul_s32(Dn, Dm) ( __neon_DdDnDm( 0xf2200910, (Dn), (Dm)) )
#define vmul_s8(Dn, Dm) ( __neon_DdDnDm( 0xf2000910, (Dn), (Dm)) )
#define vmul_u16(Dn, Dm) ( __neon_DdDnDm( 0xf2100910, (Dn), (Dm)) )
#define vmul_u32(Dn, Dm) ( __neon_DdDnDm( 0xf2200910, (Dn), (Dm)) )
#define vmul_u8(Dn, Dm) ( __neon_DdDnDm( 0xf2000910, (Dn), (Dm)) )
#define vmulq_f32(Qn, Qm) ( __neon_QdQnQm( 0xf3000d50, (Qn), (Qm)) )
#define vmulq_p8(Qn, Qm) ( __neon_QdQnQm( 0xf3000950, (Qn), (Qm)) )
#define vmulq_s16(Qn, Qm) ( __neon_QdQnQm( 0xf2100950, (Qn), (Qm)) )
#define vmulq_s32(Qn, Qm) ( __neon_QdQnQm( 0xf2200950, (Qn), (Qm)) )
#define vmulq_s8(Qn, Qm) ( __neon_QdQnQm( 0xf2000950, (Qn), (Qm)) )
#define vmulq_u16(Qn, Qm) ( __neon_QdQnQm( 0xf2100950, (Qn), (Qm)) )
#define vmulq_u32(Qn, Qm) ( __neon_QdQnQm( 0xf2200950, (Qn), (Qm)) )
#define vmulq_u8(Qn, Qm) ( __neon_QdQnQm( 0xf2000950, (Qn), (Qm)) )
// VMUL (by scalar)
#define vmul_lane_f32(Dn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_DdDnDmx( 0xf2a00940 | _NENC_5(lane), (Dn), (Dm)) )
#define vmul_lane_s16(Dn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_DdDnDmx( 0xf2900840 | _NENC_5x3(lane), (Dn), (Dm)) )
#define vmul_lane_s32(Dn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_DdDnDmx( 0xf2a00840 | _NENC_5(lane), (Dn), (Dm)) )
#define vmul_lane_u16(Dn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_DdDnDmx( 0xf2900840 | _NENC_5x3(lane), (Dn), (Dm)) )
#define vmul_lane_u32(Dn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_DdDnDmx( 0xf2a00840 | _NENC_5(lane), (Dn), (Dm)) )
#define vmulq_lane_f32(Qn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_QdQnDmx( 0xf3a00940 | _NENC_5(lane), (Qn), (Dm)) )
#define vmulq_lane_s16(Qn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_QdQnDmx( 0xf3900840 | _NENC_5x3(lane), (Qn), (Dm)) )
#define vmulq_lane_s32(Qn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_QdQnDmx( 0xf3a00840 | _NENC_5(lane), (Qn), (Dm)) )
#define vmulq_lane_u16(Qn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_QdQnDmx( 0xf3900840 | _NENC_5x3(lane), (Qn), (Dm)) )
#define vmulq_lane_u32(Qn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_QdQnDmx( 0xf3a00840 | _NENC_5(lane), (Qn), (Dm)) )
// VMULL
#define vmull_p8(Dn, Dm) ( __neon_QdDnDm( 0xf2800e00, (Dn), (Dm)) )
#define vmull_s16(Dn, Dm) ( __neon_QdDnDm( 0xf2900c00, (Dn), (Dm)) )
#define vmull_s32(Dn, Dm) ( __neon_QdDnDm( 0xf2a00c00, (Dn), (Dm)) )
#define vmull_s8(Dn, Dm) ( __neon_QdDnDm( 0xf2800c00, (Dn), (Dm)) )
#define vmull_u16(Dn, Dm) ( __neon_QdDnDm( 0xf3900c00, (Dn), (Dm)) )
#define vmull_u32(Dn, Dm) ( __neon_QdDnDm( 0xf3a00c00, (Dn), (Dm)) )
#define vmull_u8(Dn, Dm) ( __neon_QdDnDm( 0xf3800c00, (Dn), (Dm)) )
// VMULL (by scalar)
#define vmull_lane_s16(Dn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_QdDnDmx( 0xf2900a40 | _NENC_5x3(lane), (Dn), (Dm)) )
#define vmull_lane_s32(Dn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_QdDnDmx( 0xf2a00a40 | _NENC_5(lane), (Dn), (Dm)) )
#define vmull_lane_u16(Dn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_QdDnDmx( 0xf3900a40 | _NENC_5x3(lane), (Dn), (Dm)) )
#define vmull_lane_u32(Dn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_QdDnDmx( 0xf3a00a40 | _NENC_5(lane), (Dn), (Dm)) )
// VMVN
#define vmvn_p16(Dm) ( __neon_DdDm( 0xf3b00580, (Dm)) )
#define vmvn_p8(Dm) ( __neon_DdDm( 0xf3b00580, (Dm)) )
#define vmvn_s16(Dm) ( __neon_DdDm( 0xf3b00580, (Dm)) )
#define vmvn_s32(Dm) ( __neon_DdDm( 0xf3b00580, (Dm)) )
#define vmvn_s8(Dm) ( __neon_DdDm( 0xf3b00580, (Dm)) )
#define vmvn_u16(Dm) ( __neon_DdDm( 0xf3b00580, (Dm)) )
#define vmvn_u32(Dm) ( __neon_DdDm( 0xf3b00580, (Dm)) )
#define vmvn_u8(Dm) ( __neon_DdDm( 0xf3b00580, (Dm)) )
#define vmvnq_p16(Qm) ( __neon_QdQm( 0xf3b005c0, (Qm)) )
#define vmvnq_p8(Qm) ( __neon_QdQm( 0xf3b005c0, (Qm)) )
#define vmvnq_s16(Qm) ( __neon_QdQm( 0xf3b005c0, (Qm)) )
#define vmvnq_s32(Qm) ( __neon_QdQm( 0xf3b005c0, (Qm)) )
#define vmvnq_s8(Qm) ( __neon_QdQm( 0xf3b005c0, (Qm)) )
#define vmvnq_u16(Qm) ( __neon_QdQm( 0xf3b005c0, (Qm)) )
#define vmvnq_u32(Qm) ( __neon_QdQm( 0xf3b005c0, (Qm)) )
#define vmvnq_u8(Qm) ( __neon_QdQm( 0xf3b005c0, (Qm)) )
// VPADAL
#define vpadal_s16(Dd, Dm) ( __neon_DdDm_acc( 0xf3b40600, (Dd), (Dm)) )
#define vpadal_s32(Dd, Dm) ( __neon_DdDm_acc( 0xf3b80600, (Dd), (Dm)) )
#define vpadal_s8(Dd, Dm) ( __neon_DdDm_acc( 0xf3b00600, (Dd), (Dm)) )
#define vpadal_u16(Dd, Dm) ( __neon_DdDm_acc( 0xf3b40680, (Dd), (Dm)) )
#define vpadal_u32(Dd, Dm) ( __neon_DdDm_acc( 0xf3b80680, (Dd), (Dm)) )
#define vpadal_u8(Dd, Dm) ( __neon_DdDm_acc( 0xf3b00680, (Dd), (Dm)) )
#define vpadalq_s16(Qd, Qm) ( __neon_QdQm_acc( 0xf3b40640, (Qd), (Qm)) )
#define vpadalq_s32(Qd, Qm) ( __neon_QdQm_acc( 0xf3b80640, (Qd), (Qm)) )
#define vpadalq_s8(Qd, Qm) ( __neon_QdQm_acc( 0xf3b00640, (Qd), (Qm)) )
#define vpadalq_u16(Qd, Qm) ( __neon_QdQm_acc( 0xf3b406c0, (Qd), (Qm)) )
#define vpadalq_u32(Qd, Qm) ( __neon_QdQm_acc( 0xf3b806c0, (Qd), (Qm)) )
#define vpadalq_u8(Qd, Qm) ( __neon_QdQm_acc( 0xf3b006c0, (Qd), (Qm)) )
// VPADD (floating point)
#define vpadd_f32(Dn, Dm) ( __neon_DdDnDm( 0xf3000d00, (Dn), (Dm)) )
// VPADD (integer)
#define vpadd_s16(Dn, Dm) ( __neon_DdDnDm( 0xf2100b10, (Dn), (Dm)) )
#define vpadd_s32(Dn, Dm) ( __neon_DdDnDm( 0xf2200b10, (Dn), (Dm)) )
#define vpadd_s8(Dn, Dm) ( __neon_DdDnDm( 0xf2000b10, (Dn), (Dm)) )
#define vpadd_u16(Dn, Dm) ( __neon_DdDnDm( 0xf2100b10, (Dn), (Dm)) )
#define vpadd_u32(Dn, Dm) ( __neon_DdDnDm( 0xf2200b10, (Dn), (Dm)) )
#define vpadd_u8(Dn, Dm) ( __neon_DdDnDm( 0xf2000b10, (Dn), (Dm)) )
// VPADDL
#define vpaddl_s16(Dm) ( __neon_DdDm( 0xf3b40200, (Dm)) )
#define vpaddl_s32(Dm) ( __neon_DdDm( 0xf3b80200, (Dm)) )
#define vpaddl_s8(Dm) ( __neon_DdDm( 0xf3b00200, (Dm)) )
#define vpaddl_u16(Dm) ( __neon_DdDm( 0xf3b40280, (Dm)) )
#define vpaddl_u32(Dm) ( __neon_DdDm( 0xf3b80280, (Dm)) )
#define vpaddl_u8(Dm) ( __neon_DdDm( 0xf3b00280, (Dm)) )
#define vpaddlq_s16(Qm) ( __neon_QdQm( 0xf3b40240, (Qm)) )
#define vpaddlq_s32(Qm) ( __neon_QdQm( 0xf3b80240, (Qm)) )
#define vpaddlq_s8(Qm) ( __neon_QdQm( 0xf3b00240, (Qm)) )
#define vpaddlq_u16(Qm) ( __neon_QdQm( 0xf3b402c0, (Qm)) )
#define vpaddlq_u32(Qm) ( __neon_QdQm( 0xf3b802c0, (Qm)) )
#define vpaddlq_u8(Qm) ( __neon_QdQm( 0xf3b002c0, (Qm)) )
// VPMAX, VPMIN (floating point)
#define vpmax_f32(Dn, Dm) ( __neon_DdDnDm( 0xf3000f00, (Dn), (Dm)) )
#define vpmin_f32(Dn, Dm) ( __neon_DdDnDm( 0xf3200f00, (Dn), (Dm)) )
// VPMAX, VPMIN (integer)
#define vpmax_s16(Dn, Dm) ( __neon_DdDnDm( 0xf2100a00, (Dn), (Dm)) )
#define vpmax_s32(Dn, Dm) ( __neon_DdDnDm( 0xf2200a00, (Dn), (Dm)) )
#define vpmax_s8(Dn, Dm) ( __neon_DdDnDm( 0xf2000a00, (Dn), (Dm)) )
#define vpmax_u16(Dn, Dm) ( __neon_DdDnDm( 0xf3100a00, (Dn), (Dm)) )
#define vpmax_u32(Dn, Dm) ( __neon_DdDnDm( 0xf3200a00, (Dn), (Dm)) )
#define vpmax_u8(Dn, Dm) ( __neon_DdDnDm( 0xf3000a00, (Dn), (Dm)) )
#define vpmin_s16(Dn, Dm) ( __neon_DdDnDm( 0xf2100a10, (Dn), (Dm)) )
#define vpmin_s32(Dn, Dm) ( __neon_DdDnDm( 0xf2200a10, (Dn), (Dm)) )
#define vpmin_s8(Dn, Dm) ( __neon_DdDnDm( 0xf2000a10, (Dn), (Dm)) )
#define vpmin_u16(Dn, Dm) ( __neon_DdDnDm( 0xf3100a10, (Dn), (Dm)) )
#define vpmin_u32(Dn, Dm) ( __neon_DdDnDm( 0xf3200a10, (Dn), (Dm)) )
#define vpmin_u8(Dn, Dm) ( __neon_DdDnDm( 0xf3000a10, (Dn), (Dm)) )
// VQABS, VQNEG
#define vqabs_s16(Dm) ( __neon_DdDm( 0xf3b40700, (Dm)) )
#define vqabs_s32(Dm) ( __neon_DdDm( 0xf3b80700, (Dm)) )
#define vqabs_s8(Dm) ( __neon_DdDm( 0xf3b00700, (Dm)) )
#define vqneg_s16(Dm) ( __neon_DdDm( 0xf3b40780, (Dm)) )
#define vqneg_s32(Dm) ( __neon_DdDm( 0xf3b80780, (Dm)) )
#define vqneg_s8(Dm) ( __neon_DdDm( 0xf3b00780, (Dm)) )
#define vqabsq_s16(Qm) ( __neon_QdQm( 0xf3b40740, (Qm)) )
#define vqabsq_s32(Qm) ( __neon_QdQm( 0xf3b80740, (Qm)) )
#define vqabsq_s8(Qm) ( __neon_QdQm( 0xf3b00740, (Qm)) )
#define vqnegq_s16(Qm) ( __neon_QdQm( 0xf3b407c0, (Qm)) )
#define vqnegq_s32(Qm) ( __neon_QdQm( 0xf3b807c0, (Qm)) )
#define vqnegq_s8(Qm) ( __neon_QdQm( 0xf3b007c0, (Qm)) )
// VQADD
#define vqadd_s16(Dn, Dm) ( __neon_DdDnDm( 0xf2100010, (Dn), (Dm)) )
#define vqadd_s32(Dn, Dm) ( __neon_DdDnDm( 0xf2200010, (Dn), (Dm)) )
#define vqadd_s64(Dn, Dm) ( __neon_DdDnDm( 0xf2300010, (Dn), (Dm)) )
#define vqadd_s8(Dn, Dm) ( __neon_DdDnDm( 0xf2000010, (Dn), (Dm)) )
#define vqadd_u16(Dn, Dm) ( __neon_DdDnDm( 0xf3100010, (Dn), (Dm)) )
#define vqadd_u32(Dn, Dm) ( __neon_DdDnDm( 0xf3200010, (Dn), (Dm)) )
#define vqadd_u64(Dn, Dm) ( __neon_DdDnDm( 0xf3300010, (Dn), (Dm)) )
#define vqadd_u8(Dn, Dm) ( __neon_DdDnDm( 0xf3000010, (Dn), (Dm)) )
#define vqaddq_s16(Qn, Qm) ( __neon_QdQnQm( 0xf2100050, (Qn), (Qm)) )
#define vqaddq_s32(Qn, Qm) ( __neon_QdQnQm( 0xf2200050, (Qn), (Qm)) )
#define vqaddq_s64(Qn, Qm) ( __neon_QdQnQm( 0xf2300050, (Qn), (Qm)) )
#define vqaddq_s8(Qn, Qm) ( __neon_QdQnQm( 0xf2000050, (Qn), (Qm)) )
#define vqaddq_u16(Qn, Qm) ( __neon_QdQnQm( 0xf3100050, (Qn), (Qm)) )
#define vqaddq_u32(Qn, Qm) ( __neon_QdQnQm( 0xf3200050, (Qn), (Qm)) )
#define vqaddq_u64(Qn, Qm) ( __neon_QdQnQm( 0xf3300050, (Qn), (Qm)) )
#define vqaddq_u8(Qn, Qm) ( __neon_QdQnQm( 0xf3000050, (Qn), (Qm)) )
// VQDMLAL, VQDMLSL
#define vqdmlal_s16(Qd, Dn, Dm) ( __neon_QdDnDm_acc( 0xf2900900, (Qd), (Dn), (Dm)) )
#define vqdmlal_s32(Qd, Dn, Dm) ( __neon_QdDnDm_acc( 0xf2a00900, (Qd), (Dn), (Dm)) )
#define vqdmlsl_s16(Qd, Dn, Dm) ( __neon_QdDnDm_acc( 0xf2900b00, (Qd), (Dn), (Dm)) )
#define vqdmlsl_s32(Qd, Dn, Dm) ( __neon_QdDnDm_acc( 0xf2a00b00, (Qd), (Dn), (Dm)) )
// VQDMLAL, VQDMLSL (by scalar)
#define vqdmlal_lane_s16(Qd, Dn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_QdDnDmx_acc( 0xf2900340 | _NENC_5x3(lane), (Qd), (Dn), (Dm)) )
#define vqdmlal_lane_s32(Qd, Dn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_QdDnDmx_acc( 0xf2a00340 | _NENC_5(lane), (Qd), (Dn), (Dm)) )
#define vqdmlsl_lane_s16(Qd, Dn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_QdDnDmx_acc( 0xf2900740 | _NENC_5x3(lane), (Qd), (Dn), (Dm)) )
#define vqdmlsl_lane_s32(Qd, Dn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_QdDnDmx_acc( 0xf2a00740 | _NENC_5(lane), (Qd), (Dn), (Dm)) )
// VQDMULH (by scalar)
#define vqdmulh_lane_s16(Dn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_DdDnDmx( 0xf2900c40 | _NENC_5x3(lane), (Dn), (Dm)) )
#define vqdmulh_lane_s32(Dn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_DdDnDmx( 0xf2a00c40 | _NENC_5(lane), (Dn), (Dm)) )
#define vqrdmulh_lane_s16(Dn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_DdDnDmx( 0xf2900d40 | _NENC_5x3(lane), (Dn), (Dm)) )
#define vqrdmulh_lane_s32(Dn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_DdDnDmx( 0xf2a00d40 | _NENC_5(lane), (Dn), (Dm)) )
#define vqdmulhq_lane_s16(Qn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_QdQnDmx( 0xf3900c40 | _NENC_5x3(lane), (Qn), (Dm)) )
#define vqdmulhq_lane_s32(Qn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_QdQnDmx( 0xf3a00c40 | _NENC_5(lane), (Qn), (Dm)) )
#define vqrdmulhq_lane_s16(Qn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_QdQnDmx( 0xf3900d40 | _NENC_5x3(lane), (Qn), (Dm)) )
#define vqrdmulhq_lane_s32(Qn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_QdQnDmx( 0xf3a00d40 | _NENC_5(lane), (Qn), (Dm)) )
// VQDMULH, VQRDMULH
#define vqdmulh_s16(Dn, Dm) ( __neon_DdDnDm( 0xf2100b00, (Dn), (Dm)) )
#define vqdmulh_s32(Dn, Dm) ( __neon_DdDnDm( 0xf2200b00, (Dn), (Dm)) )
#define vqrdmulh_s16(Dn, Dm) ( __neon_DdDnDm( 0xf3100b00, (Dn), (Dm)) )
#define vqrdmulh_s32(Dn, Dm) ( __neon_DdDnDm( 0xf3200b00, (Dn), (Dm)) )
#define vqdmulhq_s16(Qn, Qm) ( __neon_QdQnQm( 0xf2100b40, (Qn), (Qm)) )
#define vqdmulhq_s32(Qn, Qm) ( __neon_QdQnQm( 0xf2200b40, (Qn), (Qm)) )
#define vqrdmulhq_s16(Qn, Qm) ( __neon_QdQnQm( 0xf3100b40, (Qn), (Qm)) )
#define vqrdmulhq_s32(Qn, Qm) ( __neon_QdQnQm( 0xf3200b40, (Qn), (Qm)) )
// VQDMULL
#define vqdmull_s16(Dn, Dm) ( __neon_QdDnDm( 0xf2900d00, (Dn), (Dm)) )
#define vqdmull_s32(Dn, Dm) ( __neon_QdDnDm( 0xf2a00d00, (Dn), (Dm)) )
// VQDMULL (by scalar)
#define vqdmull_lane_s16(Dn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_QdDnDmx( 0xf2900b40 | _NENC_5x3(lane), (Dn), (Dm)) )
#define vqdmull_lane_s32(Dn, Dm, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_QdDnDmx( 0xf2a00b40 | _NENC_5(lane), (Dn), (Dm)) )
// VQMOVN, VQMOVUN
#define vqmovn_s16(Qm) ( __neon_DdQm( 0xf3b20280, (Qm)) )
#define vqmovn_s32(Qm) ( __neon_DdQm( 0xf3b60280, (Qm)) )
#define vqmovn_s64(Qm) ( __neon_DdQm( 0xf3ba0280, (Qm)) )
#define vqmovn_u16(Qm) ( __neon_DdQm( 0xf3b202c0, (Qm)) )
#define vqmovn_u32(Qm) ( __neon_DdQm( 0xf3b602c0, (Qm)) )
#define vqmovn_u64(Qm) ( __neon_DdQm( 0xf3ba02c0, (Qm)) )
#define vqmovun_s16(Qm) ( __neon_DdQm( 0xf3b20240, (Qm)) )
#define vqmovun_s32(Qm) ( __neon_DdQm( 0xf3b60240, (Qm)) )
#define vqmovun_s64(Qm) ( __neon_DdQm( 0xf3ba0240, (Qm)) )
// VQSHL, VQSHLU (immediate)
#define vqshl_n_s16(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 16, "invalid shift ammount"), __neon_DdDm( 0xf2900710 | _NENC_19_16(shift_ammount), (Dm)) )
#define vqshl_n_s32(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 32, "invalid shift ammount"), __neon_DdDm( 0xf2a00710 | _NENC_20_16(shift_ammount), (Dm)) )
#define vqshl_n_s64(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 64, "invalid shift ammount"), __neon_DdDm( 0xf2800790 | _NENC_21_16(shift_ammount), (Dm)) )
#define vqshl_n_s8(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 8, "invalid shift ammount"), __neon_DdDm( 0xf2880710 | _NENC_18_16(shift_ammount), (Dm)) )
#define vqshl_n_u16(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 16, "invalid shift ammount"), __neon_DdDm( 0xf3900710 | _NENC_19_16(shift_ammount), (Dm)) )
#define vqshl_n_u32(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 32, "invalid shift ammount"), __neon_DdDm( 0xf3a00710 | _NENC_20_16(shift_ammount), (Dm)) )
#define vqshl_n_u64(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 64, "invalid shift ammount"), __neon_DdDm( 0xf3800790 | _NENC_21_16(shift_ammount), (Dm)) )
#define vqshl_n_u8(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 8, "invalid shift ammount"), __neon_DdDm( 0xf3880710 | _NENC_18_16(shift_ammount), (Dm)) )
#define vqshlu_n_s16(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 16, "invalid shift ammount"), __neon_DdDm( 0xf3900610 | _NENC_19_16(shift_ammount), (Dm)) )
#define vqshlu_n_s32(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 32, "invalid shift ammount"), __neon_DdDm( 0xf3a00610 | _NENC_20_16(shift_ammount), (Dm)) )
#define vqshlu_n_s64(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 64, "invalid shift ammount"), __neon_DdDm( 0xf3800690 | _NENC_21_16(shift_ammount), (Dm)) )
#define vqshlu_n_s8(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 8, "invalid shift ammount"), __neon_DdDm( 0xf3880610 | _NENC_18_16(shift_ammount), (Dm)) )
#define vqshlq_n_s16(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 16, "invalid shift ammount"), __neon_QdQm( 0xf2900750 | _NENC_19_16(shift_ammount), (Qm)) )
#define vqshlq_n_s32(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 32, "invalid shift ammount"), __neon_QdQm( 0xf2a00750 | _NENC_20_16(shift_ammount), (Qm)) )
#define vqshlq_n_s64(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 64, "invalid shift ammount"), __neon_QdQm( 0xf28007d0 | _NENC_21_16(shift_ammount), (Qm)) )
#define vqshlq_n_s8(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 8, "invalid shift ammount"), __neon_QdQm( 0xf2880750 | _NENC_18_16(shift_ammount), (Qm)) )
#define vqshlq_n_u16(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 16, "invalid shift ammount"), __neon_QdQm( 0xf3900750 | _NENC_19_16(shift_ammount), (Qm)) )
#define vqshlq_n_u32(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 32, "invalid shift ammount"), __neon_QdQm( 0xf3a00750 | _NENC_20_16(shift_ammount), (Qm)) )
#define vqshlq_n_u64(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 64, "invalid shift ammount"), __neon_QdQm( 0xf38007d0 | _NENC_21_16(shift_ammount), (Qm)) )
#define vqshlq_n_u8(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 8, "invalid shift ammount"), __neon_QdQm( 0xf3880750 | _NENC_18_16(shift_ammount), (Qm)) )
#define vqshluq_n_s16(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 16, "invalid shift ammount"), __neon_QdQm( 0xf3900650 | _NENC_19_16(shift_ammount), (Qm)) )
#define vqshluq_n_s32(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 32, "invalid shift ammount"), __neon_QdQm( 0xf3a00650 | _NENC_20_16(shift_ammount), (Qm)) )
#define vqshluq_n_s64(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 64, "invalid shift ammount"), __neon_QdQm( 0xf38006d0 | _NENC_21_16(shift_ammount), (Qm)) )
#define vqshluq_n_s8(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 8, "invalid shift ammount"), __neon_QdQm( 0xf3880650 | _NENC_18_16(shift_ammount), (Qm)) )
// VQSHRN, VQSHRUN, VQRSHRN, VQRSHRUN (immediate)
#define vqrshrn_n_s16(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 8, "invalid shift ammount"), __neon_DdQm( 0xf2880950 | _NENC_18_16(8 - (shift_ammount)), (Qm)) )
#define vqrshrn_n_s32(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 16, "invalid shift ammount"), __neon_DdQm( 0xf2900950 | _NENC_19_16(16 - (shift_ammount)), (Qm)) )
#define vqrshrn_n_s64(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 32, "invalid shift ammount"), __neon_DdQm( 0xf2a00950 | _NENC_20_16(32 - (shift_ammount)), (Qm)) )
#define vqrshrn_n_u16(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 8, "invalid shift ammount"), __neon_DdQm( 0xf3880950 | _NENC_18_16(8 - (shift_ammount)), (Qm)) )
#define vqrshrn_n_u32(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 16, "invalid shift ammount"), __neon_DdQm( 0xf3900950 | _NENC_19_16(16 - (shift_ammount)), (Qm)) )
#define vqrshrn_n_u64(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 32, "invalid shift ammount"), __neon_DdQm( 0xf3a00950 | _NENC_20_16(32 - (shift_ammount)), (Qm)) )
#define vqrshrun_n_s16(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 8, "invalid shift ammount"), __neon_DdQm( 0xf3880850 | _NENC_18_16(8 - (shift_ammount)), (Qm)) )
#define vqrshrun_n_s32(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 16, "invalid shift ammount"), __neon_DdQm( 0xf3900850 | _NENC_19_16(16 - (shift_ammount)), (Qm)) )
#define vqrshrun_n_s64(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 32, "invalid shift ammount"), __neon_DdQm( 0xf3a00850 | _NENC_20_16(32 - (shift_ammount)), (Qm)) )
#define vqshrn_n_s16(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 8, "invalid shift ammount"), __neon_DdQm( 0xf2880910 | _NENC_18_16(8 - (shift_ammount)), (Qm)) )
#define vqshrn_n_s32(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 16, "invalid shift ammount"), __neon_DdQm( 0xf2900910 | _NENC_19_16(16 - (shift_ammount)), (Qm)) )
#define vqshrn_n_s64(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 32, "invalid shift ammount"), __neon_DdQm( 0xf2a00910 | _NENC_20_16(32 - (shift_ammount)), (Qm)) )
#define vqshrn_n_u16(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 8, "invalid shift ammount"), __neon_DdQm( 0xf3880910 | _NENC_18_16(8 - (shift_ammount)), (Qm)) )
#define vqshrn_n_u32(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 16, "invalid shift ammount"), __neon_DdQm( 0xf3900910 | _NENC_19_16(16 - (shift_ammount)), (Qm)) )
#define vqshrn_n_u64(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 32, "invalid shift ammount"), __neon_DdQm( 0xf3a00910 | _NENC_20_16(32 - (shift_ammount)), (Qm)) )
#define vqshrun_n_s16(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 8, "invalid shift ammount"), __neon_DdQm( 0xf3880810 | _NENC_18_16(8 - (shift_ammount)), (Qm)) )
#define vqshrun_n_s32(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 16, "invalid shift ammount"), __neon_DdQm( 0xf3900810 | _NENC_19_16(16 - (shift_ammount)), (Qm)) )
#define vqshrun_n_s64(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 32, "invalid shift ammount"), __neon_DdQm( 0xf3a00810 | _NENC_20_16(32 - (shift_ammount)), (Qm)) )
// VQSUB
#define vqsub_s16(Dn, Dm) ( __neon_DdDnDm( 0xf2100210, (Dn), (Dm)) )
#define vqsub_s32(Dn, Dm) ( __neon_DdDnDm( 0xf2200210, (Dn), (Dm)) )
#define vqsub_s64(Dn, Dm) ( __neon_DdDnDm( 0xf2300210, (Dn), (Dm)) )
#define vqsub_s8(Dn, Dm) ( __neon_DdDnDm( 0xf2000210, (Dn), (Dm)) )
#define vqsub_u16(Dn, Dm) ( __neon_DdDnDm( 0xf3100210, (Dn), (Dm)) )
#define vqsub_u32(Dn, Dm) ( __neon_DdDnDm( 0xf3200210, (Dn), (Dm)) )
#define vqsub_u64(Dn, Dm) ( __neon_DdDnDm( 0xf3300210, (Dn), (Dm)) )
#define vqsub_u8(Dn, Dm) ( __neon_DdDnDm( 0xf3000210, (Dn), (Dm)) )
#define vqsubq_s16(Qn, Qm) ( __neon_QdQnQm( 0xf2100250, (Qn), (Qm)) )
#define vqsubq_s32(Qn, Qm) ( __neon_QdQnQm( 0xf2200250, (Qn), (Qm)) )
#define vqsubq_s64(Qn, Qm) ( __neon_QdQnQm( 0xf2300250, (Qn), (Qm)) )
#define vqsubq_s8(Qn, Qm) ( __neon_QdQnQm( 0xf2000250, (Qn), (Qm)) )
#define vqsubq_u16(Qn, Qm) ( __neon_QdQnQm( 0xf3100250, (Qn), (Qm)) )
#define vqsubq_u32(Qn, Qm) ( __neon_QdQnQm( 0xf3200250, (Qn), (Qm)) )
#define vqsubq_u64(Qn, Qm) ( __neon_QdQnQm( 0xf3300250, (Qn), (Qm)) )
#define vqsubq_u8(Qn, Qm) ( __neon_QdQnQm( 0xf3000250, (Qn), (Qm)) )
// VRECPE, VRSQRTE
#define vrecpe_f32(Dm) ( __neon_DdDm( 0xf3bb0500, (Dm)) )
#define vrecpe_u32(Dm) ( __neon_DdDm( 0xf3bb0400, (Dm)) )
#define vrsqrte_f32(Dm) ( __neon_DdDm( 0xf3bb0580, (Dm)) )
#define vrsqrte_u32(Dm) ( __neon_DdDm( 0xf3bb0480, (Dm)) )
#define vrecpeq_f32(Qm) ( __neon_QdQm( 0xf3bb0540, (Qm)) )
#define vrecpeq_u32(Qm) ( __neon_QdQm( 0xf3bb0440, (Qm)) )
#define vrsqrteq_f32(Qm) ( __neon_QdQm( 0xf3bb05c0, (Qm)) )
#define vrsqrteq_u32(Qm) ( __neon_QdQm( 0xf3bb04c0, (Qm)) )
// VRECPS
#define vrecps_f32(Dn, Dm) ( __neon_DdDnDm( 0xf2000f10, (Dn), (Dm)) )
#define vrecpsq_f32(Qn, Qm) ( __neon_QdQnQm( 0xf2000f50, (Qn), (Qm)) )
// VREV
#define vrev16_p8(Dm) ( __neon_DdDm( 0xf3b00100, (Dm)) )
#define vrev16_s8(Dm) ( __neon_DdDm( 0xf3b00100, (Dm)) )
#define vrev16_u8(Dm) ( __neon_DdDm( 0xf3b00100, (Dm)) )
#define vrev32_p16(Dm) ( __neon_DdDm( 0xf3b40080, (Dm)) )
#define vrev32_p8(Dm) ( __neon_DdDm( 0xf3b00080, (Dm)) )
#define vrev32_s16(Dm) ( __neon_DdDm( 0xf3b40080, (Dm)) )
#define vrev32_s8(Dm) ( __neon_DdDm( 0xf3b00080, (Dm)) )
#define vrev32_u16(Dm) ( __neon_DdDm( 0xf3b40080, (Dm)) )
#define vrev32_u8(Dm) ( __neon_DdDm( 0xf3b00080, (Dm)) )
#define vrev64_f32(Dm) ( __neon_DdDm( 0xf3b80000, (Dm)) )
#define vrev64_p16(Dm) ( __neon_DdDm( 0xf3b40000, (Dm)) )
#define vrev64_p8(Dm) ( __neon_DdDm( 0xf3b00000, (Dm)) )
#define vrev64_s16(Dm) ( __neon_DdDm( 0xf3b40000, (Dm)) )
#define vrev64_s32(Dm) ( __neon_DdDm( 0xf3b80000, (Dm)) )
#define vrev64_s8(Dm) ( __neon_DdDm( 0xf3b00000, (Dm)) )
#define vrev64_u16(Dm) ( __neon_DdDm( 0xf3b40000, (Dm)) )
#define vrev64_u32(Dm) ( __neon_DdDm( 0xf3b80000, (Dm)) )
#define vrev64_u8(Dm) ( __neon_DdDm( 0xf3b00000, (Dm)) )
#define vrev16q_p8(Qm) ( __neon_QdQm( 0xf3b00140, (Qm)) )
#define vrev16q_s8(Qm) ( __neon_QdQm( 0xf3b00140, (Qm)) )
#define vrev16q_u8(Qm) ( __neon_QdQm( 0xf3b00140, (Qm)) )
#define vrev32q_p16(Qm) ( __neon_QdQm( 0xf3b400c0, (Qm)) )
#define vrev32q_p8(Qm) ( __neon_QdQm( 0xf3b000c0, (Qm)) )
#define vrev32q_s16(Qm) ( __neon_QdQm( 0xf3b400c0, (Qm)) )
#define vrev32q_s8(Qm) ( __neon_QdQm( 0xf3b000c0, (Qm)) )
#define vrev32q_u16(Qm) ( __neon_QdQm( 0xf3b400c0, (Qm)) )
#define vrev32q_u8(Qm) ( __neon_QdQm( 0xf3b000c0, (Qm)) )
#define vrev64q_f32(Qm) ( __neon_QdQm( 0xf3b80040, (Qm)) )
#define vrev64q_p16(Qm) ( __neon_QdQm( 0xf3b40040, (Qm)) )
#define vrev64q_p8(Qm) ( __neon_QdQm( 0xf3b00040, (Qm)) )
#define vrev64q_s16(Qm) ( __neon_QdQm( 0xf3b40040, (Qm)) )
#define vrev64q_s32(Qm) ( __neon_QdQm( 0xf3b80040, (Qm)) )
#define vrev64q_s8(Qm) ( __neon_QdQm( 0xf3b00040, (Qm)) )
#define vrev64q_u16(Qm) ( __neon_QdQm( 0xf3b40040, (Qm)) )
#define vrev64q_u32(Qm) ( __neon_QdQm( 0xf3b80040, (Qm)) )
#define vrev64q_u8(Qm) ( __neon_QdQm( 0xf3b00040, (Qm)) )
// VRSQRTS
#define vrsqrts_f32(Dn, Dm) ( __neon_DdDnDm( 0xf2200f10, (Dn), (Dm)) )
#define vrsqrtsq_f32(Qn, Qm) ( __neon_QdQnQm( 0xf2200f50, (Qn), (Qm)) )
// VSHL (immediate)
#define vshl_n_s16(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 16, "invalid shift ammount"), __neon_DdDm( 0xf2900510 | _NENC_19_16(shift_ammount), (Dm)) )
#define vshl_n_s32(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 32, "invalid shift ammount"), __neon_DdDm( 0xf2a00510 | _NENC_20_16(shift_ammount), (Dm)) )
#define vshl_n_s64(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 64, "invalid shift ammount"), __neon_DdDm( 0xf2800590 | _NENC_21_16(shift_ammount), (Dm)) )
#define vshl_n_s8(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 8, "invalid shift ammount"), __neon_DdDm( 0xf2880510 | _NENC_18_16(shift_ammount), (Dm)) )
#define vshl_n_u16(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 16, "invalid shift ammount"), __neon_DdDm( 0xf2900510 | _NENC_19_16(shift_ammount), (Dm)) )
#define vshl_n_u32(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 32, "invalid shift ammount"), __neon_DdDm( 0xf2a00510 | _NENC_20_16(shift_ammount), (Dm)) )
#define vshl_n_u64(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 64, "invalid shift ammount"), __neon_DdDm( 0xf2800590 | _NENC_21_16(shift_ammount), (Dm)) )
#define vshl_n_u8(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 8, "invalid shift ammount"), __neon_DdDm( 0xf2880510 | _NENC_18_16(shift_ammount), (Dm)) )
#define vshlq_n_s16(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 16, "invalid shift ammount"), __neon_QdQm( 0xf2900550 | _NENC_19_16(shift_ammount), (Qm)) )
#define vshlq_n_s32(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 32, "invalid shift ammount"), __neon_QdQm( 0xf2a00550 | _NENC_20_16(shift_ammount), (Qm)) )
#define vshlq_n_s64(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 64, "invalid shift ammount"), __neon_QdQm( 0xf28005d0 | _NENC_21_16(shift_ammount), (Qm)) )
#define vshlq_n_s8(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 8, "invalid shift ammount"), __neon_QdQm( 0xf2880550 | _NENC_18_16(shift_ammount), (Qm)) )
#define vshlq_n_u16(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 16, "invalid shift ammount"), __neon_QdQm( 0xf2900550 | _NENC_19_16(shift_ammount), (Qm)) )
#define vshlq_n_u32(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 32, "invalid shift ammount"), __neon_QdQm( 0xf2a00550 | _NENC_20_16(shift_ammount), (Qm)) )
#define vshlq_n_u64(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 64, "invalid shift ammount"), __neon_QdQm( 0xf28005d0 | _NENC_21_16(shift_ammount), (Qm)) )
#define vshlq_n_u8(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 8, "invalid shift ammount"), __neon_QdQm( 0xf2880550 | _NENC_18_16(shift_ammount), (Qm)) )
// VSHL, VQSHL, VRSHL, VQRSHL (register)
#define vqrshl_s16(Dn, Dm) ( __neon_DdDnDm( 0xf2100510, (Dm), (Dn)) )
#define vqrshl_s32(Dn, Dm) ( __neon_DdDnDm( 0xf2200510, (Dm), (Dn)) )
#define vqrshl_s64(Dn, Dm) ( __neon_DdDnDm( 0xf2300510, (Dm), (Dn)) )
#define vqrshl_s8(Dn, Dm) ( __neon_DdDnDm( 0xf2000510, (Dm), (Dn)) )
#define vqrshl_u16(Dn, Dm) ( __neon_DdDnDm( 0xf3100510, (Dm), (Dn)) )
#define vqrshl_u32(Dn, Dm) ( __neon_DdDnDm( 0xf3200510, (Dm), (Dn)) )
#define vqrshl_u64(Dn, Dm) ( __neon_DdDnDm( 0xf3300510, (Dm), (Dn)) )
#define vqrshl_u8(Dn, Dm) ( __neon_DdDnDm( 0xf3000510, (Dm), (Dn)) )
#define vqshl_s16(Dn, Dm) ( __neon_DdDnDm( 0xf2100410, (Dm), (Dn)) )
#define vqshl_s32(Dn, Dm) ( __neon_DdDnDm( 0xf2200410, (Dm), (Dn)) )
#define vqshl_s64(Dn, Dm) ( __neon_DdDnDm( 0xf2300410, (Dm), (Dn)) )
#define vqshl_s8(Dn, Dm) ( __neon_DdDnDm( 0xf2000410, (Dm), (Dn)) )
#define vqshl_u16(Dn, Dm) ( __neon_DdDnDm( 0xf3100410, (Dm), (Dn)) )
#define vqshl_u32(Dn, Dm) ( __neon_DdDnDm( 0xf3200410, (Dm), (Dn)) )
#define vqshl_u64(Dn, Dm) ( __neon_DdDnDm( 0xf3300410, (Dm), (Dn)) )
#define vqshl_u8(Dn, Dm) ( __neon_DdDnDm( 0xf3000410, (Dm), (Dn)) )
#define vrshl_s16(Dn, Dm) ( __neon_DdDnDm( 0xf2100500, (Dm), (Dn)) )
#define vrshl_s32(Dn, Dm) ( __neon_DdDnDm( 0xf2200500, (Dm), (Dn)) )
#define vrshl_s64(Dn, Dm) ( __neon_DdDnDm( 0xf2300500, (Dm), (Dn)) )
#define vrshl_s8(Dn, Dm) ( __neon_DdDnDm( 0xf2000500, (Dm), (Dn)) )
#define vrshl_u16(Dn, Dm) ( __neon_DdDnDm( 0xf3100500, (Dm), (Dn)) )
#define vrshl_u32(Dn, Dm) ( __neon_DdDnDm( 0xf3200500, (Dm), (Dn)) )
#define vrshl_u64(Dn, Dm) ( __neon_DdDnDm( 0xf3300500, (Dm), (Dn)) )
#define vrshl_u8(Dn, Dm) ( __neon_DdDnDm( 0xf3000500, (Dm), (Dn)) )
#define vshl_s16(Dn, Dm) ( __neon_DdDnDm( 0xf2100400, (Dm), (Dn)) )
#define vshl_s32(Dn, Dm) ( __neon_DdDnDm( 0xf2200400, (Dm), (Dn)) )
#define vshl_s64(Dn, Dm) ( __neon_DdDnDm( 0xf2300400, (Dm), (Dn)) )
#define vshl_s8(Dn, Dm) ( __neon_DdDnDm( 0xf2000400, (Dm), (Dn)) )
#define vshl_u16(Dn, Dm) ( __neon_DdDnDm( 0xf3100400, (Dm), (Dn)) )
#define vshl_u32(Dn, Dm) ( __neon_DdDnDm( 0xf3200400, (Dm), (Dn)) )
#define vshl_u64(Dn, Dm) ( __neon_DdDnDm( 0xf3300400, (Dm), (Dn)) )
#define vshl_u8(Dn, Dm) ( __neon_DdDnDm( 0xf3000400, (Dm), (Dn)) )
#define vqrshlq_s16(Qn, Qm) ( __neon_QdQnQm( 0xf2100550, (Qm), (Qn)) )
#define vqrshlq_s32(Qn, Qm) ( __neon_QdQnQm( 0xf2200550, (Qm), (Qn)) )
#define vqrshlq_s64(Qn, Qm) ( __neon_QdQnQm( 0xf2300550, (Qm), (Qn)) )
#define vqrshlq_s8(Qn, Qm) ( __neon_QdQnQm( 0xf2000550, (Qm), (Qn)) )
#define vqrshlq_u16(Qn, Qm) ( __neon_QdQnQm( 0xf3100550, (Qm), (Qn)) )
#define vqrshlq_u32(Qn, Qm) ( __neon_QdQnQm( 0xf3200550, (Qm), (Qn)) )
#define vqrshlq_u64(Qn, Qm) ( __neon_QdQnQm( 0xf3300550, (Qm), (Qn)) )
#define vqrshlq_u8(Qn, Qm) ( __neon_QdQnQm( 0xf3000550, (Qm), (Qn)) )
#define vqshlq_s16(Qn, Qm) ( __neon_QdQnQm( 0xf2100450, (Qm), (Qn)) )
#define vqshlq_s32(Qn, Qm) ( __neon_QdQnQm( 0xf2200450, (Qm), (Qn)) )
#define vqshlq_s64(Qn, Qm) ( __neon_QdQnQm( 0xf2300450, (Qm), (Qn)) )
#define vqshlq_s8(Qn, Qm) ( __neon_QdQnQm( 0xf2000450, (Qm), (Qn)) )
#define vqshlq_u16(Qn, Qm) ( __neon_QdQnQm( 0xf3100450, (Qm), (Qn)) )
#define vqshlq_u32(Qn, Qm) ( __neon_QdQnQm( 0xf3200450, (Qm), (Qn)) )
#define vqshlq_u64(Qn, Qm) ( __neon_QdQnQm( 0xf3300450, (Qm), (Qn)) )
#define vqshlq_u8(Qn, Qm) ( __neon_QdQnQm( 0xf3000450, (Qm), (Qn)) )
#define vrshlq_s16(Qn, Qm) ( __neon_QdQnQm( 0xf2100540, (Qm), (Qn)) )
#define vrshlq_s32(Qn, Qm) ( __neon_QdQnQm( 0xf2200540, (Qm), (Qn)) )
#define vrshlq_s64(Qn, Qm) ( __neon_QdQnQm( 0xf2300540, (Qm), (Qn)) )
#define vrshlq_s8(Qn, Qm) ( __neon_QdQnQm( 0xf2000540, (Qm), (Qn)) )
#define vrshlq_u16(Qn, Qm) ( __neon_QdQnQm( 0xf3100540, (Qm), (Qn)) )
#define vrshlq_u32(Qn, Qm) ( __neon_QdQnQm( 0xf3200540, (Qm), (Qn)) )
#define vrshlq_u64(Qn, Qm) ( __neon_QdQnQm( 0xf3300540, (Qm), (Qn)) )
#define vrshlq_u8(Qn, Qm) ( __neon_QdQnQm( 0xf3000540, (Qm), (Qn)) )
#define vshlq_s16(Qn, Qm) ( __neon_QdQnQm( 0xf2100440, (Qm), (Qn)) )
#define vshlq_s32(Qn, Qm) ( __neon_QdQnQm( 0xf2200440, (Qm), (Qn)) )
#define vshlq_s64(Qn, Qm) ( __neon_QdQnQm( 0xf2300440, (Qm), (Qn)) )
#define vshlq_s8(Qn, Qm) ( __neon_QdQnQm( 0xf2000440, (Qm), (Qn)) )
#define vshlq_u16(Qn, Qm) ( __neon_QdQnQm( 0xf3100440, (Qm), (Qn)) )
#define vshlq_u32(Qn, Qm) ( __neon_QdQnQm( 0xf3200440, (Qm), (Qn)) )
#define vshlq_u64(Qn, Qm) ( __neon_QdQnQm( 0xf3300440, (Qm), (Qn)) )
#define vshlq_u8(Qn, Qm) ( __neon_QdQnQm( 0xf3000440, (Qm), (Qn)) )
// VSHLL (shift_ammount != size)
#define vshll_n_s16(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) < 16, "invalid shift ammount"), __neon_QdDm( 0xf2900a10 | _NENC_19_16(shift_ammount), (Dm)) )
#define vshll_n_s32(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) < 32, "invalid shift ammount"), __neon_QdDm( 0xf2a00a10 | _NENC_20_16(shift_ammount), (Dm)) )
#define vshll_n_s8(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) < 8, "invalid shift ammount"), __neon_QdDm( 0xf2880a10 | _NENC_18_16(shift_ammount), (Dm)) )
#define vshll_n_u16(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) < 16, "invalid shift ammount"), __neon_QdDm( 0xf3900a10 | _NENC_19_16(shift_ammount), (Dm)) )
#define vshll_n_u32(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) < 32, "invalid shift ammount"), __neon_QdDm( 0xf3a00a10 | _NENC_20_16(shift_ammount), (Dm)) )
#define vshll_n_u8(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) < 8, "invalid shift ammount"), __neon_QdDm( 0xf3880a10 | _NENC_18_16(shift_ammount), (Dm)) )
// VSHR, VRSHR (immediate)
#define vrshr_n_s16(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 16, "invalid shift ammount"), __neon_DdDm( 0xf2900210 | _NENC_19_16(16 - (shift_ammount)), (Dm)) )
#define vrshr_n_s32(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 32, "invalid shift ammount"), __neon_DdDm( 0xf2a00210 | _NENC_20_16(32 - (shift_ammount)), (Dm)) )
#define vrshr_n_s64(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 64, "invalid shift ammount"), __neon_DdDm( 0xf2800290 | _NENC_21_16(64 - (shift_ammount)), (Dm)) )
#define vrshr_n_s8(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 8, "invalid shift ammount"), __neon_DdDm( 0xf2880210 | _NENC_18_16(8 - (shift_ammount)), (Dm)) )
#define vrshr_n_u16(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 16, "invalid shift ammount"), __neon_DdDm( 0xf3900210 | _NENC_19_16(16 - (shift_ammount)), (Dm)) )
#define vrshr_n_u32(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 32, "invalid shift ammount"), __neon_DdDm( 0xf3a00210 | _NENC_20_16(32 - (shift_ammount)), (Dm)) )
#define vrshr_n_u64(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 64, "invalid shift ammount"), __neon_DdDm( 0xf3800290 | _NENC_21_16(64 - (shift_ammount)), (Dm)) )
#define vrshr_n_u8(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 8, "invalid shift ammount"), __neon_DdDm( 0xf3880210 | _NENC_18_16(8 - (shift_ammount)), (Dm)) )
#define vshr_n_s16(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 16, "invalid shift ammount"), __neon_DdDm( 0xf2900010 | _NENC_19_16(16 - (shift_ammount)), (Dm)) )
#define vshr_n_s32(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 32, "invalid shift ammount"), __neon_DdDm( 0xf2a00010 | _NENC_20_16(32 - (shift_ammount)), (Dm)) )
#define vshr_n_s64(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 64, "invalid shift ammount"), __neon_DdDm( 0xf2800090 | _NENC_21_16(64 - (shift_ammount)), (Dm)) )
#define vshr_n_s8(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 8, "invalid shift ammount"), __neon_DdDm( 0xf2880010 | _NENC_18_16(8 - (shift_ammount)), (Dm)) )
#define vshr_n_u16(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 16, "invalid shift ammount"), __neon_DdDm( 0xf3900010 | _NENC_19_16(16 - (shift_ammount)), (Dm)) )
#define vshr_n_u32(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 32, "invalid shift ammount"), __neon_DdDm( 0xf3a00010 | _NENC_20_16(32 - (shift_ammount)), (Dm)) )
#define vshr_n_u64(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 64, "invalid shift ammount"), __neon_DdDm( 0xf3800090 | _NENC_21_16(64 - (shift_ammount)), (Dm)) )
#define vshr_n_u8(Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 8, "invalid shift ammount"), __neon_DdDm( 0xf3880010 | _NENC_18_16(8 - (shift_ammount)), (Dm)) )
#define vrshrq_n_s16(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 16, "invalid shift ammount"), __neon_QdQm( 0xf2900250 | _NENC_19_16(16 - (shift_ammount)), (Qm)) )
#define vrshrq_n_s32(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 32, "invalid shift ammount"), __neon_QdQm( 0xf2a00250 | _NENC_20_16(32 - (shift_ammount)), (Qm)) )
#define vrshrq_n_s64(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 64, "invalid shift ammount"), __neon_QdQm( 0xf28002d0 | _NENC_21_16(64 - (shift_ammount)), (Qm)) )
#define vrshrq_n_s8(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 8, "invalid shift ammount"), __neon_QdQm( 0xf2880250 | _NENC_18_16(8 - (shift_ammount)), (Qm)) )
#define vrshrq_n_u16(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 16, "invalid shift ammount"), __neon_QdQm( 0xf3900250 | _NENC_19_16(16 - (shift_ammount)), (Qm)) )
#define vrshrq_n_u32(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 32, "invalid shift ammount"), __neon_QdQm( 0xf3a00250 | _NENC_20_16(32 - (shift_ammount)), (Qm)) )
#define vrshrq_n_u64(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 64, "invalid shift ammount"), __neon_QdQm( 0xf38002d0 | _NENC_21_16(64 - (shift_ammount)), (Qm)) )
#define vrshrq_n_u8(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 8, "invalid shift ammount"), __neon_QdQm( 0xf3880250 | _NENC_18_16(8 - (shift_ammount)), (Qm)) )
#define vshrq_n_s16(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 16, "invalid shift ammount"), __neon_QdQm( 0xf2900050 | _NENC_19_16(16 - (shift_ammount)), (Qm)) )
#define vshrq_n_s32(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 32, "invalid shift ammount"), __neon_QdQm( 0xf2a00050 | _NENC_20_16(32 - (shift_ammount)), (Qm)) )
#define vshrq_n_s64(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 64, "invalid shift ammount"), __neon_QdQm( 0xf28000d0 | _NENC_21_16(64 - (shift_ammount)), (Qm)) )
#define vshrq_n_s8(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 8, "invalid shift ammount"), __neon_QdQm( 0xf2880050 | _NENC_18_16(8 - (shift_ammount)), (Qm)) )
#define vshrq_n_u16(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 16, "invalid shift ammount"), __neon_QdQm( 0xf3900050 | _NENC_19_16(16 - (shift_ammount)), (Qm)) )
#define vshrq_n_u32(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 32, "invalid shift ammount"), __neon_QdQm( 0xf3a00050 | _NENC_20_16(32 - (shift_ammount)), (Qm)) )
#define vshrq_n_u64(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 64, "invalid shift ammount"), __neon_QdQm( 0xf38000d0 | _NENC_21_16(64 - (shift_ammount)), (Qm)) )
#define vshrq_n_u8(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 8, "invalid shift ammount"), __neon_QdQm( 0xf3880050 | _NENC_18_16(8 - (shift_ammount)), (Qm)) )
// VSHRN, VRSHRN (immediate)
#define vrshrn_n_s16(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 8, "invalid shift ammount"), __neon_DdQm( 0xf2880850 | _NENC_18_16(8 - (shift_ammount)), (Qm)) )
#define vrshrn_n_s32(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 16, "invalid shift ammount"), __neon_DdQm( 0xf2900850 | _NENC_19_16(16 - (shift_ammount)), (Qm)) )
#define vrshrn_n_s64(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 32, "invalid shift ammount"), __neon_DdQm( 0xf2a00850 | _NENC_20_16(32 - (shift_ammount)), (Qm)) )
#define vrshrn_n_u16(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 8, "invalid shift ammount"), __neon_DdQm( 0xf2880850 | _NENC_18_16(8 - (shift_ammount)), (Qm)) )
#define vrshrn_n_u32(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 16, "invalid shift ammount"), __neon_DdQm( 0xf2900850 | _NENC_19_16(16 - (shift_ammount)), (Qm)) )
#define vrshrn_n_u64(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 32, "invalid shift ammount"), __neon_DdQm( 0xf2a00850 | _NENC_20_16(32 - (shift_ammount)), (Qm)) )
#define vshrn_n_s16(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 8, "invalid shift ammount"), __neon_DdQm( 0xf2880810 | _NENC_18_16(8 - (shift_ammount)), (Qm)) )
#define vshrn_n_s32(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 16, "invalid shift ammount"), __neon_DdQm( 0xf2900810 | _NENC_19_16(16 - (shift_ammount)), (Qm)) )
#define vshrn_n_s64(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 32, "invalid shift ammount"), __neon_DdQm( 0xf2a00810 | _NENC_20_16(32 - (shift_ammount)), (Qm)) )
#define vshrn_n_u16(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 8, "invalid shift ammount"), __neon_DdQm( 0xf2880810 | _NENC_18_16(8 - (shift_ammount)), (Qm)) )
#define vshrn_n_u32(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 16, "invalid shift ammount"), __neon_DdQm( 0xf2900810 | _NENC_19_16(16 - (shift_ammount)), (Qm)) )
#define vshrn_n_u64(Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 32, "invalid shift ammount"), __neon_DdQm( 0xf2a00810 | _NENC_20_16(32 - (shift_ammount)), (Qm)) )
// VSLI (immediate)
#define vsli_n_p16(Dd, Dm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 16, "invalid shift ammount"), __neon_DdDm_acc( 0xf3900510 | _NENC_19_16(shift_ammount), (Dd), (Dm)) )
#define vsli_n_p8(Dd, Dm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 8, "invalid shift ammount"), __neon_DdDm_acc( 0xf3880510 | _NENC_18_16(shift_ammount), (Dd), (Dm)) )
#define vsli_n_s16(Dd, Dm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 16, "invalid shift ammount"), __neon_DdDm_acc( 0xf3900510 | _NENC_19_16(shift_ammount), (Dd), (Dm)) )
#define vsli_n_s32(Dd, Dm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 32, "invalid shift ammount"), __neon_DdDm_acc( 0xf3a00510 | _NENC_20_16(shift_ammount), (Dd), (Dm)) )
#define vsli_n_s64(Dd, Dm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 64, "invalid shift ammount"), __neon_DdDm_acc( 0xf3800590 | _NENC_21_16(shift_ammount), (Dd), (Dm)) )
#define vsli_n_s8(Dd, Dm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 8, "invalid shift ammount"), __neon_DdDm_acc( 0xf3880510 | _NENC_18_16(shift_ammount), (Dd), (Dm)) )
#define vsli_n_u16(Dd, Dm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 16, "invalid shift ammount"), __neon_DdDm_acc( 0xf3900510 | _NENC_19_16(shift_ammount), (Dd), (Dm)) )
#define vsli_n_u32(Dd, Dm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 32, "invalid shift ammount"), __neon_DdDm_acc( 0xf3a00510 | _NENC_20_16(shift_ammount), (Dd), (Dm)) )
#define vsli_n_u64(Dd, Dm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 64, "invalid shift ammount"), __neon_DdDm_acc( 0xf3800590 | _NENC_21_16(shift_ammount), (Dd), (Dm)) )
#define vsli_n_u8(Dd, Dm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 8, "invalid shift ammount"), __neon_DdDm_acc( 0xf3880510 | _NENC_18_16(shift_ammount), (Dd), (Dm)) )
#define vsliq_n_p16(Qd, Qm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 16, "invalid shift ammount"), __neon_QdQm_acc( 0xf3900550 | _NENC_19_16(shift_ammount), (Qd), (Qm)) )
#define vsliq_n_p8(Qd, Qm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 8, "invalid shift ammount"), __neon_QdQm_acc( 0xf3880550 | _NENC_18_16(shift_ammount), (Qd), (Qm)) )
#define vsliq_n_s16(Qd, Qm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 16, "invalid shift ammount"), __neon_QdQm_acc( 0xf3900550 | _NENC_19_16(shift_ammount), (Qd), (Qm)) )
#define vsliq_n_s32(Qd, Qm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 32, "invalid shift ammount"), __neon_QdQm_acc( 0xf3a00550 | _NENC_20_16(shift_ammount), (Qd), (Qm)) )
#define vsliq_n_s64(Qd, Qm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 64, "invalid shift ammount"), __neon_QdQm_acc( 0xf38005d0 | _NENC_21_16(shift_ammount), (Qd), (Qm)) )
#define vsliq_n_s8(Qd, Qm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 8, "invalid shift ammount"), __neon_QdQm_acc( 0xf3880550 | _NENC_18_16(shift_ammount), (Qd), (Qm)) )
#define vsliq_n_u16(Qd, Qm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 16, "invalid shift ammount"), __neon_QdQm_acc( 0xf3900550 | _NENC_19_16(shift_ammount), (Qd), (Qm)) )
#define vsliq_n_u32(Qd, Qm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 32, "invalid shift ammount"), __neon_QdQm_acc( 0xf3a00550 | _NENC_20_16(shift_ammount), (Qd), (Qm)) )
#define vsliq_n_u64(Qd, Qm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 64, "invalid shift ammount"), __neon_QdQm_acc( 0xf38005d0 | _NENC_21_16(shift_ammount), (Qd), (Qm)) )
#define vsliq_n_u8(Qd, Qm, shift_ammount) ( __static_assert((shift_ammount) >= 0 && (shift_ammount) < 8, "invalid shift ammount"), __neon_QdQm_acc( 0xf3880550 | _NENC_18_16(shift_ammount), (Qd), (Qm)) )
// VSRA, VRSRA (immediate)
#define vrsra_n_s16(Dd, Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 16, "invalid shift ammount"), __neon_DdDm_acc( 0xf2900310 | _NENC_19_16(16 - (shift_ammount)), (Dd), (Dm)) )
#define vrsra_n_s32(Dd, Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 32, "invalid shift ammount"), __neon_DdDm_acc( 0xf2a00310 | _NENC_20_16(32 - (shift_ammount)), (Dd), (Dm)) )
#define vrsra_n_s64(Dd, Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 64, "invalid shift ammount"), __neon_DdDm_acc( 0xf2800390 | _NENC_21_16(64 - (shift_ammount)), (Dd), (Dm)) )
#define vrsra_n_s8(Dd, Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 8, "invalid shift ammount"), __neon_DdDm_acc( 0xf2880310 | _NENC_18_16(8 - (shift_ammount)), (Dd), (Dm)) )
#define vrsra_n_u16(Dd, Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 16, "invalid shift ammount"), __neon_DdDm_acc( 0xf3900310 | _NENC_19_16(16 - (shift_ammount)), (Dd), (Dm)) )
#define vrsra_n_u32(Dd, Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 32, "invalid shift ammount"), __neon_DdDm_acc( 0xf3a00310 | _NENC_20_16(32 - (shift_ammount)), (Dd), (Dm)) )
#define vrsra_n_u64(Dd, Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 64, "invalid shift ammount"), __neon_DdDm_acc( 0xf3800390 | _NENC_21_16(64 - (shift_ammount)), (Dd), (Dm)) )
#define vrsra_n_u8(Dd, Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 8, "invalid shift ammount"), __neon_DdDm_acc( 0xf3880310 | _NENC_18_16(8 - (shift_ammount)), (Dd), (Dm)) )
#define vsra_n_s16(Dd, Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 16, "invalid shift ammount"), __neon_DdDm_acc( 0xf2900110 | _NENC_19_16(16 - (shift_ammount)), (Dd), (Dm)) )
#define vsra_n_s32(Dd, Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 32, "invalid shift ammount"), __neon_DdDm_acc( 0xf2a00110 | _NENC_20_16(32 - (shift_ammount)), (Dd), (Dm)) )
#define vsra_n_s64(Dd, Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 64, "invalid shift ammount"), __neon_DdDm_acc( 0xf2800190 | _NENC_21_16(64 - (shift_ammount)), (Dd), (Dm)) )
#define vsra_n_s8(Dd, Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 8, "invalid shift ammount"), __neon_DdDm_acc( 0xf2880110 | _NENC_18_16(8 - (shift_ammount)), (Dd), (Dm)) )
#define vsra_n_u16(Dd, Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 16, "invalid shift ammount"), __neon_DdDm_acc( 0xf3900110 | _NENC_19_16(16 - (shift_ammount)), (Dd), (Dm)) )
#define vsra_n_u32(Dd, Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 32, "invalid shift ammount"), __neon_DdDm_acc( 0xf3a00110 | _NENC_20_16(32 - (shift_ammount)), (Dd), (Dm)) )
#define vsra_n_u64(Dd, Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 64, "invalid shift ammount"), __neon_DdDm_acc( 0xf3800190 | _NENC_21_16(64 - (shift_ammount)), (Dd), (Dm)) )
#define vsra_n_u8(Dd, Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 8, "invalid shift ammount"), __neon_DdDm_acc( 0xf3880110 | _NENC_18_16(8 - (shift_ammount)), (Dd), (Dm)) )
#define vrsraq_n_s16(Qd, Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 16, "invalid shift ammount"), __neon_QdQm_acc( 0xf2900350 | _NENC_19_16(16 - (shift_ammount)), (Qd), (Qm)) )
#define vrsraq_n_s32(Qd, Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 32, "invalid shift ammount"), __neon_QdQm_acc( 0xf2a00350 | _NENC_20_16(32 - (shift_ammount)), (Qd), (Qm)) )
#define vrsraq_n_s64(Qd, Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 64, "invalid shift ammount"), __neon_QdQm_acc( 0xf28003d0 | _NENC_21_16(64 - (shift_ammount)), (Qd), (Qm)) )
#define vrsraq_n_s8(Qd, Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 8, "invalid shift ammount"), __neon_QdQm_acc( 0xf2880350 | _NENC_18_16(8 - (shift_ammount)), (Qd), (Qm)) )
#define vrsraq_n_u16(Qd, Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 16, "invalid shift ammount"), __neon_QdQm_acc( 0xf3900350 | _NENC_19_16(16 - (shift_ammount)), (Qd), (Qm)) )
#define vrsraq_n_u32(Qd, Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 32, "invalid shift ammount"), __neon_QdQm_acc( 0xf3a00350 | _NENC_20_16(32 - (shift_ammount)), (Qd), (Qm)) )
#define vrsraq_n_u64(Qd, Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 64, "invalid shift ammount"), __neon_QdQm_acc( 0xf38003d0 | _NENC_21_16(64 - (shift_ammount)), (Qd), (Qm)) )
#define vrsraq_n_u8(Qd, Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 8, "invalid shift ammount"), __neon_QdQm_acc( 0xf3880350 | _NENC_18_16(8 - (shift_ammount)), (Qd), (Qm)) )
#define vsraq_n_s16(Qd, Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 16, "invalid shift ammount"), __neon_QdQm_acc( 0xf2900150 | _NENC_19_16(16 - (shift_ammount)), (Qd), (Qm)) )
#define vsraq_n_s32(Qd, Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 32, "invalid shift ammount"), __neon_QdQm_acc( 0xf2a00150 | _NENC_20_16(32 - (shift_ammount)), (Qd), (Qm)) )
#define vsraq_n_s64(Qd, Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 64, "invalid shift ammount"), __neon_QdQm_acc( 0xf28001d0 | _NENC_21_16(64 - (shift_ammount)), (Qd), (Qm)) )
#define vsraq_n_s8(Qd, Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 8, "invalid shift ammount"), __neon_QdQm_acc( 0xf2880150 | _NENC_18_16(8 - (shift_ammount)), (Qd), (Qm)) )
#define vsraq_n_u16(Qd, Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 16, "invalid shift ammount"), __neon_QdQm_acc( 0xf3900150 | _NENC_19_16(16 - (shift_ammount)), (Qd), (Qm)) )
#define vsraq_n_u32(Qd, Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 32, "invalid shift ammount"), __neon_QdQm_acc( 0xf3a00150 | _NENC_20_16(32 - (shift_ammount)), (Qd), (Qm)) )
#define vsraq_n_u64(Qd, Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 64, "invalid shift ammount"), __neon_QdQm_acc( 0xf38001d0 | _NENC_21_16(64 - (shift_ammount)), (Qd), (Qm)) )
#define vsraq_n_u8(Qd, Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 8, "invalid shift ammount"), __neon_QdQm_acc( 0xf3880150 | _NENC_18_16(8 - (shift_ammount)), (Qd), (Qm)) )
// VSRI (immediate)
#define vsri_n_p16(Dd, Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 16, "invalid shift ammount"), __neon_DdDm_acc( 0xf3900410 | _NENC_19_16(16 - (shift_ammount)), (Dd), (Dm)) )
#define vsri_n_p8(Dd, Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 8, "invalid shift ammount"), __neon_DdDm_acc( 0xf3880410 | _NENC_18_16(8 - (shift_ammount)), (Dd), (Dm)) )
#define vsri_n_s16(Dd, Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 16, "invalid shift ammount"), __neon_DdDm_acc( 0xf3900410 | _NENC_19_16(16 - (shift_ammount)), (Dd), (Dm)) )
#define vsri_n_s32(Dd, Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 32, "invalid shift ammount"), __neon_DdDm_acc( 0xf3a00410 | _NENC_20_16(32 - (shift_ammount)), (Dd), (Dm)) )
#define vsri_n_s64(Dd, Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 64, "invalid shift ammount"), __neon_DdDm_acc( 0xf3800490 | _NENC_21_16(64 - (shift_ammount)), (Dd), (Dm)) )
#define vsri_n_s8(Dd, Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 8, "invalid shift ammount"), __neon_DdDm_acc( 0xf3880410 | _NENC_18_16(8 - (shift_ammount)), (Dd), (Dm)) )
#define vsri_n_u16(Dd, Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 16, "invalid shift ammount"), __neon_DdDm_acc( 0xf3900410 | _NENC_19_16(16 - (shift_ammount)), (Dd), (Dm)) )
#define vsri_n_u32(Dd, Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 32, "invalid shift ammount"), __neon_DdDm_acc( 0xf3a00410 | _NENC_20_16(32 - (shift_ammount)), (Dd), (Dm)) )
#define vsri_n_u64(Dd, Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 64, "invalid shift ammount"), __neon_DdDm_acc( 0xf3800490 | _NENC_21_16(64 - (shift_ammount)), (Dd), (Dm)) )
#define vsri_n_u8(Dd, Dm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 8, "invalid shift ammount"), __neon_DdDm_acc( 0xf3880410 | _NENC_18_16(8 - (shift_ammount)), (Dd), (Dm)) )
#define vsriq_n_p16(Qd, Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 16, "invalid shift ammount"), __neon_QdQm_acc( 0xf3900450 | _NENC_19_16(16 - (shift_ammount)), (Qd), (Qm)) )
#define vsriq_n_p8(Qd, Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 8, "invalid shift ammount"), __neon_QdQm_acc( 0xf3880450 | _NENC_18_16(8 - (shift_ammount)), (Qd), (Qm)) )
#define vsriq_n_s16(Qd, Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 16, "invalid shift ammount"), __neon_QdQm_acc( 0xf3900450 | _NENC_19_16(16 - (shift_ammount)), (Qd), (Qm)) )
#define vsriq_n_s32(Qd, Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 32, "invalid shift ammount"), __neon_QdQm_acc( 0xf3a00450 | _NENC_20_16(32 - (shift_ammount)), (Qd), (Qm)) )
#define vsriq_n_s64(Qd, Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 64, "invalid shift ammount"), __neon_QdQm_acc( 0xf38004d0 | _NENC_21_16(64 - (shift_ammount)), (Qd), (Qm)) )
#define vsriq_n_s8(Qd, Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 8, "invalid shift ammount"), __neon_QdQm_acc( 0xf3880450 | _NENC_18_16(8 - (shift_ammount)), (Qd), (Qm)) )
#define vsriq_n_u16(Qd, Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 16, "invalid shift ammount"), __neon_QdQm_acc( 0xf3900450 | _NENC_19_16(16 - (shift_ammount)), (Qd), (Qm)) )
#define vsriq_n_u32(Qd, Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 32, "invalid shift ammount"), __neon_QdQm_acc( 0xf3a00450 | _NENC_20_16(32 - (shift_ammount)), (Qd), (Qm)) )
#define vsriq_n_u64(Qd, Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 64, "invalid shift ammount"), __neon_QdQm_acc( 0xf38004d0 | _NENC_21_16(64 - (shift_ammount)), (Qd), (Qm)) )
#define vsriq_n_u8(Qd, Qm, shift_ammount) ( __static_assert((shift_ammount) >= 1 && (shift_ammount) <= 8, "invalid shift ammount"), __neon_QdQm_acc( 0xf3880450 | _NENC_18_16(8 - (shift_ammount)), (Qd), (Qm)) )
// VST1 (multiple single elements)
#define vst1_f32(pD, D) ( __neon_AdrD1( 0xf400078f, __float32ToN64(pD), (D)) )
#define vst1_p16(pD, D) ( __neon_AdrD1( 0xf400074f, __poly16ToN64(pD), (D)) )
#define vst1_p8(pD, D) ( __neon_AdrD1( 0xf400070f, __poly8ToN64(pD), (D)) )
#define vst1_s16(pD, D) ( __neon_AdrD1( 0xf400074f, __int16ToN64(pD), (D)) )
#define vst1_s32(pD, D) ( __neon_AdrD1( 0xf400078f, __int32ToN64(pD), (D)) )
#define vst1_s64(pD, D) ( __neon_AdrD1( 0xf40007cf, __int64ToN64(pD), (D)) )
#define vst1_s8(pD, D) ( __neon_AdrD1( 0xf400070f, __int8ToN64(pD), (D)) )
#define vst1_u16(pD, D) ( __neon_AdrD1( 0xf400074f, __uint16ToN64(pD), (D)) )
#define vst1_u32(pD, D) ( __neon_AdrD1( 0xf400078f, __uint32ToN64(pD), (D)) )
#define vst1_u64(pD, D) ( __neon_AdrD1( 0xf40007cf, __uint64ToN64(pD), (D)) )
#define vst1_u8(pD, D) ( __neon_AdrD1( 0xf400070f, __uint8ToN64(pD), (D)) )
#define vst1_f32_ex(pD, D, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrD1( 0xf400078f | _NENC_5_4(_NEON_ALIGN64(align)), __float32ToN64(pD), (D)) )
#define vst1_p16_ex(pD, D, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrD1( 0xf400074f | _NENC_5_4(_NEON_ALIGN64(align)), __poly16ToN64(pD), (D)) )
#define vst1_p8_ex(pD, D, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrD1( 0xf400070f | _NENC_5_4(_NEON_ALIGN64(align)), __poly8ToN64(pD), (D)) )
#define vst1_s16_ex(pD, D, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrD1( 0xf400074f | _NENC_5_4(_NEON_ALIGN64(align)), __int16ToN64(pD), (D)) )
#define vst1_s32_ex(pD, D, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrD1( 0xf400078f | _NENC_5_4(_NEON_ALIGN64(align)), __int32ToN64(pD), (D)) )
#define vst1_s64_ex(pD, D, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrD1( 0xf40007cf | _NENC_5_4(_NEON_ALIGN64(align)), __int64ToN64(pD), (D)) )
#define vst1_s8_ex(pD, D, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrD1( 0xf400070f | _NENC_5_4(_NEON_ALIGN64(align)), __int8ToN64(pD), (D)) )
#define vst1_u16_ex(pD, D, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrD1( 0xf400074f | _NENC_5_4(_NEON_ALIGN64(align)), __uint16ToN64(pD), (D)) )
#define vst1_u32_ex(pD, D, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrD1( 0xf400078f | _NENC_5_4(_NEON_ALIGN64(align)), __uint32ToN64(pD), (D)) )
#define vst1_u64_ex(pD, D, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrD1( 0xf40007cf | _NENC_5_4(_NEON_ALIGN64(align)), __uint64ToN64(pD), (D)) )
#define vst1_u8_ex(pD, D, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrD1( 0xf400070f | _NENC_5_4(_NEON_ALIGN64(align)), __uint8ToN64(pD), (D)) )
#define vst1q_f32(pD, Q) ( __neon_AdrQ1( 0xf4000a8f, __float32ToN64(pD), (Q)) )
#define vst1q_p16(pD, Q) ( __neon_AdrQ1( 0xf4000a4f, __poly16ToN64(pD), (Q)) )
#define vst1q_p8(pD, Q) ( __neon_AdrQ1( 0xf4000a0f, __poly8ToN64(pD), (Q)) )
#define vst1q_s16(pD, Q) ( __neon_AdrQ1( 0xf4000a4f, __int16ToN64(pD), (Q)) )
#define vst1q_s32(pD, Q) ( __neon_AdrQ1( 0xf4000a8f, __int32ToN64(pD), (Q)) )
#define vst1q_s64(pD, Q) ( __neon_AdrQ1( 0xf4000acf, __int64ToN64(pD), (Q)) )
#define vst1q_s8(pD, Q) ( __neon_AdrQ1( 0xf4000a0f, __int8ToN64(pD), (Q)) )
#define vst1q_u16(pD, Q) ( __neon_AdrQ1( 0xf4000a4f, __uint16ToN64(pD), (Q)) )
#define vst1q_u32(pD, Q) ( __neon_AdrQ1( 0xf4000a8f, __uint32ToN64(pD), (Q)) )
#define vst1q_u64(pD, Q) ( __neon_AdrQ1( 0xf4000acf, __uint64ToN64(pD), (Q)) )
#define vst1q_u8(pD, Q) ( __neon_AdrQ1( 0xf4000a0f, __uint8ToN64(pD), (Q)) )
#define vst1q_f32_ex(pD, Q, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_AdrQ1( 0xf4000a8f | _NENC_5_4(_NEON_ALIGN64_128(align)), __float32ToN64(pD), (Q)) )
#define vst1q_p16_ex(pD, Q, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_AdrQ1( 0xf4000a4f | _NENC_5_4(_NEON_ALIGN64_128(align)), __poly16ToN64(pD), (Q)) )
#define vst1q_p8_ex(pD, Q, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_AdrQ1( 0xf4000a0f | _NENC_5_4(_NEON_ALIGN64_128(align)), __poly8ToN64(pD), (Q)) )
#define vst1q_s16_ex(pD, Q, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_AdrQ1( 0xf4000a4f | _NENC_5_4(_NEON_ALIGN64_128(align)), __int16ToN64(pD), (Q)) )
#define vst1q_s32_ex(pD, Q, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_AdrQ1( 0xf4000a8f | _NENC_5_4(_NEON_ALIGN64_128(align)), __int32ToN64(pD), (Q)) )
#define vst1q_s64_ex(pD, Q, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_AdrQ1( 0xf4000acf | _NENC_5_4(_NEON_ALIGN64_128(align)), __int64ToN64(pD), (Q)) )
#define vst1q_s8_ex(pD, Q, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_AdrQ1( 0xf4000a0f | _NENC_5_4(_NEON_ALIGN64_128(align)), __int8ToN64(pD), (Q)) )
#define vst1q_u16_ex(pD, Q, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_AdrQ1( 0xf4000a4f | _NENC_5_4(_NEON_ALIGN64_128(align)), __uint16ToN64(pD), (Q)) )
#define vst1q_u32_ex(pD, Q, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_AdrQ1( 0xf4000a8f | _NENC_5_4(_NEON_ALIGN64_128(align)), __uint32ToN64(pD), (Q)) )
#define vst1q_u64_ex(pD, Q, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_AdrQ1( 0xf4000acf | _NENC_5_4(_NEON_ALIGN64_128(align)), __uint64ToN64(pD), (Q)) )
#define vst1q_u8_ex(pD, Q, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_AdrQ1( 0xf4000a0f | _NENC_5_4(_NEON_ALIGN64_128(align)), __uint8ToN64(pD), (Q)) )
// VST1 (single element from one lane)
#define vst1_lane_f32(pD, D, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_AdrD1( 0xf480080f | _NENC_7(lane), __float32ToN64(pD), (D)) )
#define vst1_lane_p16(pD, D, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_AdrD1( 0xf480040f | _NENC_7_6(lane), __poly16ToN64(pD), (D)) )
#define vst1_lane_p8(pD, D, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_AdrD1( 0xf480000f | _NENC_7_5(lane), __poly8ToN64(pD), (D)) )
#define vst1_lane_s16(pD, D, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_AdrD1( 0xf480040f | _NENC_7_6(lane), __int16ToN64(pD), (D)) )
#define vst1_lane_s32(pD, D, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_AdrD1( 0xf480080f | _NENC_7(lane), __int32ToN64(pD), (D)) )
#define vst1_lane_s8(pD, D, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_AdrD1( 0xf480000f | _NENC_7_5(lane), __int8ToN64(pD), (D)) )
#define vst1_lane_u16(pD, D, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_AdrD1( 0xf480040f | _NENC_7_6(lane), __uint16ToN64(pD), (D)) )
#define vst1_lane_u32(pD, D, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_AdrD1( 0xf480080f | _NENC_7(lane), __uint32ToN64(pD), (D)) )
#define vst1_lane_u8(pD, D, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_AdrD1( 0xf480000f | _NENC_7_5(lane), __uint8ToN64(pD), (D)) )
#define vst1q_lane_f32(pD, Q, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_AdrQ1( 0xf480080f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0), __float32ToN64(pD), (Q)) )
#define vst1q_lane_p16(pD, Q, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_AdrQ1( 0xf480040f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0), __poly16ToN64(pD), (Q)) )
#define vst1q_lane_p8(pD, Q, lane) ( __static_assert((lane) >= 0 && (lane) < 16, "invalid lane index"), __neon_AdrQ1( 0xf480000f | _NENC_7_5((lane) % 8) | _NENC_12((lane) >= 8 ? 1 : 0), __poly8ToN64(pD), (Q)) )
#define vst1q_lane_s16(pD, Q, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_AdrQ1( 0xf480040f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0), __int16ToN64(pD), (Q)) )
#define vst1q_lane_s32(pD, Q, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_AdrQ1( 0xf480080f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0), __int32ToN64(pD), (Q)) )
#define vst1q_lane_s8(pD, Q, lane) ( __static_assert((lane) >= 0 && (lane) < 16, "invalid lane index"), __neon_AdrQ1( 0xf480000f | _NENC_7_5((lane) % 8) | _NENC_12((lane) >= 8 ? 1 : 0), __int8ToN64(pD), (Q)) )
#define vst1q_lane_u16(pD, Q, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_AdrQ1( 0xf480040f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0), __uint16ToN64(pD), (Q)) )
#define vst1q_lane_u32(pD, Q, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_AdrQ1( 0xf480080f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0), __uint32ToN64(pD), (Q)) )
#define vst1q_lane_u8(pD, Q, lane) ( __static_assert((lane) >= 0 && (lane) < 16, "invalid lane index"), __neon_AdrQ1( 0xf480000f | _NENC_7_5((lane) % 8) | _NENC_12((lane) >= 8 ? 1 : 0), __uint8ToN64(pD), (Q)) )
// VST1 (single element from one lane, aligned)
#define vst1_lane_f32_ex(pD, D, lane, align) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_AdrD1( 0xf480080f | _NENC_7(lane) | _NENC_5_4(_NEON_ALIGN32(align) > 0 ? 3 : 0), __float32ToN64(pD), (D)) )
#define vst1_lane_p16_ex(pD, D, lane, align) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __static_assert(_NEON_ALIGN16(align) >= 0, "invalid align"), __neon_AdrD1( 0xf480040f | _NENC_7_6(lane) | _NENC_4(_NEON_ALIGN16(align)), __poly16ToN64(pD), (D)) )
#define vst1_lane_s16_ex(pD, D, lane, align) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __static_assert(_NEON_ALIGN16(align) >= 0, "invalid align"), __neon_AdrD1( 0xf480040f | _NENC_7_6(lane) | _NENC_4(_NEON_ALIGN16(align)), __int16ToN64(pD), (D)) )
#define vst1_lane_s32_ex(pD, D, lane, align) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_AdrD1( 0xf480080f | _NENC_7(lane) | _NENC_5_4(_NEON_ALIGN32(align) > 0 ? 3 : 0), __int32ToN64(pD), (D)) )
#define vst1_lane_u16_ex(pD, D, lane, align) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __static_assert(_NEON_ALIGN16(align) >= 0, "invalid align"), __neon_AdrD1( 0xf480040f | _NENC_7_6(lane) | _NENC_4(_NEON_ALIGN16(align)), __uint16ToN64(pD), (D)) )
#define vst1_lane_u32_ex(pD, D, lane, align) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_AdrD1( 0xf480080f | _NENC_7(lane) | _NENC_5_4(_NEON_ALIGN32(align) > 0 ? 3 : 0), __uint32ToN64(pD), (D)) )
#define vst1q_lane_f32_ex(pD, Q, lane, align) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_AdrQ1( 0xf480080f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0) | _NENC_5_4(_NEON_ALIGN32(align) > 0 ? 3 : 0), __float32ToN64(pD), (Q)) )
#define vst1q_lane_p16_ex(pD, Q, lane, align) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __static_assert(_NEON_ALIGN16(align) >= 0, "invalid align"), __neon_AdrQ1( 0xf480040f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0) | _NENC_4(_NEON_ALIGN16(align)), __poly16ToN64(pD), (Q)) )
#define vst1q_lane_s16_ex(pD, Q, lane, align) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __static_assert(_NEON_ALIGN16(align) >= 0, "invalid align"), __neon_AdrQ1( 0xf480040f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0) | _NENC_4(_NEON_ALIGN16(align)), __int16ToN64(pD), (Q)) )
#define vst1q_lane_s32_ex(pD, Q, lane, align) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_AdrQ1( 0xf480080f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0) | _NENC_5_4(_NEON_ALIGN32(align) > 0 ? 3 : 0), __int32ToN64(pD), (Q)) )
#define vst1q_lane_u16_ex(pD, Q, lane, align) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __static_assert(_NEON_ALIGN16(align) >= 0, "invalid align"), __neon_AdrQ1( 0xf480040f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0) | _NENC_4(_NEON_ALIGN16(align)), __uint16ToN64(pD), (Q)) )
#define vst1q_lane_u32_ex(pD, Q, lane, align) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_AdrQ1( 0xf480080f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0) | _NENC_5_4(_NEON_ALIGN32(align) > 0 ? 3 : 0), __uint32ToN64(pD), (Q)) )
// VST2 (multiple 2-element structures)
#define vst2_f32(pD, D2) ( __neon_AdrDx2( 0xf400088f, __float32ToN64(pD), (D2)) )
#define vst2_p16(pD, D2) ( __neon_AdrDx2( 0xf400084f, __poly16ToN64(pD), (D2)) )
#define vst2_p8(pD, D2) ( __neon_AdrDx2( 0xf400080f, __poly8ToN64(pD), (D2)) )
#define vst2_s16(pD, D2) ( __neon_AdrDx2( 0xf400084f, __int16ToN64(pD), (D2)) )
#define vst2_s32(pD, D2) ( __neon_AdrDx2( 0xf400088f, __int32ToN64(pD), (D2)) )
#define vst2_s8(pD, D2) ( __neon_AdrDx2( 0xf400080f, __int8ToN64(pD), (D2)) )
#define vst2_u16(pD, D2) ( __neon_AdrDx2( 0xf400084f, __uint16ToN64(pD), (D2)) )
#define vst2_u32(pD, D2) ( __neon_AdrDx2( 0xf400088f, __uint32ToN64(pD), (D2)) )
#define vst2_u8(pD, D2) ( __neon_AdrDx2( 0xf400080f, __uint8ToN64(pD), (D2)) )
#define vst2_s64(pD, D2) ( __neon_AdrDx2( 0xf4000acf, __int64ToN64(pD), (D2)) )
#define vst2_u64(pD, D2) ( __neon_AdrDx2( 0xf4000acf, __uint64ToN64(pD), (D2)) )
#define vst2_s64_ex(pD, D2, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_AdrDx2( 0xf4000acf | _NENC_5_4(_NEON_ALIGN64_128(align)), __int64ToN64(pD), (D2)) )
#define vst2_u64_ex(pD, D2, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_AdrDx2( 0xf4000acf | _NENC_5_4(_NEON_ALIGN64_128(align)), __uint64ToN64(pD), (D2)) )
#define vst2_f32_ex(pD, D2, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_AdrDx2( 0xf400088f | _NENC_5_4(_NEON_ALIGN64_128(align)), __float32ToN64(pD), (D2)) )
#define vst2_p16_ex(pD, D2, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_AdrDx2( 0xf400084f | _NENC_5_4(_NEON_ALIGN64_128(align)), __poly16ToN64(pD), (D2)) )
#define vst2_p8_ex(pD, D2, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_AdrDx2( 0xf400080f | _NENC_5_4(_NEON_ALIGN64_128(align)), __poly8ToN64(pD), (D2)) )
#define vst2_s16_ex(pD, D2, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_AdrDx2( 0xf400084f | _NENC_5_4(_NEON_ALIGN64_128(align)), __int16ToN64(pD), (D2)) )
#define vst2_s32_ex(pD, D2, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_AdrDx2( 0xf400088f | _NENC_5_4(_NEON_ALIGN64_128(align)), __int32ToN64(pD), (D2)) )
#define vst2_s8_ex(pD, D2, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_AdrDx2( 0xf400080f | _NENC_5_4(_NEON_ALIGN64_128(align)), __int8ToN64(pD), (D2)) )
#define vst2_u16_ex(pD, D2, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_AdrDx2( 0xf400084f | _NENC_5_4(_NEON_ALIGN64_128(align)), __uint16ToN64(pD), (D2)) )
#define vst2_u32_ex(pD, D2, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_AdrDx2( 0xf400088f | _NENC_5_4(_NEON_ALIGN64_128(align)), __uint32ToN64(pD), (D2)) )
#define vst2_u8_ex(pD, D2, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_AdrDx2( 0xf400080f | _NENC_5_4(_NEON_ALIGN64_128(align)), __uint8ToN64(pD), (D2)) )
#define vst2q_f32(pD, Q2) ( __neon_AdrQx2( 0xf400098f, __float32ToN64(pD), (Q2)) )
#define vst2q_p16(pD, Q2) ( __neon_AdrQx2( 0xf400094f, __poly16ToN64(pD), (Q2)) )
#define vst2q_p8(pD, Q2) ( __neon_AdrQx2( 0xf400090f, __poly8ToN64(pD), (Q2)) )
#define vst2q_s16(pD, Q2) ( __neon_AdrQx2( 0xf400094f, __int16ToN64(pD), (Q2)) )
#define vst2q_s32(pD, Q2) ( __neon_AdrQx2( 0xf400098f, __int32ToN64(pD), (Q2)) )
#define vst2q_s8(pD, Q2) ( __neon_AdrQx2( 0xf400090f, __int8ToN64(pD), (Q2)) )
#define vst2q_u16(pD, Q2) ( __neon_AdrQx2( 0xf400094f, __uint16ToN64(pD), (Q2)) )
#define vst2q_u32(pD, Q2) ( __neon_AdrQx2( 0xf400098f, __uint32ToN64(pD), (Q2)) )
#define vst2q_u8(pD, Q2) ( __neon_AdrQx2( 0xf400090f, __uint8ToN64(pD), (Q2)) )
#define vst2q_f32_ex(pD, Q2, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_AdrQx2( 0xf400098f | _NENC_5_4(_NEON_ALIGN64_128(align)), __float32ToN64(pD), (Q2)) )
#define vst2q_p16_ex(pD, Q2, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_AdrQx2( 0xf400094f | _NENC_5_4(_NEON_ALIGN64_128(align)), __poly16ToN64(pD), (Q2)) )
#define vst2q_p8_ex(pD, Q2, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_AdrQx2( 0xf400090f | _NENC_5_4(_NEON_ALIGN64_128(align)), __poly8ToN64(pD), (Q2)) )
#define vst2q_s16_ex(pD, Q2, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_AdrQx2( 0xf400094f | _NENC_5_4(_NEON_ALIGN64_128(align)), __int16ToN64(pD), (Q2)) )
#define vst2q_s32_ex(pD, Q2, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_AdrQx2( 0xf400098f | _NENC_5_4(_NEON_ALIGN64_128(align)), __int32ToN64(pD), (Q2)) )
#define vst2q_s8_ex(pD, Q2, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_AdrQx2( 0xf400090f | _NENC_5_4(_NEON_ALIGN64_128(align)), __int8ToN64(pD), (Q2)) )
#define vst2q_u16_ex(pD, Q2, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_AdrQx2( 0xf400094f | _NENC_5_4(_NEON_ALIGN64_128(align)), __uint16ToN64(pD), (Q2)) )
#define vst2q_u32_ex(pD, Q2, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_AdrQx2( 0xf400098f | _NENC_5_4(_NEON_ALIGN64_128(align)), __uint32ToN64(pD), (Q2)) )
#define vst2q_u8_ex(pD, Q2, align) ( __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_AdrQx2( 0xf400090f | _NENC_5_4(_NEON_ALIGN64_128(align)), __uint8ToN64(pD), (Q2)) )
// VST2 (single 2-element structure from one lane)
#define vst2_lane_f32(pD, D2, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_AdrDx2x( 0xf480090f | _NENC_7(lane), __float32ToN64(pD), (D2)) )
#define vst2_lane_p16(pD, D2, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_AdrDx2x( 0xf480050f | _NENC_7_6(lane), __poly16ToN64(pD), (D2)) )
#define vst2_lane_p8(pD, D2, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_AdrDx2x( 0xf480010f | _NENC_7_5(lane), __poly8ToN64(pD), (D2)) )
#define vst2_lane_s16(pD, D2, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_AdrDx2x( 0xf480050f | _NENC_7_6(lane), __int16ToN64(pD), (D2)) )
#define vst2_lane_s32(pD, D2, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_AdrDx2x( 0xf480090f | _NENC_7(lane), __int32ToN64(pD), (D2)) )
#define vst2_lane_s8(pD, D2, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_AdrDx2x( 0xf480010f | _NENC_7_5(lane), __int8ToN64(pD), (D2)) )
#define vst2_lane_u16(pD, D2, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_AdrDx2x( 0xf480050f | _NENC_7_6(lane), __uint16ToN64(pD), (D2)) )
#define vst2_lane_u32(pD, D2, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_AdrDx2x( 0xf480090f | _NENC_7(lane), __uint32ToN64(pD), (D2)) )
#define vst2_lane_u8(pD, D2, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_AdrDx2x( 0xf480010f | _NENC_7_5(lane), __uint8ToN64(pD), (D2)) )
#define vst2q_lane_f32(pD, Q2, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_AdrQx2x( 0xf480094f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0), __float32ToN64(pD), (Q2)) )
#define vst2q_lane_p16(pD, Q2, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_AdrQx2x( 0xf480052f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0), __poly16ToN64(pD), (Q2)) )
#define vst2q_lane_s16(pD, Q2, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_AdrQx2x( 0xf480052f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0), __int16ToN64(pD), (Q2)) )
#define vst2q_lane_s32(pD, Q2, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_AdrQx2x( 0xf480094f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0), __int32ToN64(pD), (Q2)) )
#define vst2q_lane_u16(pD, Q2, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_AdrQx2x( 0xf480052f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0), __uint16ToN64(pD), (Q2)) )
#define vst2q_lane_u32(pD, Q2, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_AdrQx2x( 0xf480094f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0), __uint32ToN64(pD), (Q2)) )
// VST2 (single 2-element structure from one lane, aligned)
#define vst2_lane_f32_ex(pD, D2, lane, align) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrDx2x( 0xf480090f | _NENC_7(lane) | _NENC_4(_NEON_ALIGN64(align)), __float32ToN64(pD), (D2)) )
#define vst2_lane_p16_ex(pD, D2, lane, align) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_AdrDx2x( 0xf480050f | _NENC_7_6(lane) | _NENC_4(_NEON_ALIGN32(align)), __poly16ToN64(pD), (D2)) )
#define vst2_lane_p8_ex(pD, D2, lane, align) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __static_assert(_NEON_ALIGN16(align) >= 0, "invalid align"), __neon_AdrDx2x( 0xf480010f | _NENC_7_5(lane) | _NENC_4(_NEON_ALIGN16(align)), __poly8ToN64(pD), (D2)) )
#define vst2_lane_s16_ex(pD, D2, lane, align) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_AdrDx2x( 0xf480050f | _NENC_7_6(lane) | _NENC_4(_NEON_ALIGN32(align)), __int16ToN64(pD), (D2)) )
#define vst2_lane_s32_ex(pD, D2, lane, align) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrDx2x( 0xf480090f | _NENC_7(lane) | _NENC_4(_NEON_ALIGN64(align)), __int32ToN64(pD), (D2)) )
#define vst2_lane_s8_ex(pD, D2, lane, align) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __static_assert(_NEON_ALIGN16(align) >= 0, "invalid align"), __neon_AdrDx2x( 0xf480010f | _NENC_7_5(lane) | _NENC_4(_NEON_ALIGN16(align)), __int8ToN64(pD), (D2)) )
#define vst2_lane_u16_ex(pD, D2, lane, align) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_AdrDx2x( 0xf480050f | _NENC_7_6(lane) | _NENC_4(_NEON_ALIGN32(align)), __uint16ToN64(pD), (D2)) )
#define vst2_lane_u32_ex(pD, D2, lane, align) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrDx2x( 0xf480090f | _NENC_7(lane) | _NENC_4(_NEON_ALIGN64(align)), __uint32ToN64(pD), (D2)) )
#define vst2_lane_u8_ex(pD, D2, lane, align) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __static_assert(_NEON_ALIGN16(align) >= 0, "invalid align"), __neon_AdrDx2x( 0xf480010f | _NENC_7_5(lane) | _NENC_4(_NEON_ALIGN16(align)), __uint8ToN64(pD), (D2)) )
#define vst2q_lane_f32_ex(pD, Q2, lane, align) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrQx2x( 0xf480094f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0) | _NENC_4(_NEON_ALIGN64(align)), __float32ToN64(pD), (Q2)) )
#define vst2q_lane_p16_ex(pD, Q2, lane, align) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_AdrQx2x( 0xf480052f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0) | _NENC_4(_NEON_ALIGN32(align)), __poly16ToN64(pD), (Q2)) )
#define vst2q_lane_s16_ex(pD, Q2, lane, align) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_AdrQx2x( 0xf480052f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0) | _NENC_4(_NEON_ALIGN32(align)), __int16ToN64(pD), (Q2)) )
#define vst2q_lane_s32_ex(pD, Q2, lane, align) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrQx2x( 0xf480094f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0) | _NENC_4(_NEON_ALIGN64(align)), __int32ToN64(pD), (Q2)) )
#define vst2q_lane_u16_ex(pD, Q2, lane, align) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_AdrQx2x( 0xf480052f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0) | _NENC_4(_NEON_ALIGN32(align)), __uint16ToN64(pD), (Q2)) )
#define vst2q_lane_u32_ex(pD, Q2, lane, align) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrQx2x( 0xf480094f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0) | _NENC_4(_NEON_ALIGN64(align)), __uint32ToN64(pD), (Q2)) )
// VST3 (multiple 3-element structures)
#define vst3_f32(pD, D3) ( __neon_AdrDx3( 0xf400048f, __float32ToN64(pD), (D3)) )
#define vst3_p16(pD, D3) ( __neon_AdrDx3( 0xf400044f, __poly16ToN64(pD), (D3)) )
#define vst3_p8(pD, D3) ( __neon_AdrDx3( 0xf400040f, __poly8ToN64(pD), (D3)) )
#define vst3_s16(pD, D3) ( __neon_AdrDx3( 0xf400044f, __int16ToN64(pD), (D3)) )
#define vst3_s32(pD, D3) ( __neon_AdrDx3( 0xf400048f, __int32ToN64(pD), (D3)) )
#define vst3_s8(pD, D3) ( __neon_AdrDx3( 0xf400040f, __int8ToN64(pD), (D3)) )
#define vst3_u16(pD, D3) ( __neon_AdrDx3( 0xf400044f, __uint16ToN64(pD), (D3)) )
#define vst3_u32(pD, D3) ( __neon_AdrDx3( 0xf400048f, __uint32ToN64(pD), (D3)) )
#define vst3_u8(pD, D3) ( __neon_AdrDx3( 0xf400040f, __uint8ToN64(pD), (D3)) )
#define vst3_s64(pD, D3) ( __neon_AdrDx3( 0xf40006cf, __int64ToN64(pD), (D3)) )
#define vst3_u64(pD, D3) ( __neon_AdrDx3( 0xf40006cf, __uint64ToN64(pD), (D3)) )
#define vst3_s64_ex(pD, D3, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrDx3( 0xf40006cf | _NENC_4(_NEON_ALIGN64(align)), __int64ToN64(pD), (D3)) )
#define vst3_u64_ex(pD, D3, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrDx3( 0xf40006cf | _NENC_4(_NEON_ALIGN64(align)), __uint64ToN64(pD), (D3)) )
#define vst3_f32_ex(pD, D3, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrDx3( 0xf400048f | _NENC_4(_NEON_ALIGN64(align)), __float32ToN64(pD), (D3)) )
#define vst3_p16_ex(pD, D3, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrDx3( 0xf400044f | _NENC_4(_NEON_ALIGN64(align)), __poly16ToN64(pD), (D3)) )
#define vst3_p8_ex(pD, D3, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrDx3( 0xf400040f | _NENC_4(_NEON_ALIGN64(align)), __poly8ToN64(pD), (D3)) )
#define vst3_s16_ex(pD, D3, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrDx3( 0xf400044f | _NENC_4(_NEON_ALIGN64(align)), __int16ToN64(pD), (D3)) )
#define vst3_s32_ex(pD, D3, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrDx3( 0xf400048f | _NENC_4(_NEON_ALIGN64(align)), __int32ToN64(pD), (D3)) )
#define vst3_s8_ex(pD, D3, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrDx3( 0xf400040f | _NENC_4(_NEON_ALIGN64(align)), __int8ToN64(pD), (D3)) )
#define vst3_u16_ex(pD, D3, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrDx3( 0xf400044f | _NENC_4(_NEON_ALIGN64(align)), __uint16ToN64(pD), (D3)) )
#define vst3_u32_ex(pD, D3, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrDx3( 0xf400048f | _NENC_4(_NEON_ALIGN64(align)), __uint32ToN64(pD), (D3)) )
#define vst3_u8_ex(pD, D3, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrDx3( 0xf400040f | _NENC_4(_NEON_ALIGN64(align)), __uint8ToN64(pD), (D3)) )
#define vst3q_f32(pD, Q3) ( __neon_AdrQx3( 0xf400058f, __float32ToN64(pD), (Q3)) )
#define vst3q_p16(pD, Q3) ( __neon_AdrQx3( 0xf400054f, __poly16ToN64(pD), (Q3)) )
#define vst3q_p8(pD, Q3) ( __neon_AdrQx3( 0xf400050f, __poly8ToN64(pD), (Q3)) )
#define vst3q_s16(pD, Q3) ( __neon_AdrQx3( 0xf400054f, __int16ToN64(pD), (Q3)) )
#define vst3q_s32(pD, Q3) ( __neon_AdrQx3( 0xf400058f, __int32ToN64(pD), (Q3)) )
#define vst3q_s8(pD, Q3) ( __neon_AdrQx3( 0xf400050f, __int8ToN64(pD), (Q3)) )
#define vst3q_u16(pD, Q3) ( __neon_AdrQx3( 0xf400054f, __uint16ToN64(pD), (Q3)) )
#define vst3q_u32(pD, Q3) ( __neon_AdrQx3( 0xf400058f, __uint32ToN64(pD), (Q3)) )
#define vst3q_u8(pD, Q3) ( __neon_AdrQx3( 0xf400050f, __uint8ToN64(pD), (Q3)) )
#define vst3q_f32_ex(pD, Q3, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrQx3( 0xf400058f | _NENC_4(_NEON_ALIGN64(align)), __float32ToN64(pD), (Q3)) )
#define vst3q_p16_ex(pD, Q3, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrQx3( 0xf400054f | _NENC_4(_NEON_ALIGN64(align)), __poly16ToN64(pD), (Q3)) )
#define vst3q_p8_ex(pD, Q3, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrQx3( 0xf400050f | _NENC_4(_NEON_ALIGN64(align)), __poly8ToN64(pD), (Q3)) )
#define vst3q_s16_ex(pD, Q3, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrQx3( 0xf400054f | _NENC_4(_NEON_ALIGN64(align)), __int16ToN64(pD), (Q3)) )
#define vst3q_s32_ex(pD, Q3, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrQx3( 0xf400058f | _NENC_4(_NEON_ALIGN64(align)), __int32ToN64(pD), (Q3)) )
#define vst3q_s8_ex(pD, Q3, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrQx3( 0xf400050f | _NENC_4(_NEON_ALIGN64(align)), __int8ToN64(pD), (Q3)) )
#define vst3q_u16_ex(pD, Q3, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrQx3( 0xf400054f | _NENC_4(_NEON_ALIGN64(align)), __uint16ToN64(pD), (Q3)) )
#define vst3q_u32_ex(pD, Q3, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrQx3( 0xf400058f | _NENC_4(_NEON_ALIGN64(align)), __uint32ToN64(pD), (Q3)) )
#define vst3q_u8_ex(pD, Q3, align) ( __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrQx3( 0xf400050f | _NENC_4(_NEON_ALIGN64(align)), __uint8ToN64(pD), (Q3)) )
// VST3 (single 3-element structure from one lane)
#define vst3_lane_f32(pD, D3, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_AdrDx3x( 0xf4800a0f | _NENC_7(lane), __float32ToN64(pD), (D3)) )
#define vst3_lane_p16(pD, D3, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_AdrDx3x( 0xf480060f | _NENC_7_6(lane), __poly16ToN64(pD), (D3)) )
#define vst3_lane_p8(pD, D3, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_AdrDx3x( 0xf480020f | _NENC_7_5(lane), __poly8ToN64(pD), (D3)) )
#define vst3_lane_s16(pD, D3, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_AdrDx3x( 0xf480060f | _NENC_7_6(lane), __int16ToN64(pD), (D3)) )
#define vst3_lane_s32(pD, D3, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_AdrDx3x( 0xf4800a0f | _NENC_7(lane), __int32ToN64(pD), (D3)) )
#define vst3_lane_s8(pD, D3, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_AdrDx3x( 0xf480020f | _NENC_7_5(lane), __int8ToN64(pD), (D3)) )
#define vst3_lane_u16(pD, D3, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_AdrDx3x( 0xf480060f | _NENC_7_6(lane), __uint16ToN64(pD), (D3)) )
#define vst3_lane_u32(pD, D3, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_AdrDx3x( 0xf4800a0f | _NENC_7(lane), __uint32ToN64(pD), (D3)) )
#define vst3_lane_u8(pD, D3, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_AdrDx3x( 0xf480020f | _NENC_7_5(lane), __uint8ToN64(pD), (D3)) )
#define vst3q_lane_f32(pD, Q3, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_AdrQx3x( 0xf4800a4f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0), __float32ToN64(pD), (Q3)) )
#define vst3q_lane_p16(pD, Q3, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_AdrQx3x( 0xf480062f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0), __poly16ToN64(pD), (Q3)) )
#define vst3q_lane_s16(pD, Q3, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_AdrQx3x( 0xf480062f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0), __int16ToN64(pD), (Q3)) )
#define vst3q_lane_s32(pD, Q3, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_AdrQx3x( 0xf4800a4f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0), __int32ToN64(pD), (Q3)) )
#define vst3q_lane_u16(pD, Q3, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_AdrQx3x( 0xf480062f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0), __uint16ToN64(pD), (Q3)) )
#define vst3q_lane_u32(pD, Q3, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_AdrQx3x( 0xf4800a4f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0), __uint32ToN64(pD), (Q3)) )
// VST4 (multiple 4-element structures)
#define vst4_f32(pD, D4) ( __neon_AdrDx4( 0xf400008f, __float32ToN64(pD), (D4)) )
#define vst4_p16(pD, D4) ( __neon_AdrDx4( 0xf400004f, __poly16ToN64(pD), (D4)) )
#define vst4_p8(pD, D4) ( __neon_AdrDx4( 0xf400000f, __poly8ToN64(pD), (D4)) )
#define vst4_s16(pD, D4) ( __neon_AdrDx4( 0xf400004f, __int16ToN64(pD), (D4)) )
#define vst4_s32(pD, D4) ( __neon_AdrDx4( 0xf400008f, __int32ToN64(pD), (D4)) )
#define vst4_s8(pD, D4) ( __neon_AdrDx4( 0xf400000f, __int8ToN64(pD), (D4)) )
#define vst4_u16(pD, D4) ( __neon_AdrDx4( 0xf400004f, __uint16ToN64(pD), (D4)) )
#define vst4_u32(pD, D4) ( __neon_AdrDx4( 0xf400008f, __uint32ToN64(pD), (D4)) )
#define vst4_u8(pD, D4) ( __neon_AdrDx4( 0xf400000f, __uint8ToN64(pD), (D4)) )
#define vst4_s64(pD, D4) ( __neon_AdrDx4( 0xf40002cf, __int64ToN64(pD), (D4)) )
#define vst4_u64(pD, D4) ( __neon_AdrDx4( 0xf40002cf, __uint64ToN64(pD), (D4)) )
#define vst4_s64_ex(pD, D4, align) ( __static_assert(_NEON_ALIGN64_128_256(align) >= 0, "invalid align"), __neon_AdrDx4( 0xf40002cf | _NENC_5_4(_NEON_ALIGN64_128_256(align)), __int64ToN64(pD), (D4)) )
#define vst4_u64_ex(pD, D4, align) ( __static_assert(_NEON_ALIGN64_128_256(align) >= 0, "invalid align"), __neon_AdrDx4( 0xf40002cf | _NENC_5_4(_NEON_ALIGN64_128_256(align)), __uint64ToN64(pD), (D4)) )
#define vst4_f32_ex(pD, D4, align) ( __static_assert(_NEON_ALIGN64_128_256(align) >= 0, "invalid align"), __neon_AdrDx4( 0xf400008f | _NENC_5_4(_NEON_ALIGN64_128_256(align)), __float32ToN64(pD), (D4)) )
#define vst4_p16_ex(pD, D4, align) ( __static_assert(_NEON_ALIGN64_128_256(align) >= 0, "invalid align"), __neon_AdrDx4( 0xf400004f | _NENC_5_4(_NEON_ALIGN64_128_256(align)), __poly16ToN64(pD), (D4)) )
#define vst4_p8_ex(pD, D4, align) ( __static_assert(_NEON_ALIGN64_128_256(align) >= 0, "invalid align"), __neon_AdrDx4( 0xf400000f | _NENC_5_4(_NEON_ALIGN64_128_256(align)), __poly8ToN64(pD), (D4)) )
#define vst4_s16_ex(pD, D4, align) ( __static_assert(_NEON_ALIGN64_128_256(align) >= 0, "invalid align"), __neon_AdrDx4( 0xf400004f | _NENC_5_4(_NEON_ALIGN64_128_256(align)), __int16ToN64(pD), (D4)) )
#define vst4_s32_ex(pD, D4, align) ( __static_assert(_NEON_ALIGN64_128_256(align) >= 0, "invalid align"), __neon_AdrDx4( 0xf400008f | _NENC_5_4(_NEON_ALIGN64_128_256(align)), __int32ToN64(pD), (D4)) )
#define vst4_s8_ex(pD, D4, align) ( __static_assert(_NEON_ALIGN64_128_256(align) >= 0, "invalid align"), __neon_AdrDx4( 0xf400000f | _NENC_5_4(_NEON_ALIGN64_128_256(align)), __int8ToN64(pD), (D4)) )
#define vst4_u16_ex(pD, D4, align) ( __static_assert(_NEON_ALIGN64_128_256(align) >= 0, "invalid align"), __neon_AdrDx4( 0xf400004f | _NENC_5_4(_NEON_ALIGN64_128_256(align)), __uint16ToN64(pD), (D4)) )
#define vst4_u32_ex(pD, D4, align) ( __static_assert(_NEON_ALIGN64_128_256(align) >= 0, "invalid align"), __neon_AdrDx4( 0xf400008f | _NENC_5_4(_NEON_ALIGN64_128_256(align)), __uint32ToN64(pD), (D4)) )
#define vst4_u8_ex(pD, D4, align) ( __static_assert(_NEON_ALIGN64_128_256(align) >= 0, "invalid align"), __neon_AdrDx4( 0xf400000f | _NENC_5_4(_NEON_ALIGN64_128_256(align)), __uint8ToN64(pD), (D4)) )
#define vst4q_f32(pD, Q4) ( __neon_AdrQx4( 0xf400018f, __float32ToN64(pD), (Q4)) )
#define vst4q_p16(pD, Q4) ( __neon_AdrQx4( 0xf400014f, __poly16ToN64(pD), (Q4)) )
#define vst4q_p8(pD, Q4) ( __neon_AdrQx4( 0xf400010f, __poly8ToN64(pD), (Q4)) )
#define vst4q_s16(pD, Q4) ( __neon_AdrQx4( 0xf400014f, __int16ToN64(pD), (Q4)) )
#define vst4q_s32(pD, Q4) ( __neon_AdrQx4( 0xf400018f, __int32ToN64(pD), (Q4)) )
#define vst4q_s8(pD, Q4) ( __neon_AdrQx4( 0xf400010f, __int8ToN64(pD), (Q4)) )
#define vst4q_u16(pD, Q4) ( __neon_AdrQx4( 0xf400014f, __uint16ToN64(pD), (Q4)) )
#define vst4q_u32(pD, Q4) ( __neon_AdrQx4( 0xf400018f, __uint32ToN64(pD), (Q4)) )
#define vst4q_u8(pD, Q4) ( __neon_AdrQx4( 0xf400010f, __uint8ToN64(pD), (Q4)) )
#define vst4q_f32_ex(pD, Q4, align) ( __static_assert(_NEON_ALIGN64_128_256(align) >= 0, "invalid align"), __neon_AdrQx4( 0xf400018f | _NENC_5_4(_NEON_ALIGN64_128_256(align)), __float32ToN64(pD), (Q4)) )
#define vst4q_p16_ex(pD, Q4, align) ( __static_assert(_NEON_ALIGN64_128_256(align) >= 0, "invalid align"), __neon_AdrQx4( 0xf400014f | _NENC_5_4(_NEON_ALIGN64_128_256(align)), __poly16ToN64(pD), (Q4)) )
#define vst4q_p8_ex(pD, Q4, align) ( __static_assert(_NEON_ALIGN64_128_256(align) >= 0, "invalid align"), __neon_AdrQx4( 0xf400010f | _NENC_5_4(_NEON_ALIGN64_128_256(align)), __poly8ToN64(pD), (Q4)) )
#define vst4q_s16_ex(pD, Q4, align) ( __static_assert(_NEON_ALIGN64_128_256(align) >= 0, "invalid align"), __neon_AdrQx4( 0xf400014f | _NENC_5_4(_NEON_ALIGN64_128_256(align)), __int16ToN64(pD), (Q4)) )
#define vst4q_s32_ex(pD, Q4, align) ( __static_assert(_NEON_ALIGN64_128_256(align) >= 0, "invalid align"), __neon_AdrQx4( 0xf400018f | _NENC_5_4(_NEON_ALIGN64_128_256(align)), __int32ToN64(pD), (Q4)) )
#define vst4q_s8_ex(pD, Q4, align) ( __static_assert(_NEON_ALIGN64_128_256(align) >= 0, "invalid align"), __neon_AdrQx4( 0xf400010f | _NENC_5_4(_NEON_ALIGN64_128_256(align)), __int8ToN64(pD), (Q4)) )
#define vst4q_u16_ex(pD, Q4, align) ( __static_assert(_NEON_ALIGN64_128_256(align) >= 0, "invalid align"), __neon_AdrQx4( 0xf400014f | _NENC_5_4(_NEON_ALIGN64_128_256(align)), __uint16ToN64(pD), (Q4)) )
#define vst4q_u32_ex(pD, Q4, align) ( __static_assert(_NEON_ALIGN64_128_256(align) >= 0, "invalid align"), __neon_AdrQx4( 0xf400018f | _NENC_5_4(_NEON_ALIGN64_128_256(align)), __uint32ToN64(pD), (Q4)) )
#define vst4q_u8_ex(pD, Q4, align) ( __static_assert(_NEON_ALIGN64_128_256(align) >= 0, "invalid align"), __neon_AdrQx4( 0xf400010f | _NENC_5_4(_NEON_ALIGN64_128_256(align)), __uint8ToN64(pD), (Q4)) )
// VST4 (single 4-element structure from one lane)
#define vst4_lane_f32(pD, D4, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_AdrDx4x( 0xf4800b0f | _NENC_7(lane), __float32ToN64(pD), (D4)) )
#define vst4_lane_p16(pD, D4, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_AdrDx4x( 0xf480070f | _NENC_7_6(lane), __poly16ToN64(pD), (D4)) )
#define vst4_lane_p8(pD, D4, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_AdrDx4x( 0xf480030f | _NENC_7_5(lane), __poly8ToN64(pD), (D4)) )
#define vst4_lane_s16(pD, D4, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_AdrDx4x( 0xf480070f | _NENC_7_6(lane), __int16ToN64(pD), (D4)) )
#define vst4_lane_s32(pD, D4, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_AdrDx4x( 0xf4800b0f | _NENC_7(lane), __int32ToN64(pD), (D4)) )
#define vst4_lane_s8(pD, D4, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_AdrDx4x( 0xf480030f | _NENC_7_5(lane), __int8ToN64(pD), (D4)) )
#define vst4_lane_u16(pD, D4, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_AdrDx4x( 0xf480070f | _NENC_7_6(lane), __uint16ToN64(pD), (D4)) )
#define vst4_lane_u32(pD, D4, lane) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __neon_AdrDx4x( 0xf4800b0f | _NENC_7(lane), __uint32ToN64(pD), (D4)) )
#define vst4_lane_u8(pD, D4, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_AdrDx4x( 0xf480030f | _NENC_7_5(lane), __uint8ToN64(pD), (D4)) )
#define vst4q_lane_f32(pD, Q4, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_AdrQx4x( 0xf4800b4f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0), __float32ToN64(pD), (Q4)) )
#define vst4q_lane_p16(pD, Q4, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_AdrQx4x( 0xf480072f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0), __poly16ToN64(pD), (Q4)) )
#define vst4q_lane_s16(pD, Q4, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_AdrQx4x( 0xf480072f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0), __int16ToN64(pD), (Q4)) )
#define vst4q_lane_s32(pD, Q4, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_AdrQx4x( 0xf4800b4f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0), __int32ToN64(pD), (Q4)) )
#define vst4q_lane_u16(pD, Q4, lane) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __neon_AdrQx4x( 0xf480072f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0), __uint16ToN64(pD), (Q4)) )
#define vst4q_lane_u32(pD, Q4, lane) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __neon_AdrQx4x( 0xf4800b4f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0), __uint32ToN64(pD), (Q4)) )
// VST4 (single 4-element structure from one lane, aligned)
#define vst4_lane_f32_ex(pD, D4, lane, align) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_AdrDx4x( 0xf4800b0f | _NENC_7(lane) | _NENC_5_4(_NEON_ALIGN64_128(align)), __float32ToN64(pD), (D4)) )
#define vst4_lane_p16_ex(pD, D4, lane, align) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrDx4x( 0xf480070f | _NENC_7_6(lane) | _NENC_4(_NEON_ALIGN64(align)), __poly16ToN64(pD), (D4)) )
#define vst4_lane_p8_ex(pD, D4, lane, align) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_AdrDx4x( 0xf480030f | _NENC_7_5(lane) | _NENC_4(_NEON_ALIGN32(align)), __poly8ToN64(pD), (D4)) )
#define vst4_lane_s16_ex(pD, D4, lane, align) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrDx4x( 0xf480070f | _NENC_7_6(lane) | _NENC_4(_NEON_ALIGN64(align)), __int16ToN64(pD), (D4)) )
#define vst4_lane_s32_ex(pD, D4, lane, align) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_AdrDx4x( 0xf4800b0f | _NENC_7(lane) | _NENC_5_4(_NEON_ALIGN64_128(align)), __int32ToN64(pD), (D4)) )
#define vst4_lane_s8_ex(pD, D4, lane, align) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_AdrDx4x( 0xf480030f | _NENC_7_5(lane) | _NENC_4(_NEON_ALIGN32(align)), __int8ToN64(pD), (D4)) )
#define vst4_lane_u16_ex(pD, D4, lane, align) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrDx4x( 0xf480070f | _NENC_7_6(lane) | _NENC_4(_NEON_ALIGN64(align)), __uint16ToN64(pD), (D4)) )
#define vst4_lane_u32_ex(pD, D4, lane, align) ( __static_assert((lane) >= 0 && (lane) < 2, "invalid lane index"), __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_AdrDx4x( 0xf4800b0f | _NENC_7(lane) | _NENC_5_4(_NEON_ALIGN64_128(align)), __uint32ToN64(pD), (D4)) )
#define vst4_lane_u8_ex(pD, D4, lane, align) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __static_assert(_NEON_ALIGN32(align) >= 0, "invalid align"), __neon_AdrDx4x( 0xf480030f | _NENC_7_5(lane) | _NENC_4(_NEON_ALIGN32(align)), __uint8ToN64(pD), (D4)) )
#define vst4q_lane_f32_ex(pD, Q4, lane, align) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_AdrQx4x( 0xf4800b4f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0) | _NENC_5_4(_NEON_ALIGN64_128(align)), __float32ToN64(pD), (Q4)) )
#define vst4q_lane_p16_ex(pD, Q4, lane, align) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrQx4x( 0xf480072f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0) | _NENC_4(_NEON_ALIGN64(align)), __poly16ToN64(pD), (Q4)) )
#define vst4q_lane_s16_ex(pD, Q4, lane, align) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrQx4x( 0xf480072f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0) | _NENC_4(_NEON_ALIGN64(align)), __int16ToN64(pD), (Q4)) )
#define vst4q_lane_s32_ex(pD, Q4, lane, align) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_AdrQx4x( 0xf4800b4f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0) | _NENC_5_4(_NEON_ALIGN64_128(align)), __int32ToN64(pD), (Q4)) )
#define vst4q_lane_u16_ex(pD, Q4, lane, align) ( __static_assert((lane) >= 0 && (lane) < 8, "invalid lane index"), __static_assert(_NEON_ALIGN64(align) >= 0, "invalid align"), __neon_AdrQx4x( 0xf480072f | _NENC_7_6((lane) % 4) | _NENC_12((lane) >= 4 ? 1 : 0) | _NENC_4(_NEON_ALIGN64(align)), __uint16ToN64(pD), (Q4)) )
#define vst4q_lane_u32_ex(pD, Q4, lane, align) ( __static_assert((lane) >= 0 && (lane) < 4, "invalid lane index"), __static_assert(_NEON_ALIGN64_128(align) >= 0, "invalid align"), __neon_AdrQx4x( 0xf4800b4f | _NENC_7((lane) % 2) | _NENC_12((lane) >= 2 ? 1 : 0) | _NENC_5_4(_NEON_ALIGN64_128(align)), __uint32ToN64(pD), (Q4)) )
// VSUB
#define vsub_f32(Dn, Dm) ( __neon_DdDnDm( 0xf2200d00, (Dn), (Dm)) )
#define vsub_s16(Dn, Dm) ( __neon_DdDnDm( 0xf3100800, (Dn), (Dm)) )
#define vsub_s32(Dn, Dm) ( __neon_DdDnDm( 0xf3200800, (Dn), (Dm)) )
#define vsub_s64(Dn, Dm) ( __neon_DdDnDm( 0xf3300800, (Dn), (Dm)) )
#define vsub_s8(Dn, Dm) ( __neon_DdDnDm( 0xf3000800, (Dn), (Dm)) )
#define vsub_u16(Dn, Dm) ( __neon_DdDnDm( 0xf3100800, (Dn), (Dm)) )
#define vsub_u32(Dn, Dm) ( __neon_DdDnDm( 0xf3200800, (Dn), (Dm)) )
#define vsub_u64(Dn, Dm) ( __neon_DdDnDm( 0xf3300800, (Dn), (Dm)) )
#define vsub_u8(Dn, Dm) ( __neon_DdDnDm( 0xf3000800, (Dn), (Dm)) )
#define vsubq_f32(Qn, Qm) ( __neon_QdQnQm( 0xf2200d40, (Qn), (Qm)) )
#define vsubq_s16(Qn, Qm) ( __neon_QdQnQm( 0xf3100840, (Qn), (Qm)) )
#define vsubq_s32(Qn, Qm) ( __neon_QdQnQm( 0xf3200840, (Qn), (Qm)) )
#define vsubq_s64(Qn, Qm) ( __neon_QdQnQm( 0xf3300840, (Qn), (Qm)) )
#define vsubq_s8(Qn, Qm) ( __neon_QdQnQm( 0xf3000840, (Qn), (Qm)) )
#define vsubq_u16(Qn, Qm) ( __neon_QdQnQm( 0xf3100840, (Qn), (Qm)) )
#define vsubq_u32(Qn, Qm) ( __neon_QdQnQm( 0xf3200840, (Qn), (Qm)) )
#define vsubq_u64(Qn, Qm) ( __neon_QdQnQm( 0xf3300840, (Qn), (Qm)) )
#define vsubq_u8(Qn, Qm) ( __neon_QdQnQm( 0xf3000840, (Qn), (Qm)) )
// VSUBHN, VRSUBHN
#define vrsubhn_s16(Qn, Qm) ( __neon_DdQnQm( 0xf3800600, (Qn), (Qm)) )
#define vrsubhn_s32(Qn, Qm) ( __neon_DdQnQm( 0xf3900600, (Qn), (Qm)) )
#define vrsubhn_s64(Qn, Qm) ( __neon_DdQnQm( 0xf3a00600, (Qn), (Qm)) )
#define vrsubhn_u16(Qn, Qm) ( __neon_DdQnQm( 0xf3800600, (Qn), (Qm)) )
#define vrsubhn_u32(Qn, Qm) ( __neon_DdQnQm( 0xf3900600, (Qn), (Qm)) )
#define vrsubhn_u64(Qn, Qm) ( __neon_DdQnQm( 0xf3a00600, (Qn), (Qm)) )
#define vsubhn_s16(Qn, Qm) ( __neon_DdQnQm( 0xf2800600, (Qn), (Qm)) )
#define vsubhn_s32(Qn, Qm) ( __neon_DdQnQm( 0xf2900600, (Qn), (Qm)) )
#define vsubhn_s64(Qn, Qm) ( __neon_DdQnQm( 0xf2a00600, (Qn), (Qm)) )
#define vsubhn_u16(Qn, Qm) ( __neon_DdQnQm( 0xf2800600, (Qn), (Qm)) )
#define vsubhn_u32(Qn, Qm) ( __neon_DdQnQm( 0xf2900600, (Qn), (Qm)) )
#define vsubhn_u64(Qn, Qm) ( __neon_DdQnQm( 0xf2a00600, (Qn), (Qm)) )
// VSUBL, VSUBW
#define vsubl_s16(Dn, Dm) ( __neon_QdDnDm( 0xf2900200, (Dn), (Dm)) )
#define vsubl_s32(Dn, Dm) ( __neon_QdDnDm( 0xf2a00200, (Dn), (Dm)) )
#define vsubl_s8(Dn, Dm) ( __neon_QdDnDm( 0xf2800200, (Dn), (Dm)) )
#define vsubl_u16(Dn, Dm) ( __neon_QdDnDm( 0xf3900200, (Dn), (Dm)) )
#define vsubl_u32(Dn, Dm) ( __neon_QdDnDm( 0xf3a00200, (Dn), (Dm)) )
#define vsubl_u8(Dn, Dm) ( __neon_QdDnDm( 0xf3800200, (Dn), (Dm)) )
#define vsubw_s16(Qn, Dm) ( __neon_QdQnDm( 0xf2900300, (Qn), (Dm)) )
#define vsubw_s32(Qn, Dm) ( __neon_QdQnDm( 0xf2a00300, (Qn), (Dm)) )
#define vsubw_s8(Qn, Dm) ( __neon_QdQnDm( 0xf2800300, (Qn), (Dm)) )
#define vsubw_u16(Qn, Dm) ( __neon_QdQnDm( 0xf3900300, (Qn), (Dm)) )
#define vsubw_u32(Qn, Dm) ( __neon_QdQnDm( 0xf3a00300, (Qn), (Dm)) )
#define vsubw_u8(Qn, Dm) ( __neon_QdQnDm( 0xf3800300, (Qn), (Dm)) )
// VTBL, VTBX
#define vtbl2_p8(D2, Dm) ( __neon_DdDx2Dm( 0xf3b00900, (D2), (Dm)) )
#define vtbl2_s8(D2, Dm) ( __neon_DdDx2Dm( 0xf3b00900, (D2), (Dm)) )
#define vtbl2_u8(D2, Dm) ( __neon_DdDx2Dm( 0xf3b00900, (D2), (Dm)) )
#define vtbx2_p8(Dd, D2, Dm) ( __neon_DdDx2Dm_acc( 0xf3b00940, (Dd), (D2), (Dm)) )
#define vtbx2_s8(Dd, D2, Dm) ( __neon_DdDx2Dm_acc( 0xf3b00940, (Dd), (D2), (Dm)) )
#define vtbx2_u8(Dd, D2, Dm) ( __neon_DdDx2Dm_acc( 0xf3b00940, (Dd), (D2), (Dm)) )
#define vtbl3_p8(D3, Dm) ( __neon_DdDx3Dm( 0xf3b00a00, (D3), (Dm)) )
#define vtbl3_s8(D3, Dm) ( __neon_DdDx3Dm( 0xf3b00a00, (D3), (Dm)) )
#define vtbl3_u8(D3, Dm) ( __neon_DdDx3Dm( 0xf3b00a00, (D3), (Dm)) )
#define vtbx3_p8(Dd, D3, Dm) ( __neon_DdDx3Dm_acc( 0xf3b00a40, (Dd), (D3), (Dm)) )
#define vtbx3_s8(Dd, D3, Dm) ( __neon_DdDx3Dm_acc( 0xf3b00a40, (Dd), (D3), (Dm)) )
#define vtbx3_u8(Dd, D3, Dm) ( __neon_DdDx3Dm_acc( 0xf3b00a40, (Dd), (D3), (Dm)) )
#define vtbl4_p8(D4, Dm) ( __neon_DdDx4Dm( 0xf3b00b00, (D4), (Dm)) )
#define vtbl4_s8(D4, Dm) ( __neon_DdDx4Dm( 0xf3b00b00, (D4), (Dm)) )
#define vtbl4_u8(D4, Dm) ( __neon_DdDx4Dm( 0xf3b00b00, (D4), (Dm)) )
#define vtbx4_p8(Dd, D4, Dm) ( __neon_DdDx4Dm_acc( 0xf3b00b40, (Dd), (D4), (Dm)) )
#define vtbx4_s8(Dd, D4, Dm) ( __neon_DdDx4Dm_acc( 0xf3b00b40, (Dd), (D4), (Dm)) )
#define vtbx4_u8(Dd, D4, Dm) ( __neon_DdDx4Dm_acc( 0xf3b00b40, (Dd), (D4), (Dm)) )
#define vtbl1_p8(Dn, Dm) ( __neon_DdDnDm( 0xf3b00800, (Dn), (Dm)) )
#define vtbl1_s8(Dn, Dm) ( __neon_DdDnDm( 0xf3b00800, (Dn), (Dm)) )
#define vtbl1_u8(Dn, Dm) ( __neon_DdDnDm( 0xf3b00800, (Dn), (Dm)) )
#define vtbx1_p8(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3b00840, (Dd), (Dn), (Dm)) )
#define vtbx1_s8(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3b00840, (Dd), (Dn), (Dm)) )
#define vtbx1_u8(Dd, Dn, Dm) ( __neon_DdDnDm_acc( 0xf3b00840, (Dd), (Dn), (Dm)) )
// VTRN
#define vtrn_f32(Dd, Dm) ( __neon_DdDm_acc2( 0xf3ba0080, (Dd), (Dm)) )
#define vtrn_p16(Dd, Dm) ( __neon_DdDm_acc2( 0xf3b60080, (Dd), (Dm)) )
#define vtrn_p8(Dd, Dm) ( __neon_DdDm_acc2( 0xf3b20080, (Dd), (Dm)) )
#define vtrn_s16(Dd, Dm) ( __neon_DdDm_acc2( 0xf3b60080, (Dd), (Dm)) )
#define vtrn_s32(Dd, Dm) ( __neon_DdDm_acc2( 0xf3ba0080, (Dd), (Dm)) )
#define vtrn_s8(Dd, Dm) ( __neon_DdDm_acc2( 0xf3b20080, (Dd), (Dm)) )
#define vtrn_u16(Dd, Dm) ( __neon_DdDm_acc2( 0xf3b60080, (Dd), (Dm)) )
#define vtrn_u32(Dd, Dm) ( __neon_DdDm_acc2( 0xf3ba0080, (Dd), (Dm)) )
#define vtrn_u8(Dd, Dm) ( __neon_DdDm_acc2( 0xf3b20080, (Dd), (Dm)) )
#define vtrnq_f32(Qd, Qm) ( __neon_QdQm_acc2( 0xf3ba00c0, (Qd), (Qm)) )
#define vtrnq_p16(Qd, Qm) ( __neon_QdQm_acc2( 0xf3b600c0, (Qd), (Qm)) )
#define vtrnq_p8(Qd, Qm) ( __neon_QdQm_acc2( 0xf3b200c0, (Qd), (Qm)) )
#define vtrnq_s16(Qd, Qm) ( __neon_QdQm_acc2( 0xf3b600c0, (Qd), (Qm)) )
#define vtrnq_s32(Qd, Qm) ( __neon_QdQm_acc2( 0xf3ba00c0, (Qd), (Qm)) )
#define vtrnq_s8(Qd, Qm) ( __neon_QdQm_acc2( 0xf3b200c0, (Qd), (Qm)) )
#define vtrnq_u16(Qd, Qm) ( __neon_QdQm_acc2( 0xf3b600c0, (Qd), (Qm)) )
#define vtrnq_u32(Qd, Qm) ( __neon_QdQm_acc2( 0xf3ba00c0, (Qd), (Qm)) )
#define vtrnq_u8(Qd, Qm) ( __neon_QdQm_acc2( 0xf3b200c0, (Qd), (Qm)) )
// VTST
#define vtst_p8(Dn, Dm) ( __neon_DdDnDm( 0xf2000810, (Dn), (Dm)) )
#define vtst_s16(Dn, Dm) ( __neon_DdDnDm( 0xf2100810, (Dn), (Dm)) )
#define vtst_s32(Dn, Dm) ( __neon_DdDnDm( 0xf2200810, (Dn), (Dm)) )
#define vtst_s8(Dn, Dm) ( __neon_DdDnDm( 0xf2000810, (Dn), (Dm)) )
#define vtst_u16(Dn, Dm) ( __neon_DdDnDm( 0xf2100810, (Dn), (Dm)) )
#define vtst_u32(Dn, Dm) ( __neon_DdDnDm( 0xf2200810, (Dn), (Dm)) )
#define vtst_u8(Dn, Dm) ( __neon_DdDnDm( 0xf2000810, (Dn), (Dm)) )
#define vtstq_p8(Qn, Qm) ( __neon_QdQnQm( 0xf2000850, (Qn), (Qm)) )
#define vtstq_s16(Qn, Qm) ( __neon_QdQnQm( 0xf2100850, (Qn), (Qm)) )
#define vtstq_s32(Qn, Qm) ( __neon_QdQnQm( 0xf2200850, (Qn), (Qm)) )
#define vtstq_s8(Qn, Qm) ( __neon_QdQnQm( 0xf2000850, (Qn), (Qm)) )
#define vtstq_u16(Qn, Qm) ( __neon_QdQnQm( 0xf2100850, (Qn), (Qm)) )
#define vtstq_u32(Qn, Qm) ( __neon_QdQnQm( 0xf2200850, (Qn), (Qm)) )
#define vtstq_u8(Qn, Qm) ( __neon_QdQnQm( 0xf2000850, (Qn), (Qm)) )
// VUZP
#define vuzp_p16(Dd, Dm) ( __neon_DdDm_acc2( 0xf3b60100, (Dd), (Dm)) )
#define vuzp_p8(Dd, Dm) ( __neon_DdDm_acc2( 0xf3b20100, (Dd), (Dm)) )
#define vuzp_s16(Dd, Dm) ( __neon_DdDm_acc2( 0xf3b60100, (Dd), (Dm)) )
#define vuzp_s8(Dd, Dm) ( __neon_DdDm_acc2( 0xf3b20100, (Dd), (Dm)) )
#define vuzp_u16(Dd, Dm) ( __neon_DdDm_acc2( 0xf3b60100, (Dd), (Dm)) )
#define vuzp_u8(Dd, Dm) ( __neon_DdDm_acc2( 0xf3b20100, (Dd), (Dm)) )
#define vuzp_f32(Dd, Dm) ( __neon_DdDm_acc2( 0xf3ba0080, (Dd), (Dm)) )
#define vuzp_s32(Dd, Dm) ( __neon_DdDm_acc2( 0xf3ba0080, (Dd), (Dm)) )
#define vuzp_u32(Dd, Dm) ( __neon_DdDm_acc2( 0xf3ba0080, (Dd), (Dm)) )
#define vuzpq_f32(Qd, Qm) ( __neon_QdQm_acc2( 0xf3ba0140, (Qd), (Qm)) )
#define vuzpq_p16(Qd, Qm) ( __neon_QdQm_acc2( 0xf3b60140, (Qd), (Qm)) )
#define vuzpq_p8(Qd, Qm) ( __neon_QdQm_acc2( 0xf3b20140, (Qd), (Qm)) )
#define vuzpq_s16(Qd, Qm) ( __neon_QdQm_acc2( 0xf3b60140, (Qd), (Qm)) )
#define vuzpq_s32(Qd, Qm) ( __neon_QdQm_acc2( 0xf3ba0140, (Qd), (Qm)) )
#define vuzpq_s8(Qd, Qm) ( __neon_QdQm_acc2( 0xf3b20140, (Qd), (Qm)) )
#define vuzpq_u16(Qd, Qm) ( __neon_QdQm_acc2( 0xf3b60140, (Qd), (Qm)) )
#define vuzpq_u32(Qd, Qm) ( __neon_QdQm_acc2( 0xf3ba0140, (Qd), (Qm)) )
#define vuzpq_u8(Qd, Qm) ( __neon_QdQm_acc2( 0xf3b20140, (Qd), (Qm)) )
// VZIP
#define vzip_p16(Dd, Dm) ( __neon_DdDm_acc2( 0xf3b60180, (Dd), (Dm)) )
#define vzip_p8(Dd, Dm) ( __neon_DdDm_acc2( 0xf3b20180, (Dd), (Dm)) )
#define vzip_s16(Dd, Dm) ( __neon_DdDm_acc2( 0xf3b60180, (Dd), (Dm)) )
#define vzip_s8(Dd, Dm) ( __neon_DdDm_acc2( 0xf3b20180, (Dd), (Dm)) )
#define vzip_u16(Dd, Dm) ( __neon_DdDm_acc2( 0xf3b60180, (Dd), (Dm)) )
#define vzip_u8(Dd, Dm) ( __neon_DdDm_acc2( 0xf3b20180, (Dd), (Dm)) )
#define vzip_f32(Dd, Dm) ( __neon_DdDm_acc2( 0xf3ba0080, (Dd), (Dm)) )
#define vzip_s32(Dd, Dm) ( __neon_DdDm_acc2( 0xf3ba0080, (Dd), (Dm)) )
#define vzip_u32(Dd, Dm) ( __neon_DdDm_acc2( 0xf3ba0080, (Dd), (Dm)) )
#define vzipq_f32(Qd, Qm) ( __neon_QdQm_acc2( 0xf3ba01c0, (Qd), (Qm)) )
#define vzipq_p16(Qd, Qm) ( __neon_QdQm_acc2( 0xf3b601c0, (Qd), (Qm)) )
#define vzipq_p8(Qd, Qm) ( __neon_QdQm_acc2( 0xf3b201c0, (Qd), (Qm)) )
#define vzipq_s16(Qd, Qm) ( __neon_QdQm_acc2( 0xf3b601c0, (Qd), (Qm)) )
#define vzipq_s32(Qd, Qm) ( __neon_QdQm_acc2( 0xf3ba01c0, (Qd), (Qm)) )
#define vzipq_s8(Qd, Qm) ( __neon_QdQm_acc2( 0xf3b201c0, (Qd), (Qm)) )
#define vzipq_u16(Qd, Qm) ( __neon_QdQm_acc2( 0xf3b601c0, (Qd), (Qm)) )
#define vzipq_u32(Qd, Qm) ( __neon_QdQm_acc2( 0xf3ba01c0, (Qd), (Qm)) )
#define vzipq_u8(Qd, Qm) ( __neon_QdQm_acc2( 0xf3b201c0, (Qd), (Qm)) )
// } +++ auto-generated code ends (Neon macros)
///////////////////////////////////////////////////////////////////////////////
//
// { +++ auto-generated code begins (vreinterpret macros)
#define vreinterpret_f32_s8(a) (a)
#define vreinterpret_f32_s16(a) (a)
#define vreinterpret_f32_s32(a) (a)
#define vreinterpret_f32_s64(a) (a)
#define vreinterpret_f32_p8(a) (a)
#define vreinterpret_f32_p16(a) (a)
#define vreinterpret_f32_u8(a) (a)
#define vreinterpret_f32_u16(a) (a)
#define vreinterpret_f32_u32(a) (a)
#define vreinterpret_f32_u64(a) (a)
#define vreinterpret_s8_f32(a) (a)
#define vreinterpret_s8_s16(a) (a)
#define vreinterpret_s8_s32(a) (a)
#define vreinterpret_s8_s64(a) (a)
#define vreinterpret_s8_p8(a) (a)
#define vreinterpret_s8_p16(a) (a)
#define vreinterpret_s8_u8(a) (a)
#define vreinterpret_s8_u16(a) (a)
#define vreinterpret_s8_u32(a) (a)
#define vreinterpret_s8_u64(a) (a)
#define vreinterpret_s16_f32(a) (a)
#define vreinterpret_s16_s8(a) (a)
#define vreinterpret_s16_s32(a) (a)
#define vreinterpret_s16_s64(a) (a)
#define vreinterpret_s16_p8(a) (a)
#define vreinterpret_s16_p16(a) (a)
#define vreinterpret_s16_u8(a) (a)
#define vreinterpret_s16_u16(a) (a)
#define vreinterpret_s16_u32(a) (a)
#define vreinterpret_s16_u64(a) (a)
#define vreinterpret_s32_f32(a) (a)
#define vreinterpret_s32_s8(a) (a)
#define vreinterpret_s32_s16(a) (a)
#define vreinterpret_s32_s64(a) (a)
#define vreinterpret_s32_p8(a) (a)
#define vreinterpret_s32_p16(a) (a)
#define vreinterpret_s32_u8(a) (a)
#define vreinterpret_s32_u16(a) (a)
#define vreinterpret_s32_u32(a) (a)
#define vreinterpret_s32_u64(a) (a)
#define vreinterpret_s64_f32(a) (a)
#define vreinterpret_s64_s8(a) (a)
#define vreinterpret_s64_s16(a) (a)
#define vreinterpret_s64_s32(a) (a)
#define vreinterpret_s64_p8(a) (a)
#define vreinterpret_s64_p16(a) (a)
#define vreinterpret_s64_u8(a) (a)
#define vreinterpret_s64_u16(a) (a)
#define vreinterpret_s64_u32(a) (a)
#define vreinterpret_s64_u64(a) (a)
#define vreinterpret_p8_f32(a) (a)
#define vreinterpret_p8_s8(a) (a)
#define vreinterpret_p8_s16(a) (a)
#define vreinterpret_p8_s32(a) (a)
#define vreinterpret_p8_s64(a) (a)
#define vreinterpret_p8_p16(a) (a)
#define vreinterpret_p8_u8(a) (a)
#define vreinterpret_p8_u16(a) (a)
#define vreinterpret_p8_u32(a) (a)
#define vreinterpret_p8_u64(a) (a)
#define vreinterpret_p16_f32(a) (a)
#define vreinterpret_p16_s8(a) (a)
#define vreinterpret_p16_s16(a) (a)
#define vreinterpret_p16_s32(a) (a)
#define vreinterpret_p16_s64(a) (a)
#define vreinterpret_p16_p8(a) (a)
#define vreinterpret_p16_u8(a) (a)
#define vreinterpret_p16_u16(a) (a)
#define vreinterpret_p16_u32(a) (a)
#define vreinterpret_p16_u64(a) (a)
#define vreinterpret_u8_f32(a) (a)
#define vreinterpret_u8_s8(a) (a)
#define vreinterpret_u8_s16(a) (a)
#define vreinterpret_u8_s32(a) (a)
#define vreinterpret_u8_s64(a) (a)
#define vreinterpret_u8_p8(a) (a)
#define vreinterpret_u8_p16(a) (a)
#define vreinterpret_u8_u16(a) (a)
#define vreinterpret_u8_u32(a) (a)
#define vreinterpret_u8_u64(a) (a)
#define vreinterpret_u16_f32(a) (a)
#define vreinterpret_u16_s8(a) (a)
#define vreinterpret_u16_s16(a) (a)
#define vreinterpret_u16_s32(a) (a)
#define vreinterpret_u16_s64(a) (a)
#define vreinterpret_u16_p8(a) (a)
#define vreinterpret_u16_p16(a) (a)
#define vreinterpret_u16_u8(a) (a)
#define vreinterpret_u16_u32(a) (a)
#define vreinterpret_u16_u64(a) (a)
#define vreinterpret_u32_f32(a) (a)
#define vreinterpret_u32_s8(a) (a)
#define vreinterpret_u32_s16(a) (a)
#define vreinterpret_u32_s32(a) (a)
#define vreinterpret_u32_s64(a) (a)
#define vreinterpret_u32_p8(a) (a)
#define vreinterpret_u32_p16(a) (a)
#define vreinterpret_u32_u8(a) (a)
#define vreinterpret_u32_u16(a) (a)
#define vreinterpret_u32_u64(a) (a)
#define vreinterpret_u64_f32(a) (a)
#define vreinterpret_u64_s8(a) (a)
#define vreinterpret_u64_s16(a) (a)
#define vreinterpret_u64_s32(a) (a)
#define vreinterpret_u64_s64(a) (a)
#define vreinterpret_u64_p8(a) (a)
#define vreinterpret_u64_p16(a) (a)
#define vreinterpret_u64_u8(a) (a)
#define vreinterpret_u64_u16(a) (a)
#define vreinterpret_u64_u32(a) (a)
#define vreinterpretq_f32_s8(a) (a)
#define vreinterpretq_f32_s16(a) (a)
#define vreinterpretq_f32_s32(a) (a)
#define vreinterpretq_f32_s64(a) (a)
#define vreinterpretq_f32_p8(a) (a)
#define vreinterpretq_f32_p16(a) (a)
#define vreinterpretq_f32_u8(a) (a)
#define vreinterpretq_f32_u16(a) (a)
#define vreinterpretq_f32_u32(a) (a)
#define vreinterpretq_f32_u64(a) (a)
#define vreinterpretq_s8_f32(a) (a)
#define vreinterpretq_s8_s16(a) (a)
#define vreinterpretq_s8_s32(a) (a)
#define vreinterpretq_s8_s64(a) (a)
#define vreinterpretq_s8_p8(a) (a)
#define vreinterpretq_s8_p16(a) (a)
#define vreinterpretq_s8_u8(a) (a)
#define vreinterpretq_s8_u16(a) (a)
#define vreinterpretq_s8_u32(a) (a)
#define vreinterpretq_s8_u64(a) (a)
#define vreinterpretq_s16_f32(a) (a)
#define vreinterpretq_s16_s8(a) (a)
#define vreinterpretq_s16_s32(a) (a)
#define vreinterpretq_s16_s64(a) (a)
#define vreinterpretq_s16_p8(a) (a)
#define vreinterpretq_s16_p16(a) (a)
#define vreinterpretq_s16_u8(a) (a)
#define vreinterpretq_s16_u16(a) (a)
#define vreinterpretq_s16_u32(a) (a)
#define vreinterpretq_s16_u64(a) (a)
#define vreinterpretq_s32_f32(a) (a)
#define vreinterpretq_s32_s8(a) (a)
#define vreinterpretq_s32_s16(a) (a)
#define vreinterpretq_s32_s64(a) (a)
#define vreinterpretq_s32_p8(a) (a)
#define vreinterpretq_s32_p16(a) (a)
#define vreinterpretq_s32_u8(a) (a)
#define vreinterpretq_s32_u16(a) (a)
#define vreinterpretq_s32_u32(a) (a)
#define vreinterpretq_s32_u64(a) (a)
#define vreinterpretq_s64_f32(a) (a)
#define vreinterpretq_s64_s8(a) (a)
#define vreinterpretq_s64_s16(a) (a)
#define vreinterpretq_s64_s32(a) (a)
#define vreinterpretq_s64_p8(a) (a)
#define vreinterpretq_s64_p16(a) (a)
#define vreinterpretq_s64_u8(a) (a)
#define vreinterpretq_s64_u16(a) (a)
#define vreinterpretq_s64_u32(a) (a)
#define vreinterpretq_s64_u64(a) (a)
#define vreinterpretq_p8_f32(a) (a)
#define vreinterpretq_p8_s8(a) (a)
#define vreinterpretq_p8_s16(a) (a)
#define vreinterpretq_p8_s32(a) (a)
#define vreinterpretq_p8_s64(a) (a)
#define vreinterpretq_p8_p16(a) (a)
#define vreinterpretq_p8_u8(a) (a)
#define vreinterpretq_p8_u16(a) (a)
#define vreinterpretq_p8_u32(a) (a)
#define vreinterpretq_p8_u64(a) (a)
#define vreinterpretq_p16_f32(a) (a)
#define vreinterpretq_p16_s8(a) (a)
#define vreinterpretq_p16_s16(a) (a)
#define vreinterpretq_p16_s32(a) (a)
#define vreinterpretq_p16_s64(a) (a)
#define vreinterpretq_p16_p8(a) (a)
#define vreinterpretq_p16_u8(a) (a)
#define vreinterpretq_p16_u16(a) (a)
#define vreinterpretq_p16_u32(a) (a)
#define vreinterpretq_p16_u64(a) (a)
#define vreinterpretq_u8_f32(a) (a)
#define vreinterpretq_u8_s8(a) (a)
#define vreinterpretq_u8_s16(a) (a)
#define vreinterpretq_u8_s32(a) (a)
#define vreinterpretq_u8_s64(a) (a)
#define vreinterpretq_u8_p8(a) (a)
#define vreinterpretq_u8_p16(a) (a)
#define vreinterpretq_u8_u16(a) (a)
#define vreinterpretq_u8_u32(a) (a)
#define vreinterpretq_u8_u64(a) (a)
#define vreinterpretq_u16_f32(a) (a)
#define vreinterpretq_u16_s8(a) (a)
#define vreinterpretq_u16_s16(a) (a)
#define vreinterpretq_u16_s32(a) (a)
#define vreinterpretq_u16_s64(a) (a)
#define vreinterpretq_u16_p8(a) (a)
#define vreinterpretq_u16_p16(a) (a)
#define vreinterpretq_u16_u8(a) (a)
#define vreinterpretq_u16_u32(a) (a)
#define vreinterpretq_u16_u64(a) (a)
#define vreinterpretq_u32_f32(a) (a)
#define vreinterpretq_u32_s8(a) (a)
#define vreinterpretq_u32_s16(a) (a)
#define vreinterpretq_u32_s32(a) (a)
#define vreinterpretq_u32_s64(a) (a)
#define vreinterpretq_u32_p8(a) (a)
#define vreinterpretq_u32_p16(a) (a)
#define vreinterpretq_u32_u8(a) (a)
#define vreinterpretq_u32_u16(a) (a)
#define vreinterpretq_u32_u64(a) (a)
#define vreinterpretq_u64_f32(a) (a)
#define vreinterpretq_u64_s8(a) (a)
#define vreinterpretq_u64_s16(a) (a)
#define vreinterpretq_u64_s32(a) (a)
#define vreinterpretq_u64_s64(a) (a)
#define vreinterpretq_u64_p8(a) (a)
#define vreinterpretq_u64_p16(a) (a)
#define vreinterpretq_u64_u8(a) (a)
#define vreinterpretq_u64_u16(a) (a)
#define vreinterpretq_u64_u32(a) (a)
// } +++ auto-generated code ends (vreinterpret macros)
// { +++ auto-generated code begins (Pseudo intrinsics)
// Multiply by scalar
#define vmul_n_f32(Vd, Rt) vmul_lane_f32((Vd), vmov_n_f32(Rt), 0)
#define vmul_n_s16(Vd, Rt) vmul_lane_s16((Vd), vmov_n_s16(Rt), 0)
#define vmul_n_s32(Vd, Rt) vmul_lane_s32((Vd), vmov_n_s32(Rt), 0)
#define vmul_n_u16(Vd, Rt) vmul_lane_u16((Vd), vmov_n_u16(Rt), 0)
#define vmul_n_u32(Vd, Rt) vmul_lane_u32((Vd), vmov_n_u32(Rt), 0)
#define vmulq_n_f32(Vd, Rt) vmulq_lane_f32((Vd), vmov_n_f32(Rt), 0)
#define vmulq_n_s16(Vd, Rt) vmulq_lane_s16((Vd), vmov_n_s16(Rt), 0)
#define vmulq_n_s32(Vd, Rt) vmulq_lane_s32((Vd), vmov_n_s32(Rt), 0)
#define vmulq_n_u16(Vd, Rt) vmulq_lane_u16((Vd), vmov_n_u16(Rt), 0)
#define vmulq_n_u32(Vd, Rt) vmulq_lane_u32((Vd), vmov_n_u32(Rt), 0)
#define vmull_n_s16(Vd, Rt) vmull_lane_s16((Vd), vmov_n_s16(Rt), 0)
#define vmull_n_s32(Vd, Rt) vmull_lane_s32((Vd), vmov_n_s32(Rt), 0)
#define vmull_n_u16(Vd, Rt) vmull_lane_u16((Vd), vmov_n_u16(Rt), 0)
#define vmull_n_u32(Vd, Rt) vmull_lane_u32((Vd), vmov_n_u32(Rt), 0)
#define vqdmulh_n_s16(Vd, Rt) vqdmulh_lane_s16((Vd), vmov_n_s16(Rt), 0)
#define vqdmulh_n_s32(Vd, Rt) vqdmulh_lane_s32((Vd), vmov_n_s32(Rt), 0)
#define vqdmulhq_n_s16(Vd, Rt) vqdmulhq_lane_s16((Vd), vmov_n_s16(Rt), 0)
#define vqdmulhq_n_s32(Vd, Rt) vqdmulhq_lane_s32((Vd), vmov_n_s32(Rt), 0)
#define vqdmull_n_s16(Vd, Rt) vqdmull_lane_s16((Vd), vmov_n_s16(Rt), 0)
#define vqdmull_n_s32(Vd, Rt) vqdmull_lane_s32((Vd), vmov_n_s32(Rt), 0)
#define vqrdmulh_n_s16(Vd, Rt) vqrdmulh_lane_s16((Vd), vmov_n_s16(Rt), 0)
#define vqrdmulh_n_s32(Vd, Rt) vqrdmulh_lane_s32((Vd), vmov_n_s32(Rt), 0)
#define vqrdmulhq_n_s16(Vd, Rt) vqrdmulhq_lane_s16((Vd), vmov_n_s16(Rt), 0)
#define vqrdmulhq_n_s32(Vd, Rt) vqrdmulhq_lane_s32((Vd), vmov_n_s32(Rt), 0)
// Multiply by scalar with accumulate
#define vmla_n_f32(Vd, Vn, Rt) vmla_lane_f32((Vd), (Vn), vmov_n_f32(Rt), 0)
#define vmla_n_s16(Vd, Vn, Rt) vmla_lane_s16((Vd), (Vn), vmov_n_s16(Rt), 0)
#define vmla_n_s32(Vd, Vn, Rt) vmla_lane_s32((Vd), (Vn), vmov_n_s32(Rt), 0)
#define vmla_n_u16(Vd, Vn, Rt) vmla_lane_u16((Vd), (Vn), vmov_n_u16(Rt), 0)
#define vmla_n_u32(Vd, Vn, Rt) vmla_lane_u32((Vd), (Vn), vmov_n_u32(Rt), 0)
#define vmlaq_n_f32(Vd, Vn, Rt) vmlaq_lane_f32((Vd), (Vn), vmov_n_f32(Rt), 0)
#define vmlaq_n_s16(Vd, Vn, Rt) vmlaq_lane_s16((Vd), (Vn), vmov_n_s16(Rt), 0)
#define vmlaq_n_s32(Vd, Vn, Rt) vmlaq_lane_s32((Vd), (Vn), vmov_n_s32(Rt), 0)
#define vmlaq_n_u16(Vd, Vn, Rt) vmlaq_lane_u16((Vd), (Vn), vmov_n_u16(Rt), 0)
#define vmlaq_n_u32(Vd, Vn, Rt) vmlaq_lane_u32((Vd), (Vn), vmov_n_u32(Rt), 0)
#define vmlal_n_s16(Vd, Vn, Rt) vmlal_lane_s16((Vd), (Vn), vmov_n_s16(Rt), 0)
#define vmlal_n_s32(Vd, Vn, Rt) vmlal_lane_s32((Vd), (Vn), vmov_n_s32(Rt), 0)
#define vmlal_n_u16(Vd, Vn, Rt) vmlal_lane_u16((Vd), (Vn), vmov_n_u16(Rt), 0)
#define vmlal_n_u32(Vd, Vn, Rt) vmlal_lane_u32((Vd), (Vn), vmov_n_u32(Rt), 0)
#define vmls_n_f32(Vd, Vn, Rt) vmls_lane_f32((Vd), (Vn), vmov_n_f32(Rt), 0)
#define vmls_n_s16(Vd, Vn, Rt) vmls_lane_s16((Vd), (Vn), vmov_n_s16(Rt), 0)
#define vmls_n_s32(Vd, Vn, Rt) vmls_lane_s32((Vd), (Vn), vmov_n_s32(Rt), 0)
#define vmls_n_u16(Vd, Vn, Rt) vmls_lane_u16((Vd), (Vn), vmov_n_u16(Rt), 0)
#define vmls_n_u32(Vd, Vn, Rt) vmls_lane_u32((Vd), (Vn), vmov_n_u32(Rt), 0)
#define vmlsq_n_f32(Vd, Vn, Rt) vmlsq_lane_f32((Vd), (Vn), vmov_n_f32(Rt), 0)
#define vmlsq_n_s16(Vd, Vn, Rt) vmlsq_lane_s16((Vd), (Vn), vmov_n_s16(Rt), 0)
#define vmlsq_n_s32(Vd, Vn, Rt) vmlsq_lane_s32((Vd), (Vn), vmov_n_s32(Rt), 0)
#define vmlsq_n_u16(Vd, Vn, Rt) vmlsq_lane_u16((Vd), (Vn), vmov_n_u16(Rt), 0)
#define vmlsq_n_u32(Vd, Vn, Rt) vmlsq_lane_u32((Vd), (Vn), vmov_n_u32(Rt), 0)
#define vmlsl_n_s16(Vd, Vn, Rt) vmlsl_lane_s16((Vd), (Vn), vmov_n_s16(Rt), 0)
#define vmlsl_n_s32(Vd, Vn, Rt) vmlsl_lane_s32((Vd), (Vn), vmov_n_s32(Rt), 0)
#define vmlsl_n_u16(Vd, Vn, Rt) vmlsl_lane_u16((Vd), (Vn), vmov_n_u16(Rt), 0)
#define vmlsl_n_u32(Vd, Vn, Rt) vmlsl_lane_u32((Vd), (Vn), vmov_n_u32(Rt), 0)
#define vqdmlal_n_s16(Vd, Vn, Rt) vqdmlal_lane_s16((Vd), (Vn), vmov_n_s16(Rt), 0)
#define vqdmlal_n_s32(Vd, Vn, Rt) vqdmlal_lane_s32((Vd), (Vn), vmov_n_s32(Rt), 0)
#define vqdmlsl_n_s16(Vd, Vn, Rt) vqdmlsl_lane_s16((Vd), (Vn), vmov_n_s16(Rt), 0)
#define vqdmlsl_n_s32(Vd, Vn, Rt) vqdmlsl_lane_s32((Vd), (Vn), vmov_n_s32(Rt), 0)
// VDUP.64 (scalar)
#define vdup_lane_s64(Dn, lane) ( __static_assert(lane == 0, "invalid lane index"), (Dn) )
#define vdup_lane_u64(Dn, lane) ( __static_assert(lane == 0, "invalid lane index"), (Dn) )
// VDUP.W.64 (scalar)
#define vdupq_lane_s64(Dn, lane) ( __static_assert(lane == 0, "invalid lane index"), vcombine_s64((Dn), (Dn)) )
#define vdupq_lane_u64(Dn, lane) ( __static_assert(lane == 0, "invalid lane index"), vcombine_u64((Dn), (Dn)) )
// } +++ auto-generated code ends (Pseudo intrinsics)
/* 88bf0570-3001-4e78-a5f2-be5765546192 */
| 105.447442 | 338 | 0.614274 |
70174e4479038f22d5224d880c20cff7c245a064 | 817 | go | Go | evaluator/evaluator_map.go | wzshiming/gs | c097d7f734fbdd4b27de9b9178b1d2f6321f796e | [
"MIT"
] | 5 | 2018-04-20T16:05:21.000Z | 2021-01-16T15:40:42.000Z | evaluator/evaluator_map.go | wzshiming/gs | c097d7f734fbdd4b27de9b9178b1d2f6321f796e | [
"MIT"
] | null | null | null | evaluator/evaluator_map.go | wzshiming/gs | c097d7f734fbdd4b27de9b9178b1d2f6321f796e | [
"MIT"
] | null | null | null | package evaluator
import (
"fmt"
"github.com/wzshiming/gs/ast"
"github.com/wzshiming/gs/token"
"github.com/wzshiming/gs/value"
)
func (ev *Evaluator) evalMap(m *ast.Map, s value.Assigner) value.Value {
switch t := m.Body.(type) {
case *ast.Brace:
mr := value.Map{}
list := t.List
if len(list) != 1 {
return mr
}
vt, ok := list[0].(*ast.Tuple)
if ok {
list = vt.List
}
for _, v := range list {
switch t1 := v.(type) {
case *ast.Binary:
if t1.Op != token.COLON {
ev.errorsPos(t1.Pos, fmt.Errorf("Not a key value pair"))
break
}
x := ev.eval(t1.X, s)
y := ev.eval(t1.Y, s)
x = x.Point()
y = y.Point()
mr[x] = y
default:
ev.errorsPos(v.GetPos(), fmt.Errorf("Not a colon statement"))
}
}
return mr
default:
}
return value.Nil
}
| 17.76087 | 72 | 0.575275 |
3e727e35fdc429e6a7c905d1f46288b990a809bb | 1,038 | swift | Swift | Sources/ValueProvider/Miscellanious.swift | KizzyCode/persistentstate-swift | 22566951b25fe6dd5e0a2d109bda1492b9f6d032 | [
"BSD-2-Clause",
"MIT"
] | null | null | null | Sources/ValueProvider/Miscellanious.swift | KizzyCode/persistentstate-swift | 22566951b25fe6dd5e0a2d109bda1492b9f6d032 | [
"BSD-2-Clause",
"MIT"
] | null | null | null | Sources/ValueProvider/Miscellanious.swift | KizzyCode/persistentstate-swift | 22566951b25fe6dd5e0a2d109bda1492b9f6d032 | [
"BSD-2-Clause",
"MIT"
] | null | null | null | import Foundation
/// A type that implements a default constructor
public protocol Default {
/// Creates a new default instance of `Self`
init()
}
/// A mapped value/dictionary ID
public protocol ID {
/// The ID bytes
var bytes: Data { get }
}
extension Data: ID {
public var bytes: Data { self }
}
extension String: ID {
public var bytes: Data { self.data(using: .utf8)! }
}
/// A type that defines methods for encoding
public protocol ValueEncoder {
/// Encodes an instance of the indicated type
///
/// - Parameter value: The instance to encode
func encode<T: Encodable>(_ value: T) throws -> Data
}
extension JSONEncoder: ValueEncoder {}
/// A type that defines methods for decoding
public protocol ValueDecoder {
/// Decodes an instance of the indicated type
///
/// - Parameters:
/// - type: The target type
/// - data: The data to decode
func decode<T: Decodable>(_ type: T.Type, from data: Data) throws -> T
}
extension JSONDecoder: ValueDecoder {}
| 23.590909 | 74 | 0.65896 |
b1a3423459d6cf222e93dd6f1620f8e3eb0da937 | 1,359 | h | C | Applications/TVSystemMenuService/TVSMModuleDataSource.h | lechium/tvOS130Headers | 6b47cdcd4a6f453b399aa9d742b5d0f7e3f732fd | [
"MIT"
] | 11 | 2019-11-06T04:48:48.000Z | 2022-02-09T17:48:15.000Z | Applications/TVSystemMenuService/TVSMModuleDataSource.h | lechium/tvOS130Headers | 6b47cdcd4a6f453b399aa9d742b5d0f7e3f732fd | [
"MIT"
] | 1 | 2020-04-16T01:41:56.000Z | 2020-04-16T04:32:00.000Z | Applications/TVSystemMenuService/TVSMModuleDataSource.h | lechium/tvOS130Headers | 6b47cdcd4a6f453b399aa9d742b5d0f7e3f732fd | [
"MIT"
] | 3 | 2019-12-22T20:17:53.000Z | 2021-01-25T09:47:49.000Z | /*
* This header is generated by classdump-dyld 1.0
* on Tuesday, November 5, 2019 at 1:58:35 PM Mountain Standard Time
* Operating System: Version 13.0 (Build 17J586)
* Image Source: /Applications/TVSystemMenuService.app/TVSystemMenuService
* classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Elias Limneos.
*/
@class NSArray, NSMutableDictionary;
@interface TVSMModuleDataSource : NSObject {
long long _type;
NSArray* _availableModules;
NSMutableDictionary* _modulesByInfo;
}
@property (nonatomic,copy) NSMutableDictionary * modulesByInfo; //@synthesize modulesByInfo=_modulesByInfo - In the implementation block
@property (nonatomic,copy) NSArray * availableModules; //@synthesize availableModules=_availableModules - In the implementation block
@property (nonatomic,readonly) long long type; //@synthesize type=_type - In the implementation block
-(id)init;
-(long long)type;
-(id)initWithModuleType:(long long)arg1 ;
-(NSArray *)availableModules;
-(id)sortedModuleInfos:(id)arg1 ;
-(void)_updateAvailableModules;
-(BOOL)shouldEnableModuleWithInfo:(id)arg1 ;
-(id)_moduleWithInfo:(id)arg1 ;
-(void)setAvailableModules:(NSArray *)arg1 ;
-(void)updateAvailableModules;
-(NSMutableDictionary *)modulesByInfo;
-(void)setModulesByInfo:(NSMutableDictionary *)arg1 ;
@end
| 36.72973 | 155 | 0.74908 |
84c5ee02cb1cd393b85356f2a49149b3e3d7c9cc | 2,037 | h | C | Project8/NodeList.h | nicky189/cs202 | ecfb9b92e094bfa29102e586ffd615d719b45532 | [
"MIT"
] | null | null | null | Project8/NodeList.h | nicky189/cs202 | ecfb9b92e094bfa29102e586ffd615d719b45532 | [
"MIT"
] | null | null | null | Project8/NodeList.h | nicky189/cs202 | ecfb9b92e094bfa29102e586ffd615d719b45532 | [
"MIT"
] | null | null | null | #ifndef NODELIST_H_
#define NODELIST_H_
#include "DataType.h"
class Node{
friend class NodeList; //allows direct accessing of link and data from class NodeList
public:
Node() :
m_next( NULL )
{
}
Node(const DataType & data, Node * next = NULL) :
m_next( next ),
m_data( data )
{
}
Node(const Node & other) :
m_next( other.m_next ),
m_data( other.m_data )
{
}
DataType & data(){ //gets non-const reference, can be used to modify value of underlying data
//return const_cast<DataType &>(static_cast<const Node &>(*this).getData()); //an alternative implementation, just for studying reference
return m_data;
}
const DataType & data() const{ //gets const reference, can be used to access value of underlying data
return m_data;
}
private:
Node * m_next;
DataType m_data;
};
class NodeList{
friend std::ostream & operator<<(std::ostream & os, //(i)
const NodeList & nodeList);
public:
NodeList(); //(1)
NodeList(size_t count, const DataType & value); //(2)
NodeList(const NodeList & other); //(3)
~NodeList(); //(4)
NodeList & operator= (const NodeList & rhs); //(5)
Node * front(); //(6)
Node * back(); //(7)
Node * find(const DataType & target, //(8)
Node * & previous,
const Node * start = NULL);
Node * insertAfter(const DataType & target, //(9)
const DataType & value);
Node * insertBefore(const DataType & target, //(10)
const DataType & value);
Node * erase(const DataType & target); //(11)
DataType & operator[] (size_t position); //(12a)
const DataType & operator[] (size_t position) const; //(12b)
size_t size() const; //(13)
bool empty() const; //(14)
void clear(); //(15)
private:
Node * m_head;
};
#endif //NODELIST_H_
| 26.802632 | 144 | 0.552283 |
85f97ecaedcdf6e8bbfdbdab2e987dc30f8fd4a5 | 339 | h | C | support_classes.h | dzmat/sh5_viewer | 994a30b9aec149fe76dad592db5fef112e1c6df1 | [
"BSD-3-Clause"
] | null | null | null | support_classes.h | dzmat/sh5_viewer | 994a30b9aec149fe76dad592db5fef112e1c6df1 | [
"BSD-3-Clause"
] | null | null | null | support_classes.h | dzmat/sh5_viewer | 994a30b9aec149fe76dad592db5fef112e1c6df1 | [
"BSD-3-Clause"
] | null | null | null | #ifndef SUPPORT_CLASSES_H
#define SUPPORT_CLASSES_H
#include <string>
#include <vector>
#include "coords.h"
class TStringList : public std::vector<std::string>
{
public:
const std::string value(const std::string inkey) const;
void setValue(const std::string &inkey, const std::string &val);
};
#endif // SUPPORT_CLASSES_H
| 15.409091 | 68 | 0.722714 |
cb75302f6e7c6c26c7a8c985e5d0dd3441f4d8a7 | 719 | html | HTML | foody/templates/users/addadmin.html | matthiasrossini/foody | 01549bdf18c87e08e959bc878c10e20ecdd08966 | [
"WTFPL"
] | 3 | 2020-11-19T09:00:12.000Z | 2020-12-07T14:29:49.000Z | foody/templates/users/addadmin.html | matthiasrossini/culinario.tech | 01549bdf18c87e08e959bc878c10e20ecdd08966 | [
"WTFPL"
] | null | null | null | foody/templates/users/addadmin.html | matthiasrossini/culinario.tech | 01549bdf18c87e08e959bc878c10e20ecdd08966 | [
"WTFPL"
] | 3 | 2020-11-19T08:56:53.000Z | 2020-12-03T08:28:05.000Z | <!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>New admin</title>
</head>
<body>
<h1>Hello!</h1>
<br>
<h2>Please add a new admin.</h2>
<h3>Watch out! Admins have <em>level 2 access</em>, meaning they can access
the menu, change it, add new meals, and add new waiters.</h3>
<form class="" method="post">
{{ form.hidden_tag() }}
{{ form.full_name.label }} {{form.full_name() }}
<br>
{{ form.email.label }} {{ form.email() }}
<br>
{{ form.username.label }} {{ form.username() }}
<br>
{{ form.password.label }} {{ form.password() }}
<br><br>
{{ form.submit() }}
</form>
</body>
</html> | 26.62963 | 79 | 0.531293 |
160e8e2272cbe37ccb7dc0295072f5e116574696 | 224 | ts | TypeScript | recoil/focus/index.ts | nick-danylchenko/Gravity-Patient-App-RI | ba95de150052eb2432a1ed03488ca099c450fec6 | [
"MIT"
] | 1 | 2021-12-01T15:36:11.000Z | 2021-12-01T15:36:11.000Z | recoil/focus/index.ts | nick-danylchenko/Gravity-Patient-App-RI | ba95de150052eb2432a1ed03488ca099c450fec6 | [
"MIT"
] | null | null | null | recoil/focus/index.ts | nick-danylchenko/Gravity-Patient-App-RI | ba95de150052eb2432a1ed03488ca099c450fec6 | [
"MIT"
] | 3 | 2021-08-20T15:15:38.000Z | 2021-09-06T15:11:31.000Z | import atom from "./atom";
import focusQuestionnaireState from "./questionnaire";
import focusServiceRequestState from "./serviceRequest";
export { focusQuestionnaireState, focusServiceRequestState };
export default atom;
| 28 | 61 | 0.8125 |
b91f8018ee003af27201ad92cc32e13a9db78ba1 | 2,224 | kt | Kotlin | app/src/main/java/com/alfanse/feedmycity/ui/donor/DonorDetailsViewModel.kt | sachinrana135/FeedMyCity | e31ca6b0011e117d513eeb1139665768c6ba95e4 | [
"Apache-2.0"
] | 1 | 2020-03-31T14:36:24.000Z | 2020-03-31T14:36:24.000Z | app/src/main/java/com/alfanse/feedmycity/ui/donor/DonorDetailsViewModel.kt | sachinrana135/FeedMyCity | e31ca6b0011e117d513eeb1139665768c6ba95e4 | [
"Apache-2.0"
] | null | null | null | app/src/main/java/com/alfanse/feedmycity/ui/donor/DonorDetailsViewModel.kt | sachinrana135/FeedMyCity | e31ca6b0011e117d513eeb1139665768c6ba95e4 | [
"Apache-2.0"
] | null | null | null | package com.alfanse.feedmycity.ui.donor
import androidx.lifecycle.MutableLiveData
import androidx.lifecycle.ViewModel
import androidx.lifecycle.viewModelScope
import com.alfanse.feedmycity.data.Resource
import com.alfanse.feedmycity.data.models.SaveDonorRequest
import com.alfanse.feedmycity.data.repository.FeedAppRepository
import com.alfanse.feedmycity.data.storage.ApplicationStorage
import com.alfanse.feedmycity.utils.APP_USER_ID_PREFS_KEY
import com.alfanse.feedmycity.utils.FIREBASE_USER_ID_PREFS_KEY
import com.alfanse.feedmycity.utils.Utils
import kotlinx.coroutines.CoroutineExceptionHandler
import kotlinx.coroutines.launch
import javax.inject.Inject
import javax.inject.Named
class DonorDetailsViewModel
@Inject constructor(
private val repository: FeedAppRepository,
private val storage: ApplicationStorage,
@Named("memory") private val memoryStorage: ApplicationStorage,
private val utils: Utils
) : ViewModel() {
val saveDonorLiveData = MutableLiveData<Resource<String>>()
private val handler = CoroutineExceptionHandler { _, throwable ->
saveDonorLiveData.value = Resource.error(throwable.message, null)
}
fun saveDonorDetails(
name: String,
donateItems: String,
status: String,
lat: String,
lng: String,
mobile: String,
address: String
) {
saveDonorLiveData.value = Resource.loading(null)
viewModelScope.launch(handler) {
var firebaseId = memoryStorage.getString(FIREBASE_USER_ID_PREFS_KEY, "")!!
val saveDonorRequest =
SaveDonorRequest(donateItems, firebaseId, lat, lng, mobile, name, status, address)
repository.saveDonor(saveDonorRequest)?.let { response ->
response.userId?.let { userId ->
memoryStorage.clearValue(FIREBASE_USER_ID_PREFS_KEY)
storage.putString(APP_USER_ID_PREFS_KEY, response.userId)
repository.getUserById(userId)?.let { user ->
utils.setLoggedUser(user)
saveDonorLiveData.value = Resource.success(response.userId)
}
}
}
}
}
} | 37.694915 | 98 | 0.698291 |
70ed2097452191187b6bcbd24fb1719e6a39e581 | 1,147 | h | C | artifact/storm/src/storm/transformer/ChoiceSelector.h | glatteis/tacas21-artifact | 30b4f522bd3bdb4bebccbfae93f19851084a3db5 | [
"MIT"
] | null | null | null | artifact/storm/src/storm/transformer/ChoiceSelector.h | glatteis/tacas21-artifact | 30b4f522bd3bdb4bebccbfae93f19851084a3db5 | [
"MIT"
] | null | null | null | artifact/storm/src/storm/transformer/ChoiceSelector.h | glatteis/tacas21-artifact | 30b4f522bd3bdb4bebccbfae93f19851084a3db5 | [
"MIT"
] | 1 | 2022-02-05T12:39:53.000Z | 2022-02-05T12:39:53.000Z | #pragma once
#include "storm/models/sparse/StandardRewardModel.h"
#include "storm/models/sparse/NondeterministicModel.h"
namespace storm {
namespace transformer {
template<typename ValueType, typename RewardModelType = storm::models::sparse::StandardRewardModel<ValueType>>
class ChoiceSelector {
public:
ChoiceSelector(storm::models::sparse::NondeterministicModel<ValueType, RewardModelType> const& inputModel) : inputModel(inputModel) {
}
/*!
* Constructs an MDP by copying the current MDP and restricting the choices of each state to the ones given by the bitvector.
*
* @param enabledActions A BitVector of lenght numberOfChoices(), which is one iff the action should be kept.
* @return A subMDP.
*/
std::shared_ptr<storm::models::sparse::NondeterministicModel<ValueType, RewardModelType>> transform(storm::storage::BitVector const& enabledActions) const;
private:
storm::models::sparse::NondeterministicModel<ValueType, RewardModelType> const& inputModel;
};
}
} | 38.233333 | 167 | 0.675676 |
c6926ae2fbb4a785df89b3ebb5d5a07c19eb74a6 | 1,613 | swift | Swift | Tools/Tools/Extension/String-Extension.swift | XiaHaozheJose/Tools | df491aed5eacbe2011f5e6ad1ba7fd4de5db338b | [
"MIT"
] | 2 | 2018-11-20T19:29:58.000Z | 2018-12-30T10:13:41.000Z | Tools/Tools/Extension/String-Extension.swift | XiaHaozheJose/Tools | df491aed5eacbe2011f5e6ad1ba7fd4de5db338b | [
"MIT"
] | null | null | null | Tools/Tools/Extension/String-Extension.swift | XiaHaozheJose/Tools | df491aed5eacbe2011f5e6ad1ba7fd4de5db338b | [
"MIT"
] | null | null | null | //
// String-Extension.swift
// Tools
//
// Created by 浩哲 夏 on 2017/3/19.
// Copyright © 2017年 浩哲 夏. All rights reserved.
//
import Foundation
// MARK: - EnCryption
extension String{
/// Get Md5 With String
/// #import <CommonCrypto/CommonCrypto.h> to the ObjC-Swift bridging header that Xcode creates.
/// - Returns: hash
func getMd5() -> String{
let str = self.cString(using: String.Encoding.utf8)
let strLen = CUnsignedInt(self.lengthOfBytes(using: String.Encoding.utf8))
let digestLen = Int(CC_MD5_DIGEST_LENGTH)
let result = UnsafeMutablePointer<CUnsignedChar>.allocate(capacity: digestLen)
CC_MD5(str,strLen,result)
var hash:String = ""
for i in 0..<digestLen{
hash = hash.appendingFormat("%02x", result[i])
}
result.deinitialize(count: digestLen)
return hash
}
/// Get SHA1 With String
/// #import <CommonCrypto/CommonCrypto.h> to the ObjC-Swift bridging header that Xcode creates.
/// - Returns: hash
func getSha1String() -> String{
let str = self.cString(using: String.Encoding.utf8)
let strLen = CUnsignedInt(self.lengthOfBytes(using: String.Encoding.utf8))
let digestLen = Int(CC_SHA1_DIGEST_LENGTH)
let result = UnsafeMutablePointer<CUnsignedChar>.allocate(capacity: digestLen)
CC_SHA1(str,strLen,result)
var hash:String = ""
for i in 0..<digestLen{
hash = hash.appendingFormat("%02x", result[i])
}
result.deinitialize(count: digestLen)
return hash
}
}
| 31.019231 | 99 | 0.636702 |
0ba3b3ef4f2af11f98bf5ede8f44c5dd8b51b223 | 1,342 | js | JavaScript | src/.vuepress/theme/content/global.js | codenotary/docs | e96bee61faf41afa0e5eff20bf66768c1ac62f75 | [
"Apache-2.0"
] | null | null | null | src/.vuepress/theme/content/global.js | codenotary/docs | e96bee61faf41afa0e5eff20bf66768c1ac62f75 | [
"Apache-2.0"
] | null | null | null | src/.vuepress/theme/content/global.js | codenotary/docs | e96bee61faf41afa0e5eff20bf66768c1ac62f75 | [
"Apache-2.0"
] | 1 | 2020-05-19T04:37:56.000Z | 2020-05-19T04:37:56.000Z | const cnHost = 'https://codenotary.com'
const cnProductURL = `${cnHost}/products`
const GlobalContent = {
footer: {
tables: [
{
title: 'PRODUCTS',
links: [
{
label: 'CNIL (Self-Hosted)', href: `${cnProductURL}/immutable-ledger`,
},
{
label: 'CNIL (Cloud)', href: `${cnProductURL}/ci-cd`,
},
{
label: 'CNIL Metrics & Logs', href: `${cnProductURL}/immutable-ledger-metrics-and-logs`,
},
],
},
{
title: 'RESOURCES',
links: [
{
label: 'Videos', href: 'https://www.youtube.com/channel/UCYDMxKTM74Acj8LerGrjUuw/videos',
},
{
label: 'Blogs', href: `${cnHost}/blog`,
},
{
label: 'immudb', href: `${cnHost}/technologies/immudb`,
},
],
},
{
title: 'COMPANY',
links: [
{
label: 'About Us', href: `${cnHost}/about`,
},
{
label: 'Join Us', href: `${cnHost}/join`,
},
{
label: 'Partners', href: `${cnHost}/partners`,
},
{
label: 'Contact', href: `${cnHost}/contact`,
},
],
},
],
},
}
export default GlobalContent;
| 23.54386 | 101 | 0.420268 |
3c5acd8c9ccf4288084a5f0b1785a3109ebd9934 | 270 | kt | Kotlin | booster-task-compression-pngquant/src/main/kotlin/com/didiglobal/booster/task/compression/pngquant/PngquantOptions.kt | xwc520/booster | 867541b39621cf8db3c785abb430f5ab9fa7d9ae | [
"Apache-2.0"
] | null | null | null | booster-task-compression-pngquant/src/main/kotlin/com/didiglobal/booster/task/compression/pngquant/PngquantOptions.kt | xwc520/booster | 867541b39621cf8db3c785abb430f5ab9fa7d9ae | [
"Apache-2.0"
] | null | null | null | booster-task-compression-pngquant/src/main/kotlin/com/didiglobal/booster/task/compression/pngquant/PngquantOptions.kt | xwc520/booster | 867541b39621cf8db3c785abb430f5ab9fa7d9ae | [
"Apache-2.0"
] | null | null | null | package com.didiglobal.booster.task.compression.pngquant
import com.didiglobal.booster.compression.CompressionOptions
import com.didiglobal.booster.compression.CompressionTool
class PngquantOptions(quality: Int, val speed: Int) : CompressionOptions(quality = quality)
| 38.571429 | 91 | 0.851852 |
0a89d3a27590be15490c3a27155eb9c2ff4bd500 | 2,074 | kt | Kotlin | collaboration-suite-utils/src/main/java/com/kaleyra/collaboration_suite_utils/network_observer/InternetObserver.kt | Bandyer/Kaleyra-Android-Collaboration-Suite-Utils | 216049e9b5e234e441c234e121d689c493591373 | [
"Apache-2.0",
"MIT"
] | null | null | null | collaboration-suite-utils/src/main/java/com/kaleyra/collaboration_suite_utils/network_observer/InternetObserver.kt | Bandyer/Kaleyra-Android-Collaboration-Suite-Utils | 216049e9b5e234e441c234e121d689c493591373 | [
"Apache-2.0",
"MIT"
] | null | null | null | collaboration-suite-utils/src/main/java/com/kaleyra/collaboration_suite_utils/network_observer/InternetObserver.kt | Bandyer/Kaleyra-Android-Collaboration-Suite-Utils | 216049e9b5e234e441c234e121d689c493591373 | [
"Apache-2.0",
"MIT"
] | null | null | null | /*
* Copyright (C) 2022 Kaleyra S.p.a. All Rights Reserved.
* See LICENSE.txt for licensing information
*/
package com.kaleyra.collaboration_suite_utils.network_observer
import android.Manifest
import androidx.annotation.RequiresPermission
import kotlinx.coroutines.*
import kotlinx.coroutines.channels.BufferOverflow
import kotlinx.coroutines.flow.*
import java.net.HttpURLConnection
import java.net.URL
/**
* Utility class which allows to observe the internet state. It tells if there is actually internet connection.
*/
class InternetObserver @RequiresPermission(Manifest.permission.INTERNET) constructor(private val intervalInMs: Long) {
private val isConnectedFlow: MutableSharedFlow<Boolean> =
MutableSharedFlow(onBufferOverflow = BufferOverflow.DROP_OLDEST, replay = 1)
private var job: Job = CoroutineScope(Dispatchers.IO).launch {
while (true) {
isConnectedFlow.emit(isConnected())
delay(intervalInMs)
}
}
/**
* Call to observe the internet state. It returns true if internet is reachable, false otherwise
*
* @return SharedFlow<Boolean>
*/
fun observe(): Flow<Boolean> = isConnectedFlow.distinctUntilChanged()
/**
* Stop the observer
*/
fun stop() = job.cancel()
private fun isConnected(): Boolean {
var urlConnection: HttpURLConnection? = null
val result = kotlin.runCatching {
urlConnection = initConnection()
urlConnection!!.responseCode == 204
}.getOrNull() ?: false
urlConnection?.disconnect()
return result
}
private fun initConnection() =
(URL(HOST).openConnection() as HttpURLConnection).apply {
connectTimeout = CONNECT_TIMEOUT
readTimeout = READ_TIMEOUT
instanceFollowRedirects = false
useCaches = false
}
private companion object {
const val HOST = "https://clients3.google.com/generate_204"
const val CONNECT_TIMEOUT = 10000
const val READ_TIMEOUT = 10000
}
} | 32.40625 | 118 | 0.682739 |
9bc5927a4d73ff9b8030e6a7497c6ef60283ca1c | 2,427 | js | JavaScript | stories/Avatar.stories.js | knaut/feed | c811367f77e3312b9ce760a6d58297ca112d8b7d | [
"ISC"
] | 2 | 2019-10-14T16:26:56.000Z | 2020-04-22T07:10:44.000Z | stories/Avatar.stories.js | knaut/feed | c811367f77e3312b9ce760a6d58297ca112d8b7d | [
"ISC"
] | null | null | null | stories/Avatar.stories.js | knaut/feed | c811367f77e3312b9ce760a6d58297ca112d8b7d | [
"ISC"
] | null | null | null | import React from 'react'
import { storiesOf } from '@storybook/react'
import { Grommet, Box, Button, Grid } from 'grommet'
import { grommet, dark } from 'grommet/themes'
import StoryRouter from 'storybook-react-router'
import spoof from '../.storybook/user.json'
// COMPONENTS
import Avatar from '../src/components/Avatar'
import Theme from '../src/Theme'
import Layout from '../src/screens/Layout'
storiesOf('Avatar - Large', module)
.addDecorator(getStory => (
<Theme>
<Layout columns={false}>
{ getStory() }
</Layout>
</Theme>
))
.add('no id found', () => (
<Avatar
isLoading={false}
isOnBlockstack={false}
isMe={false}
username={spoof.user.username}
image={null}
/>
))
.add('is loading', () => (
<Avatar
isLoading
isOnBlockstack={null}
isMe={null}
username={spoof.user.username}
image={null}
/>
))
.add('is loaded', () => (
<Avatar
isLoading={false}
isOnBlockstack
isMe={null}
username={spoof.user.username}
image={spoof.user.image}
/>
))
.add('is loaded & you', () => (
<Avatar
isLoading={false}
isOnBlockstack
isMe
username={spoof.user.username}
image={spoof.user.image}
/>
))
.add('is loaded & no avatar', () => (
<Avatar
isLoading={false}
isOnBlockstack
isMe={false}
username={spoof.user.username}
image={null}
/>
))
storiesOf('Avatar - Small', module)
.addDecorator(StoryRouter())
.addDecorator(getStory => (
<Theme>
<Layout columns={false}>
<Box align='center' justify='center'>
{ getStory() }
</Box>
</Layout>
</Theme>
))
.add('is loaded', () => (
<Avatar
size={'small'}
isLoading={false}
isOnBlockstack
isMe={false}
username={spoof.user.username}
name={spoof.user.name}
image={spoof.user.image}
/>
))
.add('is loading', () => (
<Avatar
size={'small'}
isLoading
isOnBlockstack
isMe={false}
username={spoof.user.username}
name={spoof.user.name}
image={spoof.user.image}
/>
))
.add('is loaded & no avatar', () => (
<Avatar
size={'small'}
isLoading={false}
isOnBlockstack
isMe={false}
username={spoof.user.username}
image={null}
name={spoof.user.name}
/>
))
| 21.669643 | 52 | 0.561187 |
2f3550f45eaf39f60243ac6016b0a728b6dafd98 | 8,420 | php | PHP | src/DbAdmin/Traits/TableSelectTrait.php | lagdo/jaxon-dbadmin | fb4389223d1f7ad9aba0cd6e8256c95275942661 | [
"Apache-2.0"
] | null | null | null | src/DbAdmin/Traits/TableSelectTrait.php | lagdo/jaxon-dbadmin | fb4389223d1f7ad9aba0cd6e8256c95275942661 | [
"Apache-2.0"
] | null | null | null | src/DbAdmin/Traits/TableSelectTrait.php | lagdo/jaxon-dbadmin | fb4389223d1f7ad9aba0cd6e8256c95275942661 | [
"Apache-2.0"
] | null | null | null | <?php
namespace Lagdo\DbAdmin\DbAdmin\Traits;
use Lagdo\DbAdmin\Driver\Entity\TableSelectEntity;
use function intval;
use function count;
use function html_entity_decode;
use function strip_tags;
use function array_flip;
use function in_array;
use function substr;
trait TableSelectTrait
{
/**
* Print columns box in select
* @param array $select Result of processSelectColumns()[0]
* @param array $columns Selectable columns
* @param array $options
* @return array
*/
private function getColumnsOptions(array $select, array $columns, array $options): array
{
return [
'select' => $select,
'values' => (array)$options["columns"],
'columns' => $columns,
'functions' => $this->driver->functions(),
'grouping' => $this->driver->grouping(),
];
}
/**
* Print search box in select
*
* @param array $columns Selectable columns
* @param array $indexes
* @param array $options
*
* @return array
*/
private function getFiltersOptions(array $columns, array $indexes, array $options): array
{
$fulltexts = [];
foreach ($indexes as $i => $index) {
$fulltexts[$i] = $index->type == "FULLTEXT" ? $this->util->html($options["fulltext"][$i]) : '';
}
return [
// 'where' => $where,
'values' => (array)$options["where"],
'columns' => $columns,
'indexes' => $indexes,
'operators' => $this->driver->operators(),
'fulltexts' => $fulltexts,
];
}
/**
* Print order box in select
*
* @param array $columns Selectable columns
* @param array $options
*
* @return array
*/
private function getSortingOptions(array $columns, array $options): array
{
$values = [];
$descs = (array)$options["desc"];
foreach ((array)$options["order"] as $key => $value) {
$values[] = [
'col' => $value,
'desc' => $descs[$key] ?? 0,
];
}
return [
// 'order' => $order,
'values' => $values,
'columns' => $columns,
];
}
/**
* Print limit box in select
*
* @param string $limit Result of processSelectLimit()
*
* @return array
*/
private function getLimitOptions(string $limit): array
{
return ['value' => $this->util->html($limit)];
}
/**
* Print text length box in select
*
* @param int $textLength Result of processSelectLength()
*
* @return array
*/
private function getLengthOptions(int $textLength): array
{
return [
'value' => $textLength === 0 ? 0 : $this->util->html($textLength),
];
}
/**
* Print action box in select
*
* @param array $indexes
*
* @return array
*/
// private function getActionOptions(array $indexes)
// {
// $columns = [];
// foreach ($indexes as $index) {
// $current_key = \reset($index->columns);
// if ($index->type != "FULLTEXT" && $current_key) {
// $columns[$current_key] = 1;
// }
// }
// $columns[""] = 1;
// return ['columns' => $columns];
// }
/**
* Print command box in select
*
* @return bool whether to print default commands
*/
// private function getCommandOptions()
// {
// return !$this->driver->isInformationSchema($this->driver->database());
// }
/**
* Print import box in select
*
* @return bool whether to print default import
*/
// private function getImportOptions()
// {
// return !$this->driver->isInformationSchema($this->driver->database());
// }
/**
* Print extra text in the end of a select form
*
* @param array $emailFields Fields holding e-mails
* @param array $columns Selectable columns
*
* @return array
*/
// private function getEmailOptions(array $emailFields, array $columns)
// {
// }
/**
* @param array $queryOptions
*
* @return int
*/
private function setDefaultOptions(array &$queryOptions): int
{
$defaultOptions = [
'columns' => [],
'where' => [],
'order' => [],
'desc' => [],
'fulltext' => [],
'limit' => '50',
'text_length' => '100',
'page' => '1',
];
foreach ($defaultOptions as $name => $value) {
if (!isset($queryOptions[$name])) {
$queryOptions[$name] = $value;
}
}
$page = intval($queryOptions['page']);
if ($page > 0) {
$page -= 1; // Page numbers start at 0 here, instead of 1.
}
$queryOptions['page'] = $page;
return $page;
}
/**
* @param array $fields
*
* @return array
*/
private function getFieldsOptions(array $fields): array
{
$rights = []; // privilege => 0
$columns = []; // selectable columns
$textLength = 0;
foreach ($fields as $key => $field) {
$name = $this->util->fieldName($field);
if (isset($field->privileges["select"]) && $name != "") {
$columns[$key] = html_entity_decode(strip_tags($name), ENT_QUOTES);
if ($this->util->isShortable($field)) {
$textLength = $this->util->processSelectLength();
}
}
$rights[] = $field->privileges;
}
return [$rights, $columns, $textLength];
}
/**
* @param array $indexes
* @param array $select
* @param mixed $tableStatus
*
* @return array
*/
private function setPrimaryKey(array &$indexes, array $select, $tableStatus): array
{
$primary = null;
$unselected = [];
foreach ($indexes as $index) {
if ($index->type == "PRIMARY") {
$primary = array_flip($index->columns);
$unselected = ($select ? $primary : []);
foreach ($unselected as $key => $val) {
if (in_array($this->driver->escapeId($key), $select)) {
unset($unselected[$key]);
}
}
break;
}
}
$oid = $tableStatus->oid;
if ($oid && !$primary) {
/*$primary = */$unselected = [$oid => 0];
$indexes[] = ["type" => "PRIMARY", "columns" => [$oid]];
}
return $unselected;
}
/**
* @param string $table
* @param array $columns
* @param array $fields
* @param array $select
* @param array $group
* @param array $where
* @param array $order
* @param array $unselected
* @param int $limit
* @param int $page
*
* @return TableSelectEntity
*/
private function getSelectEntity(string $table, array $columns, array $fields, array $select,
array $group, array $where, array $order, array $unselected, int $limit, int $page): TableSelectEntity
{
$select2 = $select;
$group2 = $group;
if (empty($select2)) {
$select2[] = "*";
$convert_fields = $this->driver->convertFields($columns, $fields, $select);
if ($convert_fields) {
$select2[] = substr($convert_fields, 2);
}
}
foreach ($select as $key => $val) {
$field = $fields[$this->driver->unescapeId($val)] ?? null;
if ($field && ($as = $this->driver->convertField($field))) {
$select2[$key] = "$as AS $val";
}
}
$isGroup = count($group) < count($select);
if (!$isGroup && !empty($unselected)) {
foreach ($unselected as $key => $val) {
$select2[] = $this->driver->escapeId($key);
if (!empty($group2)) {
$group2[] = $this->driver->escapeId($key);
}
}
}
// From driver.inc.php
return new TableSelectEntity($table, $select2, $where, $group2, $order, $limit, $page);
}
}
| 28.542373 | 139 | 0.493349 |
92a53bbe3230805cbd0aabfaec80e7266334d195 | 5,129 | h | C | samples/WTL10/General/Drag'n'Drop/MainDlg.h | TimoKunze/EditControls | bab032907b47bafb0afdf700aebd5057be4662d6 | [
"MIT"
] | 4 | 2019-02-24T09:43:17.000Z | 2020-10-02T08:56:41.000Z | samples/WTL10/General/Drag'n'Drop/MainDlg.h | TimoKunze/EditControls | bab032907b47bafb0afdf700aebd5057be4662d6 | [
"MIT"
] | null | null | null | samples/WTL10/General/Drag'n'Drop/MainDlg.h | TimoKunze/EditControls | bab032907b47bafb0afdf700aebd5057be4662d6 | [
"MIT"
] | 1 | 2022-01-31T01:11:26.000Z | 2022-01-31T01:11:26.000Z | // MainDlg.h : interface of the CMainDlg class
//
/////////////////////////////////////////////////////////////////////////////
#pragma once
#import <libid:A8F9B8E7-E699-4fce-A647-72C877F8E632> version("1.11") named_guids, no_namespace, raw_dispinterfaces
class CMainDlg :
public CAxDialogImpl<CMainDlg>,
public CMessageFilter,
public CDialogResize<CMainDlg>,
public CComObjectRootEx<CComSingleThreadModel>,
public CComCoClass<CMainDlg>,
public IDispEventImpl<IDC_TXTBOXU, CMainDlg, &__uuidof(_ITextBoxEvents), &LIBID_EditCtlsLibU, 1, 11>
{
public:
enum { IDD = IDD_MAINDLG };
CContainedWindowT<CAxWindow> txtBoxUWnd;
CMainDlg() :
txtBoxUWnd(this, 1)
{
CF_TARGETCLSID = static_cast<CLIPFORMAT>(RegisterClipboardFormat(CFSTR_TARGETCLSID));
suppressDefaultContextMenu = FALSE;
}
BOOL bRightDrag;
BOOL suppressDefaultContextMenu;
#define TIMERID_CONTEXTMENUHACK 1
struct Controls
{
CButton oleDDCheck;
CComPtr<ITextBox> txtboxU;
} controls;
CLIPFORMAT CF_TARGETCLSID;
virtual BOOL PreTranslateMessage(MSG* pMsg);
BEGIN_MSG_MAP(CMainDlg)
MESSAGE_HANDLER(WM_CLOSE, OnClose)
MESSAGE_HANDLER(WM_DESTROY, OnDestroy)
MESSAGE_HANDLER(WM_INITDIALOG, OnInitDialog)
MESSAGE_HANDLER(WM_TIMER, OnTimer)
COMMAND_ID_HANDLER(ID_APP_ABOUT, OnAppAbout)
CHAIN_MSG_MAP(CDialogResize<CMainDlg>)
ALT_MSG_MAP(1)
END_MSG_MAP()
BEGIN_SINK_MAP(CMainDlg)
SINK_ENTRY_EX(IDC_TXTBOXU, __uuidof(_ITextBoxEvents), 1, AbortedDragTxtboxu)
SINK_ENTRY_EX(IDC_TXTBOXU, __uuidof(_ITextBoxEvents), 3, BeginDragTxtboxu)
SINK_ENTRY_EX(IDC_TXTBOXU, __uuidof(_ITextBoxEvents), 4, BeginRDragTxtboxu)
SINK_ENTRY_EX(IDC_TXTBOXU, __uuidof(_ITextBoxEvents), 6, ContextMenuTxtboxu)
SINK_ENTRY_EX(IDC_TXTBOXU, __uuidof(_ITextBoxEvents), 9, DragMouseMoveTxtboxu)
SINK_ENTRY_EX(IDC_TXTBOXU, __uuidof(_ITextBoxEvents), 10, DropTxtboxu)
SINK_ENTRY_EX(IDC_TXTBOXU, __uuidof(_ITextBoxEvents), 11, KeyDownTxtboxu)
SINK_ENTRY_EX(IDC_TXTBOXU, __uuidof(_ITextBoxEvents), 21, MouseUpTxtboxu)
SINK_ENTRY_EX(IDC_TXTBOXU, __uuidof(_ITextBoxEvents), 22, OLECompleteDragTxtboxu)
SINK_ENTRY_EX(IDC_TXTBOXU, __uuidof(_ITextBoxEvents), 23, OLEDragDropTxtboxu)
SINK_ENTRY_EX(IDC_TXTBOXU, __uuidof(_ITextBoxEvents), 24, OLEDragEnterTxtboxu)
SINK_ENTRY_EX(IDC_TXTBOXU, __uuidof(_ITextBoxEvents), 25, OLEDragLeaveTxtboxu)
SINK_ENTRY_EX(IDC_TXTBOXU, __uuidof(_ITextBoxEvents), 26, OLEDragMouseMoveTxtboxu)
SINK_ENTRY_EX(IDC_TXTBOXU, __uuidof(_ITextBoxEvents), 29, OLESetDataTxtboxu)
SINK_ENTRY_EX(IDC_TXTBOXU, __uuidof(_ITextBoxEvents), 30, OLEStartDragTxtboxu)
SINK_ENTRY_EX(IDC_TXTBOXU, __uuidof(_ITextBoxEvents), 34, RecreatedControlWindowTxtboxu)
END_SINK_MAP()
BEGIN_DLGRESIZE_MAP(CMainDlg)
DLGRESIZE_CONTROL(IDC_TXTBOXU, DLSZ_SIZE_X | DLSZ_SIZE_Y)
DLGRESIZE_CONTROL(ID_APP_ABOUT, DLSZ_MOVE_X)
DLGRESIZE_CONTROL(IDC_OLEDDCHECK, DLSZ_MOVE_X)
END_DLGRESIZE_MAP()
LRESULT OnClose(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/);
LRESULT OnDestroy(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& bHandled);
LRESULT OnInitDialog(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/);
LRESULT OnTimer(UINT /*uMsg*/, WPARAM wParam, LPARAM /*lParam*/, BOOL& bHandled);
LRESULT OnAppAbout(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/);
void CloseDialog(int nVal);
void LoadText(void);
void __stdcall AbortedDragTxtboxu();
void __stdcall BeginDragTxtboxu(LONG firstChar, LONG lastChar, short /*button*/, short /*shift*/, long /*x*/, long /*y*/);
void __stdcall BeginRDragTxtboxu(LONG firstChar, LONG lastChar, short /*button*/, short /*shift*/, long /*x*/, long /*y*/);
void __stdcall ContextMenuTxtboxu(short /*button*/, short /*shift*/, long /*x*/, long /*y*/, VARIANT_BOOL* showDefaultMenu);
void __stdcall DragMouseMoveTxtboxu(short /*button*/, short /*shift*/, long x, long y, long* /*autoHScrollVelocity*/, long* /*autoVScrollVelocity*/);
void __stdcall DropTxtboxu(short /*button*/, short /*shift*/, long x, long y);
void __stdcall KeyDownTxtboxu(short* keyCode, short /*shift*/);
void __stdcall MouseUpTxtboxu(short button, short /*shift*/, long /*x*/, long /*y*/);
void __stdcall OLECompleteDragTxtboxu(LPDISPATCH data, long performedEffect);
void __stdcall OLEDragDropTxtboxu(LPDISPATCH data, long* effect, short /*button*/, short shift, long /*x*/, long /*y*/);
void __stdcall OLEDragEnterTxtboxu(LPDISPATCH /*data*/, long* effect, short /*button*/, short shift, long x, long y, long* /*autoHScrollVelocity*/, long* /*autoVScrollVelocity*/);
void __stdcall OLEDragLeaveTxtboxu(LPDISPATCH /*data*/, short /*button*/, short /*shift*/, long /*x*/, long /*y*/);
void __stdcall OLEDragMouseMoveTxtboxu(LPDISPATCH /*data*/, long* effect, short /*button*/, short shift, long x, long y, long* /*autoHScrollVelocity*/, long* /*autoVScrollVelocity*/);
void __stdcall OLESetDataTxtboxu(LPDISPATCH data, long formatID, long /*index*/, long /*dataOrViewAspect*/);
void __stdcall OLEStartDragTxtboxu(LPDISPATCH data);
void __stdcall RecreatedControlWindowTxtboxu(long /*hWnd*/);
};
| 48.386792 | 184 | 0.756678 |
fff1b15369026c91f150ff90f4ca694e4503356a | 3,871 | html | HTML | com/radityalabs/Python/origin/movie/15026.html | radityagumay/BenchmarkSentimentAnalysis_2 | e509a4e749271da701ce9da1d9f16cdd78dcdf40 | [
"Apache-2.0"
] | 3 | 2017-06-08T01:17:55.000Z | 2019-06-02T10:52:36.000Z | com/radityalabs/Python/origin/movie/15026.html | radityagumay/BenchmarkSentimentAnalysis_2 | e509a4e749271da701ce9da1d9f16cdd78dcdf40 | [
"Apache-2.0"
] | null | null | null | com/radityalabs/Python/origin/movie/15026.html | radityagumay/BenchmarkSentimentAnalysis_2 | e509a4e749271da701ce9da1d9f16cdd78dcdf40 | [
"Apache-2.0"
] | null | null | null | <HTML><HEAD>
<TITLE>Review for Happiness (1998)</TITLE>
<LINK REL="STYLESHEET" TYPE="text/css" HREF="/ramr.css">
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000">
<H1 ALIGN="CENTER" CLASS="title"><A HREF="/Title?0147612">Happiness (1998)</A></H1><H3 ALIGN=CENTER>reviewed by<BR><A HREF="/ReviewsBy?Christopher+Null">Christopher Null</A></H3><HR WIDTH="40%" SIZE="4">
<PRE>. HAPPINESS
A film review by Christopher Null
Copyright 1998 Christopher Null</PRE>
<PRE> Holy smokes.</PRE>
<P> HAPPINESS has been mired in controversy for the entire year, and
not without good reason. Put simply, HAPPINESS is one of the most
shocking films I've ever seen - this from a man who adores A CLOCKWORK
ORANGE.</P>
<P> Not that it's particularly graphic or lewd. Rather, HAPPINESS is
truly eye-opening for its theme: that everyone in this world is pretty
much a pig of some sort. Those that aren't are doomed to be victims.</P>
<P> Watching the film, you get the idea that director Solondz may not
be too far off the mark. A disturbing investigation into the underbelly
of suburban New Jersey, the film tracks a few days in the life of one
highly dysfunctional family and the people with whom their lives
intersect. Namely, an obscene phone caller, a murderous neighbor, a
pedophilic serial rapist/family dad, a suicidal loser... and that's not
even including the three sisters themselves. There's *no one*
redeemable in this movie.</P>
<P> And that fits it to a "T". Unlike YOUR FRIENDS AND NEIGHBORS,
which showed a bunch of pitiful losers interacting with one another to
no ultimate end, HAPPINESS shows how a bunch of losers can watch their
lives get even more pitiful - and downright disturbing - when the seams
in society start to crack.</P>
<P> HAPPINESS is not for everyone. In fact, it may not be for many of
you, unless you have a strong stomach and a taste for the bizarre. And
HAPPINESS may not be perfect, either. It's too long, it rambles from
time to time, and there's probably one too many characters to follow.
But the film's boundary pushing, gripping storytelling, and
truer-than-life moments make up for it all.</P>
<PRE>RATING: ***** [HIGHEST RATING]</PRE>
<PRE>|------------------------------|
\ ***** Perfection \
\ **** Good, memorable film \
\ *** Average, hits and misses \
\ ** Sub-par on many levels \
\ * Unquestionably awful \
|------------------------------|</PRE>
<PRE>MPAA Rating: NR</PRE>
<P>Director: Todd Solondz
Producer: Ted Hope, Christine Vachon
Writer: Todd Solondz
Starring: Jane Adams, Elizabeth Ashley, Dylan Baker, Lara Flynn Boyle,
Ben Gazzara, Jared Harris, Philip Seymour Hoffman, Louise Lasser, Camryn
Mannheim, Cynthia Stevenson</P>
<P><A HREF="http://www.happinessthemovie.com">http://www.happinessthemovie.com</A></P>
<P>-Christopher Null / <A HREF="mailto:null@sirius.com">null@sirius.com</A> / Writer-Producer /
<A HREF="http://www.filmcritic.com">http://www.filmcritic.com</A></P>
<HR><P CLASS=flush><SMALL>The review above was posted to the
<A HREF="news:rec.arts.movies.reviews">rec.arts.movies.reviews</A> newsgroup (<A HREF="news:de.rec.film.kritiken">de.rec.film.kritiken</A> for German reviews).<BR>
The Internet Movie Database accepts no responsibility for the contents of the
review and has no editorial control. Unless stated otherwise, the copyright
belongs to the author.<BR>
Please direct comments/criticisms of the review to relevant newsgroups.<BR>
Broken URLs inthe reviews are the responsibility of the author.<BR>
The formatting of the review is likely to differ from the original due
to ASCII to HTML conversion.
</SMALL></P>
<P ALIGN=CENTER>Related links: <A HREF="/Reviews/">index of all rec.arts.movies.reviews reviews</A></P>
</P></BODY></HTML>
| 55.3 | 203 | 0.706536 |
856c518ddc17d47df3306a90019bc32a499b8567 | 4,894 | js | JavaScript | web2py/applications/SEAD/static/js/gauge.js | seadsystem/website | d7e8110c012d94c494895fde9951eef728266798 | [
"MIT"
] | 5 | 2016-03-20T07:07:17.000Z | 2018-04-12T16:34:12.000Z | web2py/applications/SEAD/static/js/gauge.js | grant523/website | 1b5351e638a15a1c0c68e55f9162d1b8e62974bb | [
"MIT"
] | 22 | 2015-11-04T23:11:41.000Z | 2016-05-19T00:08:54.000Z | web2py/applications/SEAD/static/js/gauge.js | grant523/website | 1b5351e638a15a1c0c68e55f9162d1b8e62974bb | [
"MIT"
] | 4 | 2015-10-29T01:46:44.000Z | 2018-04-09T22:05:28.000Z | var gauge = function(room, mod_i, data_i) {
var today = room.data[data_i][0];
var yesterday = room.data[data_i][1];
var lastweek = room.data[data_i][2];
// console.log(today);
room.modules[mod_i].chart = Highcharts.chart(room.modules[mod_i].el_id , {
// $("#" + room.modules[mod_i].el_id).highcharts({
chart: {
type: 'solidgauge',
marginTop: 50
},
title: {
text: 'Electricy Consumption',
style: {
fontSize: '24px'
}
},
tooltip: {
borderWidth: 0,
backgroundColor: 'none',
shadow: false,
style: {
fontSize: '16px'
},
pointFormat: '{series.name}<br><span style="font-size:2em; color: {point.color}; font-weight: bold">${point.y}</span>',
positioner: function(labelWidth) {
return {
x: $("#" + room.modules[mod_i].el_id).width() / 2 - labelWidth / 2,
y: $("#" + room.modules[mod_i].el_id).height() / 2 - 17
};
}
},
pane: {
startAngle: 0,
endAngle: 360,
background: [{ // Track for Move
outerRadius: '112%',
innerRadius: '88%',
backgroundColor: Highcharts.Color(Highcharts.getOptions().colors[3]).setOpacity(0.3).get(),
borderWidth: 0
}, { // Track for Exercise
outerRadius: '87%',
innerRadius: '63%',
backgroundColor: Highcharts.Color(Highcharts.getOptions().colors[0]).setOpacity(0.3).get(),
borderWidth: 0
}, { // Track for Stand
outerRadius: '62%',
innerRadius: '38%',
backgroundColor: Highcharts.Color(Highcharts.getOptions().colors[2]).setOpacity(0.3).get(),
borderWidth: 0
}]
},
yAxis: {
min: 0,
max: 100,
lineWidth: 0,
tickPositions: []
},
plotOptions: {
solidgauge: {
borderWidth: '34px',
dataLabels: {
enabled: false
},
linecap: 'round',
stickyTracking: false
}
},
series: [{
name: 'Today',
borderColor: Highcharts.getOptions().colors[3],
data: [{
color: Highcharts.getOptions().colors[3],
radius: '100%',
innerRadius: '100%',
y: today
}]
}, {
name: 'Yesterday',
borderColor: Highcharts.getOptions().colors[0],
data: [{
color: Highcharts.getOptions().colors[0],
radius: '75%',
innerRadius: '75%',
y: yesterday
}]
}, {
name: 'Last Week',
borderColor: Highcharts.getOptions().colors[2],
data: [{
color: Highcharts.getOptions().colors[2],
radius: '50%',
innerRadius: '50%',
y: lastweek
}]
}]
},
/**
* In the chart load callback, add icons on top of the circular shapes
*/
function callback() {
// Move icon
this.renderer.path(['M', -8, 0, 'L', 8, 0, 'M', 0, -8, 'L', 8, 0, 0, 8])
.translate(190, 26)
.add(this.series[2].group);
// Exercise icon
this.renderer.path(['M', -8, 0, 'L', 8, 0, 'M', 0, -8, 'L', 8, 0, 0, 8, 'M', 8, -8, 'L', 16, 0, 8, 8])
.translate(190, 61)
.add(this.series[2].group);
// Stand icon
this.renderer.path(['M', 0, 8, 'L', 0, -8, 'M', -8, 0, 'L', 0, -8, 8, 0])
.translate(190, 96)
.add(this.series[2].group);
});
}
//just hook up the values here
| 36.522388 | 139 | 0.356559 |
7f05b528eab9659f8738ef6b9d766672843fbd75 | 459 | go | Go | opentelemetry/jaeger/exporter.go | morozovcookie/agat-banking-public | 2cc495beed6ff3cb3b1a5c151c0970a66f62f78d | [
"MIT"
] | null | null | null | opentelemetry/jaeger/exporter.go | morozovcookie/agat-banking-public | 2cc495beed6ff3cb3b1a5c151c0970a66f62f78d | [
"MIT"
] | null | null | null | opentelemetry/jaeger/exporter.go | morozovcookie/agat-banking-public | 2cc495beed6ff3cb3b1a5c151c0970a66f62f78d | [
"MIT"
] | null | null | null | package jaeger
import (
"github.com/pkg/errors"
"go.opentelemetry.io/otel/exporters/jaeger"
"go.opentelemetry.io/otel/sdk/trace"
)
// NewExporter returns a new NewExporter instance.
func NewExporter() (trace.SpanExporter, error) {
exporter, err := jaeger.New(
jaeger.WithAgentEndpoint(
jaeger.WithAgentHost("127.0.0.1"),
jaeger.WithAgentPort("6831")))
if err != nil {
return nil, errors.Wrap(err, "init exporter")
}
return exporter, nil
}
| 21.857143 | 50 | 0.718954 |
3ee1375f25a98ad1cacd039bd65fc795ef98a297 | 283 | h | C | MFC/SingleDocument/src/SDI/MazeGame.h | creatorsok2/Disk | cacb20f66892a4160325ceb9f928df74ddb96759 | [
"MIT"
] | null | null | null | MFC/SingleDocument/src/SDI/MazeGame.h | creatorsok2/Disk | cacb20f66892a4160325ceb9f928df74ddb96759 | [
"MIT"
] | null | null | null | MFC/SingleDocument/src/SDI/MazeGame.h | creatorsok2/Disk | cacb20f66892a4160325ceb9f928df74ddb96759 | [
"MIT"
] | 1 | 2020-07-06T15:09:09.000Z | 2020-07-06T15:09:09.000Z | #pragma once
#include "Maze.h"
class MazeFactory;
class MazeBuilder;
class MazeGame
{
public:
std::shared_ptr<Maze> CreateMaze(const MazeFactory& factory);
std::shared_ptr<Maze> CreateMaze(MazeBuilder& builder);
std::shared_ptr<Maze> CreateComplexMaze(MazeBuilder& builder);
}; | 20.214286 | 63 | 0.777385 |
a1e4f9de1a2c3d177810684e3270894543c2d4e4 | 1,124 | c | C | cours9/semaphore.c | Menelau/LOG645-Course-examples | ef35b7c10daa2610dd1b4da10658b4acb623d7b4 | [
"MIT"
] | null | null | null | cours9/semaphore.c | Menelau/LOG645-Course-examples | ef35b7c10daa2610dd1b4da10658b4acb623d7b4 | [
"MIT"
] | null | null | null | cours9/semaphore.c | Menelau/LOG645-Course-examples | ef35b7c10daa2610dd1b4da10658b4acb623d7b4 | [
"MIT"
] | 2 | 2021-09-23T15:56:33.000Z | 2021-12-15T12:15:23.000Z | #include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <semaphore.h>
long thread_count;
sem_t semaphore;
void* Semaphore_Function(void* args) {
long rank = (long) args;
sem_wait(&semaphore);
printf("Hello from thread %ld.\n", rank);
sleep(10); // simulating intensive calculation...
printf("Thread %ld returning token.\n", rank);
sem_post(&semaphore);
return NULL;
}
int main(int argc, char *argv[]) {
thread_count = strtol(argv[1], NULL, 10);
pthread_t *thread_handles;
thread_handles = malloc(thread_count * sizeof(pthread_t));
// initializing a semaphore with 4 "tokens" or threads that can run in parallel
sem_init(&semaphore, 0, 4);
for (long thread = 0; thread < thread_count; thread++) {
pthread_create(&thread_handles[thread], NULL, &Semaphore_Function, (void*) thread);
}
for (int thread = 0; thread < thread_count; thread++) {
pthread_join(thread_handles[thread], NULL);
}
//destroy semaphore
sem_destroy(&semaphore);
free(thread_handles);
return 0;
}
| 24.977778 | 91 | 0.662811 |
2da9f04f6e01b4b417fd7c582c1a39f7262da7c8 | 169 | htm | HTML | pySelenium/data.htm | LairdStreak/MyPyPlayGround | e999cfd179d457a6d17c81bf1bacaa7c90e3e1dc | [
"MIT"
] | null | null | null | pySelenium/data.htm | LairdStreak/MyPyPlayGround | e999cfd179d457a6d17c81bf1bacaa7c90e3e1dc | [
"MIT"
] | null | null | null | pySelenium/data.htm | LairdStreak/MyPyPlayGround | e999cfd179d457a6d17c81bf1bacaa7c90e3e1dc | [
"MIT"
] | null | null | null | <!DOCTYPE html>
<html>
<head>
<!-- ... -->
</head>
<body>
<figure>
<embed type="image/svg+xml" src="bar_chart.svg" />
</figure>
</body>
</html> | 15.363636 | 56 | 0.485207 |
99f491278128a59175ea1fd6371f85204775fdb0 | 1,433 | sql | SQL | tests/data/7_test_multi_protocol.sql | dioptra-io/diamond-miner | fae066bef872f5c3eb4ef732dd90237c9cb5c003 | [
"MIT"
] | 5 | 2021-08-04T13:56:38.000Z | 2022-03-17T01:20:14.000Z | tests/data/7_test_multi_protocol.sql | dioptra-io/diamond-miner | fae066bef872f5c3eb4ef732dd90237c9cb5c003 | [
"MIT"
] | 28 | 2021-08-01T05:05:28.000Z | 2022-03-01T05:06:27.000Z | tests/data/7_test_multi_protocol.sql | dioptra-io/diamond-miner | fae066bef872f5c3eb4ef732dd90237c9cb5c003 | [
"MIT"
] | null | null | null | -- At TTL 1, we discover 1 node with UDP, 2 with ICMP
-- At TTL 2, we discover 1 node for both protocols
INSERT INTO probes__test_multi_protocol
VALUES (1, '::ffff:200.0.0.0', 1, 6, 1),
(1, '::ffff:200.0.0.0', 2, 6, 1),
(17, '::ffff:200.0.0.0', 1, 6, 1),
(17, '::ffff:200.0.0.0', 2, 6, 1);
-- We assume that we have sent 6 probes per TTL, but we omit some replies here.
INSERT INTO results__test_multi_protocol
VALUES (0, 17, '::ffff:100.0.0.1', '::ffff:200.0.0.1', 24000, 33434, 1, 1, '::ffff:150.0.0.1', 1, 11, 0, 250, 0, [], 0.0, 1),
(0, 17, '::ffff:100.0.0.1', '::ffff:200.0.0.2', 24000, 33434, 1, 1, '::ffff:150.0.0.1', 1, 11, 0, 250, 0, [], 0.0, 1),
(0, 1, '::ffff:100.0.0.1', '::ffff:200.0.0.1', 24000, 33434, 1, 1, '::ffff:150.0.0.1', 1, 11, 0, 250, 0, [], 0.0, 1),
(0, 1, '::ffff:100.0.0.1', '::ffff:200.0.0.2', 24000, 33434, 1, 1, '::ffff:150.0.0.2', 1, 11, 0, 250, 0, [], 0.0, 1)
(0, 17, '::ffff:100.0.0.1', '::ffff:200.0.0.1', 24000, 33434, 2, 2, '::ffff:150.0.1.1', 1, 11, 0, 250, 0, [], 0.0, 1)
(0, 17, '::ffff:100.0.0.1', '::ffff:200.0.0.2', 24000, 33434, 2, 2, '::ffff:150.0.1.1', 1, 11, 0, 250, 0, [], 0.0, 1)
(0, 1, '::ffff:100.0.0.1', '::ffff:200.0.0.1', 24000, 33434, 2, 2, '::ffff:150.0.1.1', 1, 11, 0, 250, 0, [], 0.0, 1)
(0, 1, '::ffff:100.0.0.1', '::ffff:200.0.0.2', 24000, 33434, 2, 2, '::ffff:150.0.1.1', 1, 11, 0, 250, 0, [], 0.0, 1);
| 75.421053 | 125 | 0.503838 |
1f87ac7e901f886b39e339a2c43de4d236b46943 | 1,003 | html | HTML | exe/ex008b/index.html | caduce3/html-css | c76f56ff0b59e15e0513c396c0cd752c3721eb77 | [
"MIT"
] | 1 | 2021-12-05T14:28:44.000Z | 2021-12-05T14:28:44.000Z | exe/ex008b/index.html | caduce3/html-css | c76f56ff0b59e15e0513c396c0cd752c3721eb77 | [
"MIT"
] | null | null | null | exe/ex008b/index.html | caduce3/html-css | c76f56ff0b59e15e0513c396c0cd752c3721eb77 | [
"MIT"
] | null | null | null | <!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Outras Formatações</title>
</head>
<body>
<h1>Outras formatações</h1>
<h2>Código-fonte</h2>
<p><code>document.getElementyById('Teste')</code></p>
<pre>
<code>
num = int(input("Digite um número"))
if num % 2 -- 0:
print("O número {num} é par")
else:
print("O número {num} é ímpar")
print("Fim")
</code>
</pre>
<h2>Citações Simples</h2>
<p><q>O computador é um burro muito rápido</q></p>
<h2>Citações Completas</h2>
<p>Segundo Jeff, no seu livro Honda:</p>
<blockquote cite="link">
A diferença entre pai e mãe é simples
</blockquote>
<h2>Abreviações</h2>
<p><abbr title="HyperText Makup Language">HTML</abbr> e CSS</p>
</body>
</html> | 29.5 | 74 | 0.567298 |
29cc5b6cf904da8511dbfc7a1c65d60fc1a7b591 | 139 | sql | SQL | Sql/2017-2018/A/19.sql | Wowol/Education | 95f1b86a0f70fd8cd0ce66bc546cd38871572a8b | [
"MIT"
] | null | null | null | Sql/2017-2018/A/19.sql | Wowol/Education | 95f1b86a0f70fd8cd0ce66bc546cd38871572a8b | [
"MIT"
] | null | null | null | Sql/2017-2018/A/19.sql | Wowol/Education | 95f1b86a0f70fd8cd0ce66bc546cd38871572a8b | [
"MIT"
] | null | null | null | --ZAD19
SELECT nazwisko, to_char(zatrudniony, 'Month, DD YYYY') as data_zatrudnienia FROM pracownicy WHERE id_zesp=20 ORDER BY id_prac
---- | 46.333333 | 126 | 0.784173 |
b4ac43710b9f42e55fe591c5688df28c05590c81 | 487 | sql | SQL | db/migrations/1_create_tables.sql | theduckfliesagain/QuizApp | f6c8879c08139a0d69dbd41e9e525e8b1afb3e43 | [
"PostgreSQL",
"MIT"
] | null | null | null | db/migrations/1_create_tables.sql | theduckfliesagain/QuizApp | f6c8879c08139a0d69dbd41e9e525e8b1afb3e43 | [
"PostgreSQL",
"MIT"
] | null | null | null | db/migrations/1_create_tables.sql | theduckfliesagain/QuizApp | f6c8879c08139a0d69dbd41e9e525e8b1afb3e43 | [
"PostgreSQL",
"MIT"
] | 2 | 2021-05-13T22:17:11.000Z | 2021-05-19T18:50:14.000Z | DROP TABLE IF EXISTS Users;
DROP TABLE IF EXISTS UserScore;
DROP TABLE IF EXISTS Quizzes;
CREATE TABLE Users (
id serial PRIMARY KEY,
name varchar(255) NOT NULL UNIQUE,
highscore decimal(3,2) DEFAULT 0
);
CREATE TABLE Quizzes (
id serial PRIMARY KEY,
category int,
difficulty varchar,
length int
);
CREATE TABLE UserScore (
id serial PRIMARY KEY,
user_id int references Users(id),
quiz_id int references Quizzes(id),
score int DEFAULT 0
);
| 20.291667 | 39 | 0.702259 |
c7db6fa712bd0323814914bf4da3f6ca8f799968 | 554 | py | Python | blog/templatetags/filtersandtags.py | mkbeh/Site-Nordic-Walking- | ba98f41db09ed448ecc4db175f65ef4fa2d64979 | [
"MIT"
] | null | null | null | blog/templatetags/filtersandtags.py | mkbeh/Site-Nordic-Walking- | ba98f41db09ed448ecc4db175f65ef4fa2d64979 | [
"MIT"
] | 8 | 2021-04-08T21:57:55.000Z | 2022-03-12T00:50:38.000Z | blog/templatetags/filtersandtags.py | mkbeh/Site-Nordic-Walking- | ba98f41db09ed448ecc4db175f65ef4fa2d64979 | [
"MIT"
] | null | null | null | import re
from django import template
from django.template.defaultfilters import stringfilter
register = template.Library()
@register.filter(name='cutimages')
@stringfilter
def cut_images(value):
"""
Filter which cut `img` tags.
"""
pattern = re.compile(r'<p><img .*</p>')
return re.sub(pattern, '', value)
@register.filter(name='cutiframes')
@stringfilter
def cut_iframes(value):
"""
Filter which cut <iframe> tags.
"""
pattern = re.compile(r'<p><iframe .*</iframe></p>')
return re.sub(pattern, '', value)
| 19.785714 | 55 | 0.658845 |
c7bfaba1843b0631d77d4ba23436e7a2107e5298 | 3,670 | py | Python | posthog/demo/revenue_data_generator.py | avoajaugochukwu/posthog | 7e7fd42b0542ebc4734aedb926df11d462e3dd4f | [
"MIT"
] | 1 | 2020-07-20T17:32:05.000Z | 2020-07-20T17:32:05.000Z | posthog/demo/revenue_data_generator.py | avoajaugochukwu/posthog | 7e7fd42b0542ebc4734aedb926df11d462e3dd4f | [
"MIT"
] | null | null | null | posthog/demo/revenue_data_generator.py | avoajaugochukwu/posthog | 7e7fd42b0542ebc4734aedb926df11d462e3dd4f | [
"MIT"
] | null | null | null | import random
import secrets
from dateutil.relativedelta import relativedelta
from django.utils.timezone import now
from posthog.constants import TREND_FILTER_TYPE_ACTIONS
from posthog.demo.data_generator import DataGenerator
from posthog.models import Action, ActionStep, Dashboard, DashboardItem, Person
class RevenueDataGenerator(DataGenerator):
def create_missing_events_and_properties(self):
self.add_if_not_contained(self.team.event_names, "purchase")
self.add_if_not_contained(self.team.event_names, "entered_free_trial")
self.add_if_not_contained(self.team.event_properties, "plan")
self.add_if_not_contained(self.team.event_properties, "first_visit")
self.add_if_not_contained(self.team.event_properties_numerical, "purchase_value")
self.add_if_not_contained(
self.team.event_properties, "purchase_value",
) # numerical properties must also be declared here
def populate_person_events(self, person: Person, distinct_id: str, index: int):
if random.randint(0, 10) <= 4:
self.add_event(
event="entered_free_trial", distinct_id=distinct_id, timestamp=now() - relativedelta(days=345),
)
self.add_event(
event="$pageview",
distinct_id=distinct_id,
timestamp=now() - relativedelta(days=350),
properties={"first_visit": True},
)
if random.randint(0, 100) < 72:
base_days = random.randint(0, 29)
for j in range(0, 11):
plan, value = random.choice((("basic", 8), ("basic", 8), ("standard", 13), ("premium", 30)))
self.add_event(
event="$pageview",
distinct_id=distinct_id,
timestamp=now() - relativedelta(days=(j * 29 + base_days) if j == 0 else (j * 29 + base_days) - 1),
)
if random.randint(0, 10) <= 8:
self.add_event(
event="purchase",
distinct_id=distinct_id,
properties={"plan": plan, "purchase_value": value},
timestamp=now() - relativedelta(days=j * 29 + base_days),
)
def create_actions_dashboards(self):
purchase_action = Action.objects.create(team=self.team, name="Purchase")
ActionStep.objects.create(action=purchase_action, event="purchase")
free_trial_action = Action.objects.create(team=self.team, name="Entered Free Trial")
ActionStep.objects.create(action=free_trial_action, event="entered_free_trial")
dashboard = Dashboard.objects.create(
name="Sales & Revenue", pinned=True, team=self.team, share_token=secrets.token_urlsafe(22)
)
DashboardItem.objects.create(
team=self.team,
dashboard=dashboard,
name="Entered Free Trial -> Purchase (Premium)",
filters={
"actions": [
{
"id": free_trial_action.id,
"name": "Installed App",
"order": 0,
"type": TREND_FILTER_TYPE_ACTIONS,
},
{
"id": purchase_action.id,
"name": "Rated App",
"order": 1,
"type": TREND_FILTER_TYPE_ACTIONS,
"properties": {"plan": "premium"},
},
],
"insight": "FUNNELS",
"date_from": "all",
},
)
| 42.183908 | 119 | 0.562943 |
5b462188eb63ae9e0d903a828b1f239df87e8946 | 766 | h | C | src/bottompanel/compilewindow.h | cpp-lv425/PairStormIDE | 7c77ba052953241833e4e54f5fe616b9bcc4b4b6 | [
"MIT"
] | 4 | 2019-07-23T13:00:58.000Z | 2021-09-24T19:03:01.000Z | src/bottompanel/compilewindow.h | cpp-lv425/PairStormIDE | 7c77ba052953241833e4e54f5fe616b9bcc4b4b6 | [
"MIT"
] | 4 | 2019-07-23T12:33:11.000Z | 2019-08-20T11:39:16.000Z | src/bottompanel/compilewindow.h | cpp-lv425/PairStormIDE | 7c77ba052953241833e4e54f5fe616b9bcc4b4b6 | [
"MIT"
] | 1 | 2019-11-02T15:07:13.000Z | 2019-11-02T15:07:13.000Z | #ifndef COMPILEWINDOW_H
#define COMPILEWINDOW_H
#include <QWidget>
#include <QPlainTextEdit>
#include <QStringList>
#include <QListWidget>
namespace Ui
{
class CompileWindow;
}
class CompileWindow : public QWidget
{
Q_OBJECT
public:
explicit CompileWindow(QWidget *parent = nullptr);
~CompileWindow();
signals:
void programIsReadyToCompile();
public slots:
void setCompileErrorsOutput(QString);
void setCompileSuccessOutput();
void clearCompileOutputView();
private:
QStringList getAllErrorsFromCompileOutput(const QString &compileErrorsOutput);
QString removeAllSymbolsFromString( QString &outputLine, const char &symb);
private:
Ui::CompileWindow *ui;
QListWidget *mpCompileOutputList;
};
#endif // COMPILEWINDOW_H
| 21.277778 | 82 | 0.766319 |
c64d7ec1ae3254eb1429bfdee2fc90d90029bc7a | 2,733 | rb | Ruby | app/models/rtf_exporter.rb | liuhualh/redcase | f2797d6d29fa682b7416cf7c19fbce0905c8cbe3 | [
"Apache-2.0"
] | 20 | 2017-05-20T16:48:58.000Z | 2022-01-20T01:00:49.000Z | app/models/rtf_exporter.rb | Sabsem/redcase | c1fdca95b73b04b57ae5fa11cbabbdf4a0246ab5 | [
"Apache-2.0"
] | 5 | 2017-05-22T11:55:50.000Z | 2021-04-29T08:08:00.000Z | app/models/rtf_exporter.rb | Sabsem/redcase | c1fdca95b73b04b57ae5fa11cbabbdf4a0246ab5 | [
"Apache-2.0"
] | 22 | 2017-08-04T15:30:15.000Z | 2021-07-28T01:03:35.000Z |
class Rtf_Exporter
unloadable
include RTF
@@cStyles = {}
@@pStyles = {}
private
def self.initializeClass
@@cStyles['CELL'] = CharacterStyle.new
@@cStyles['CELL'].font = Font.new(Font::ROMAN, 'Times New Roman')
@@cStyles['CELL'].bold = true
@@cStyles['HEADER'] = CharacterStyle.new
@@cStyles['HEADER'].bold = true
@@cStyles['HEADER'].font_size = 28
@@pStyles = {}
@@pStyles['HEADER'] = ParagraphStyle.new
@@pStyles['HEADER'].justification = ParagraphStyle::CENTER_JUSTIFY
end
def self.getTestCases(suite_id, project)
issues = Issue.where({ project_id: project.id }).collect { |i| i.id }
test_cases = TestCase.where({ issue_id: issues })
if suite_id >= 0
test_cases = test_cases.select { |tc|
tc.in_suite?(suite_id, project.id)
}
end
test_cases
end
def self.writeTitle(document, project_name, suite_id)
document.paragraph(@@pStyles['HEADER']) do |p|
p.apply(@@cStyles['HEADER']) do |s|
s << 'Test specification for'
end
end
document.paragraph(@@pStyles['HEADER']) do |p|
p.apply(@@cStyles['HEADER']) do |s|
s << project_name
if suite_id >= 0
s << " - #{ExecutionSuite.find_by_id(suite_id).name}"
end
end
end
end
def self.writeTable(document, test_cases)
i = 0
test_case = nil
document.table((test_cases.length * 5), 2, 2000, 6000) { |t|
t.border_width = 1
t.entries.each { |r|
if (i % 5) != 0
node = TableCellNode.new(r)
node.width = 8000
r.children = [node]
r.border_width = 1
end
case (i % 5)
when 0
test_case = test_cases[i / 5]
r[0].apply(@@cStyles['CELL']) { |cell|
cell << ' ID '
cell << test_case.issue.id
}
r[1].apply(@@cStyles['CELL']) { |cell|
cell << ' Title: '
}
r[1] << test_case.issue.subject
when 1
r[0].apply(@@cStyles['CELL']) { |cell|
cell << ' Description:'
2.times { cell.line_break }
}
count = 0
test_case.issue.description.each_line { |line|
count += 1
r[0] << line
r[0].line_break
}
when 2
r[0].apply(@@cStyles['CELL']) { |cell|
cell << ' Priority: '
}
r[0] << test_case.issue.priority.name
when 3
r[0].apply(@@cStyles['CELL']) { |cell|
cell << ' Created by: '
}
r[0] << test_case.issue.author.name
when 4
r[0].border_width = 0
end
i += 1
}
}
end
initializeClass
public
def self.exportTestSuiteSpec(suite_id, project)
test_cases = getTestCases(suite_id, project)
document = Document.new(Font.new(Font::ROMAN, 'Times New Roman'))
writeTitle(document, project.name, suite_id)
writeTable(document, test_cases)
document.to_rtf
end
end
| 23.161017 | 71 | 0.59861 |
237c763777a4d88672ec095a010fe26bd7120899 | 4,027 | kt | Kotlin | app/src/main/java/org/simple/clinic/teleconsultlog/success/TeleConsultSuccessScreen.kt | ygnthetzaw/simple-android | 4e8382d4b45e75d8231a001ca0832cda4ae7c852 | [
"MIT"
] | 13 | 2018-06-22T20:36:04.000Z | 2018-07-10T07:51:12.000Z | app/src/main/java/org/simple/clinic/teleconsultlog/success/TeleConsultSuccessScreen.kt | ygnthetzaw/simple-android | 4e8382d4b45e75d8231a001ca0832cda4ae7c852 | [
"MIT"
] | 78 | 2018-05-11T09:14:19.000Z | 2018-07-10T11:52:18.000Z | app/src/main/java/org/simple/clinic/teleconsultlog/success/TeleConsultSuccessScreen.kt | ygnthetzaw/simple-android | 4e8382d4b45e75d8231a001ca0832cda4ae7c852 | [
"MIT"
] | 1 | 2018-06-25T20:44:41.000Z | 2018-06-25T20:44:41.000Z | package org.simple.clinic.teleconsultlog.success
import android.content.Context
import android.os.Bundle
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import androidx.fragment.app.Fragment
import com.jakewharton.rxbinding3.view.clicks
import com.spotify.mobius.functions.Consumer
import io.reactivex.Observable
import kotlinx.parcelize.Parcelize
import org.simple.clinic.R
import org.simple.clinic.databinding.ScreenTeleconsultSuccessBinding
import org.simple.clinic.di.injector
import org.simple.clinic.home.HomeScreenKey
import org.simple.clinic.navigation.v2.Router
import org.simple.clinic.navigation.v2.ScreenKey
import org.simple.clinic.navigation.v2.fragments.BaseScreen
import org.simple.clinic.patient.Gender
import org.simple.clinic.patient.Patient
import org.simple.clinic.patient.displayLetterRes
import org.simple.clinic.teleconsultlog.prescription.TeleconsultPrescriptionScreen
import org.simple.clinic.util.UserClock
import java.util.UUID
import javax.inject.Inject
class TeleConsultSuccessScreen : BaseScreen<
TeleConsultSuccessScreen.Key,
ScreenTeleconsultSuccessBinding,
TeleConsultSuccessModel,
TeleConsultSuccessEvent,
TeleConsultSuccessEffect,
Unit>(), TeleConsultSuccessScreenUiActions, TeleConsultSuccessUi {
private val prescriptionNoButton
get() = binding.prescriptionNoButton
private val prescriptionYesButton
get() = binding.prescriptionYesButton
private val toolbar
get() = binding.toolbar
@Inject
lateinit var effectHandler: TeleConsultSuccessEffectHandler.Factory
@Inject
lateinit var router: Router
@Inject
lateinit var userClock: UserClock
override fun defaultModel() = TeleConsultSuccessModel.create(screenKey.patientUuid, screenKey.teleconsultRecordId)
override fun bindView(layoutInflater: LayoutInflater, container: ViewGroup?) =
ScreenTeleconsultSuccessBinding.inflate(layoutInflater, container, false)
override fun createEffectHandler(viewEffectsConsumer: Consumer<Unit>) =
effectHandler.create(this).build()
override fun createUpdate() = TeleConsultSuccessUpdate()
override fun createInit() = TeleConsultSuccessInit()
override fun events(): Observable<TeleConsultSuccessEvent> =
Observable
.merge(
yesClicks(),
noClicks()
)
override fun uiRenderer() = TeleConsultSuccessUiRenderer(this)
override fun onAttach(context: Context) {
super.onAttach(context)
context.injector<Injector>().inject(this)
}
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
backClicks()
}
private fun noClicks() = prescriptionNoButton
.clicks()
.map { NoPrescriptionClicked }
private fun yesClicks() = prescriptionYesButton
.clicks()
.map { YesPrescriptionClicked }
private fun backClicks() {
toolbar.setNavigationOnClickListener {
router.pop()
}
}
override fun goToHomeScreen() {
router.clearHistoryAndPush(HomeScreenKey)
}
override fun goToPrescriptionScreen(patientUuid: UUID, teleconsultRecordId: UUID) {
router.push(TeleconsultPrescriptionScreen.Key(patientUuid = patientUuid, teleconsultRecordId = teleconsultRecordId))
}
override fun showPatientInfo(patient: Patient) {
val ageValue = patient.ageDetails.estimateAge(userClock)
val genderInitial: Gender = patient.gender
toolbar.title = resources.getString(
R.string.screen_teleconsult_success_patient_information,
patient.fullName,
resources.getString(genderInitial.displayLetterRes),
ageValue.toString())
}
interface Injector {
fun inject(target: TeleConsultSuccessScreen)
}
@Parcelize
data class Key(
val patientUuid: UUID,
val teleconsultRecordId: UUID,
override val analyticsName: String = "TeleConsultation Success"
) : ScreenKey() {
override fun instantiateFragment(): Fragment = TeleConsultSuccessScreen()
}
}
| 30.976923 | 120 | 0.771542 |
2603dbff074afdb188c6fcbedddf1660fa1e38ab | 861 | java | Java | Examples/src/main/java/com/groupdocs/metadata/examples/advanced_usage/managing_metadata_for_specific_formats/image/jpeg/JpegDetectBarcodes.java | groupdocs-metadata/GroupDocs.Metadata-for-Java | 2252697644505e1701c35d98299a0061c57d576c | [
"MIT"
] | 5 | 2017-12-15T19:32:16.000Z | 2021-07-02T06:20:18.000Z | Examples/src/main/java/com/groupdocs/metadata/examples/advanced_usage/managing_metadata_for_specific_formats/image/jpeg/JpegDetectBarcodes.java | groupdocs-metadata/GroupDocs.Metadata-for-Java | 2252697644505e1701c35d98299a0061c57d576c | [
"MIT"
] | null | null | null | Examples/src/main/java/com/groupdocs/metadata/examples/advanced_usage/managing_metadata_for_specific_formats/image/jpeg/JpegDetectBarcodes.java | groupdocs-metadata/GroupDocs.Metadata-for-Java | 2252697644505e1701c35d98299a0061c57d576c | [
"MIT"
] | 6 | 2017-11-21T07:55:00.000Z | 2021-09-16T04:19:25.000Z | // <copyright company="Aspose Pty Ltd">
// Copyright (C) 2011-2021 GroupDocs. All Rights Reserved.
// </copyright>
package com.groupdocs.metadata.examples.advanced_usage.managing_metadata_for_specific_formats.image.jpeg;
import com.groupdocs.metadata.Metadata;
import com.groupdocs.metadata.core.JpegRootPackage;
import com.groupdocs.metadata.examples.Constants;
/**
* This code snippet demonstrates how to detect barcodes in a JPEG image.
*/
public class JpegDetectBarcodes {
public static void run() {
try (Metadata metadata = new Metadata(Constants.JpegWithBarcodes)) {
JpegRootPackage root = metadata.getRootPackageGeneric();
String[] barcodeTypes = root.detectBarcodeTypes();
for (String barcodeType : barcodeTypes) {
System.out.println(barcodeType);
}
}
}
}
| 31.888889 | 105 | 0.704994 |
878b9756e6f7a0d900ce7c791ff4d481b0f45f87 | 855 | html | HTML | src/main/default/lwc/question/question.html | splahitk/quiz-host-app | ee16925ef62d7b76e2b4c4664d69c8ca7e24f4a6 | [
"CC0-1.0"
] | 1 | 2021-11-01T15:55:34.000Z | 2021-11-01T15:55:34.000Z | src/main/default/lwc/question/question.html | splahitk/quiz-host-app | ee16925ef62d7b76e2b4c4664d69c8ca7e24f4a6 | [
"CC0-1.0"
] | 1 | 2020-01-20T05:06:06.000Z | 2020-01-20T05:06:06.000Z | src/main/default/lwc/question/question.html | splahitk/quiz-host-app | ee16925ef62d7b76e2b4c4664d69c8ca7e24f4a6 | [
"CC0-1.0"
] | 1 | 2022-02-26T13:47:33.000Z | 2022-02-26T13:47:33.000Z | <template>
<h1>{questionObject.Label__c}</h1>
<div class="answerContainer">
<div class="answer">
<div onclick={handleAnswerClick} data-answer="A">
<span>A. </span> {questionObject.Answer_A__c}
</div>
</div>
<div class="answer">
<div onclick={handleAnswerClick} data-answer="B">
<span>B. </span> {questionObject.Answer_B__c}
</div>
</div>
<div class="answer">
<div onclick={handleAnswerClick} data-answer="C">
<span>C. </span> {questionObject.Answer_C__c}
</div>
</div>
<div class="answer">
<div onclick={handleAnswerClick} data-answer="D">
<span>D. </span> {questionObject.Answer_D__c}
</div>
</div>
</div>
</template>
| 32.884615 | 61 | 0.509942 |
0bdd6cc7dd472b7830337869263a3dbf7b3ff59e | 399 | js | JavaScript | src/components/animations/icons.js | subject026/subject026.github.io | 8ef6017f48e6bbee6c9a6ec71acbb979a27ce38c | [
"MIT"
] | null | null | null | src/components/animations/icons.js | subject026/subject026.github.io | 8ef6017f48e6bbee6c9a6ec71acbb979a27ce38c | [
"MIT"
] | null | null | null | src/components/animations/icons.js | subject026/subject026.github.io | 8ef6017f48e6bbee6c9a6ec71acbb979a27ce38c | [
"MIT"
] | null | null | null | import { TimelineMax, Power1 } from "gsap"
export const animateIcons = ({ cvIconRef, githubIconRef, twitterIconRef }) => {
const tl = new TimelineMax()
tl.staggerFrom(
[cvIconRef.current, githubIconRef.current, twitterIconRef.current],
0.6,
{
opacity: 0,
scale: 0,
x: 5,
y: 20,
ease: "elastic.out(1, 1)",
},
0.1,
"-=0.6"
)
return tl
}
| 19 | 79 | 0.576441 |
134ba071fb5f02c4904dc670a6f0136a472e35b8 | 4,282 | h | C | Sources/Elastos/Frameworks/Droid/Base/Core/inc/elastos/droid/view/inputmethod/CInputMethodSubtypeArray.h | jingcao80/Elastos | d0f39852356bdaf3a1234743b86364493a0441bc | [
"Apache-2.0"
] | 7 | 2017-07-13T10:34:54.000Z | 2021-04-16T05:40:35.000Z | Sources/Elastos/Frameworks/Droid/Base/Core/inc/elastos/droid/view/inputmethod/CInputMethodSubtypeArray.h | jingcao80/Elastos | d0f39852356bdaf3a1234743b86364493a0441bc | [
"Apache-2.0"
] | null | null | null | Sources/Elastos/Frameworks/Droid/Base/Core/inc/elastos/droid/view/inputmethod/CInputMethodSubtypeArray.h | jingcao80/Elastos | d0f39852356bdaf3a1234743b86364493a0441bc | [
"Apache-2.0"
] | 9 | 2017-07-13T12:33:20.000Z | 2021-06-19T02:46:48.000Z | //=========================================================================
// Copyright (C) 2012 The Elastos Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//=========================================================================
#ifndef __ELASTOS_DROID_VIEW_INPUTMETHOD_CINPUTMETHODSUBTYPEARRAY_H__
#define __ELASTOS_DROID_VIEW_INPUTMETHOD_CINPUTMETHODSUBTYPEARRAY_H__
#include "_Elastos_Droid_View_InputMethod_CInputMethodSubtypeArray.h"
#include <elastos/core/Object.h>
using Elastos::Core::Object;
using Elastos::Utility::IList;
namespace Elastos {
namespace Droid {
namespace View {
namespace InputMethod {
/**
* An array-like container that stores multiple instances of {@link InputMethodSubtype}.
*
* <p>This container is designed to reduce the risk of {@link TransactionTooLargeException}
* when one or more instancess of {@link InputMethodInfo} are transferred through IPC.
* Basically this class does following three tasks.</p>
* <ul>
* <li>Applying compression for the marshalled data</li>
* <li>Lazily unmarshalling objects</li>
* <li>Caching the marshalled data when appropriate</li>
* </ul>
*
* @hide
*/
CarClass(CInputMethodSubtypeArray)
, public Object
, public IInputMethodSubtypeArray
, public IParcelable
{
public:
CAR_INTERFACE_DECL()
CAR_OBJECT_DECL()
CARAPI constructor();
/**
* Create a new instance of {@link InputMethodSubtypeArray} from an existing list of
* {@link InputMethodSubtype}.
*
* @param subtypes A list of {@link InputMethodSubtype} from which
* {@link InputMethodSubtypeArray} will be created.
*/
CARAPI constructor(
/* [in] */ IList* subtypes);
/**
* Unmarshall an instance of {@link InputMethodSubtypeArray} from a given {@link Parcel}
* object.
*
* @param source A {@link Parcel} object from which {@link InputMethodSubtypeArray} will be
* unmarshalled.
*/
CARAPI ReadFromParcel(
/* [in] */ IParcel* source);
/**
* Marshall the instance into a given {@link Parcel} object.
*
* <p>This methods may take a bit additional time to compress data lazily when called
* first time.</p>
*
* @param source A {@link Parcel} object to which {@link InputMethodSubtypeArray} will be
* marshalled.
*/
CARAPI WriteToParcel(
/* [in] */ IParcel* dest);
/**
* Return {@link InputMethodSubtype} specified with the given index.
*
* <p>This methods may take a bit additional time to decompress data lazily when called
* first time.</p>
*
* @param index The index of {@link InputMethodSubtype}.
*/
CARAPI Get(
/* [in] */ Int32 index,
/* [out] */ IInputMethodSubtype** result);
/**
* Return the number of {@link InputMethodSubtype} objects.
*/
CARAPI GetCount(
/* [out] */ Int32* result);
private:
static AutoPtr<ArrayOf<Byte> > Marshall(
/* [in] */ ArrayOf<IInputMethodSubtype*>* array);
static AutoPtr<ArrayOf<IInputMethodSubtype*> > Unmarshall(
/* [in] */ ArrayOf<Byte>* data);
static AutoPtr<ArrayOf<Byte> > Compress(
/* [in] */ ArrayOf<Byte>* data);
static AutoPtr<ArrayOf<Byte> > Decompress(
/* [in] */ ArrayOf<Byte>* data,
/* [in] */ Int32 expectedSize);
private:
static const String TAG;
Object mLockObject;
Int32 mCount;
/* volatile */ AutoPtr<ArrayOf<IInputMethodSubtype*> > mInstance;
/* volatile */ AutoPtr<ArrayOf<Byte> > mCompressedData;
/* volatile */ Int32 mDecompressedSize;
};
} // namespace InputMethod
} // namespace View
} // namespace Droid
} // namespace Elastos
#endif // __ELASTOS_DROID_VIEW_INPUTMETHOD_CINPUTMETHODSUBTYPEARRAY_H__
| 31.028986 | 95 | 0.656235 |
163b389e91b9ce381ce43b77bd922f4308b69cbd | 913 | ts | TypeScript | app/components/menu-bar.component.ts | YaelMendes/GeoMapStories | df744aa757079074ddff3af8240d2f4905a67c54 | [
"MIT"
] | null | null | null | app/components/menu-bar.component.ts | YaelMendes/GeoMapStories | df744aa757079074ddff3af8240d2f4905a67c54 | [
"MIT"
] | null | null | null | app/components/menu-bar.component.ts | YaelMendes/GeoMapStories | df744aa757079074ddff3af8240d2f4905a67c54 | [
"MIT"
] | null | null | null | import {Component, Input, Injectable} from '@angular/core';
import {User} from '../objects/user';
import {DataService} from '../services/data.service';
import {VARIABLES} from '../AppSettings';
@Component({
selector: 'menu-bar',
templateUrl: '../html/menu-bar.component.html',
styleUrls: ['../css/menu-bar.component.css']
})
export class MenuBarComponent {
model: User = new User('yafou');
connected: boolean=false;
constructor(private dataService: DataService) {
}
onSubmit() {
console.log('onSubmit is called ! model=' + this.model);
this.tryConnect(this.model);
}
private tryConnect(model: User) {
if (VARIABLES.MODE_TEST) {
this.connected=true;
this.model = this.retrieveUserInfos();
} else {
//TODO: call backend to check user/pwd and retrieve infos/stories/....
}
}
private retrieveUserInfos(): User {
return this.model;
}
}
| 20.75 | 76 | 0.659365 |
407cc58f6332cad601adf4604b758ab8ec38d70e | 2,396 | py | Python | NVLL/analysis/word_freq.py | jennhu/vmf_vae_nlp | 95a39fa9f7a0659e432475e8dfb9a46e305d53b7 | [
"MIT"
] | 159 | 2018-08-31T15:57:36.000Z | 2022-03-27T15:31:38.000Z | NVLL/analysis/word_freq.py | jennhu/vmf_vae_nlp | 95a39fa9f7a0659e432475e8dfb9a46e305d53b7 | [
"MIT"
] | 9 | 2018-10-11T15:58:50.000Z | 2019-04-16T03:13:33.000Z | NVLL/analysis/word_freq.py | jennhu/vmf_vae_nlp | 95a39fa9f7a0659e432475e8dfb9a46e305d53b7 | [
"MIT"
] | 21 | 2018-09-01T17:57:20.000Z | 2021-12-17T03:31:01.000Z | import os
def count(dic, fname):
with open(fname, 'r') as fd:
lines = fd.read().splitlines()
filtered_sents = []
for l in lines:
words = l.split(" ")
_ratio = comp_unk_ratio(words)
if _ratio <= 0.05:
filtered_sents.append(words)
for w in words:
if w in dic:
dic[w] += 1
else:
dic[w] = 1
return dic, filtered_sents
def read_sent():
pass
def comp_unk_ratio(sent):
total = len(sent) + 0.000001
cnt = 0
for w in sent:
if w == '<unk>':
cnt += 1
return cnt / total
def comp_ratio():
pass
def generate_based_on_word_freq():
count_word_freq()
def generate_based_on_sentiment():
pass
def count_word_freq():
d = {}
os.chdir("../../data/yelp")
d, _ = count(d, "valid.txt")
d, filtered_sents_test = count(d, "test.txt")
sorted_d = sorted(d, key=d.get, reverse=True)
print("Len of trimmed vocab {}".format(len(sorted_d)))
print("Num of Test samples after trimming {}".format(len(filtered_sents_test)))
uncommon = sorted_d[-10000:]
print(uncommon)
divide = 5
every = int(len(filtered_sents_test) / divide)
sent_dictionary = {}
for sent in filtered_sents_test:
total = len(sent)
cnt = 0.
for w in sent:
if w in uncommon:
cnt += 1
sent_dictionary[" ".join(sent)] = cnt / total
sorted_sents = sorted(sent_dictionary, key=sent_dictionary.get, reverse=True)
for piece in range(divide):
start = int(piece * every)
end = int((piece + 1) * every)
tmp_sents = sorted_sents[start:end]
with open("test-rare-" + str(piece) + ".txt", 'w') as fd:
fd.write("\n".join(tmp_sents))
if __name__ == "__main__":
bank_size = 1000
# Generate 2 set of sentences.
# Before beginning
# if a sentence has more than 10% UNK, remove it.
############
# Based on WordFreq Vocab size=15K
# Divide
# Top 1K sample with largest Common Word Ratio (common word= top3K freq word)
# Top 1K sample with largest Uncommon Word Ratio (uncommon word= top3K infreq word)
generate_based_on_word_freq()
############
# Based on Sentiment (sample from 5star and 1star)
#############
| 26.32967 | 87 | 0.563022 |
05ce57a776cf54222703eb40ae51c4ca01836f54 | 122 | rb | Ruby | app/mailers/application_mailer.rb | ministryofjustice/parliamentary-questions | 6a60462031fad83876139a1028912b521a83897f | [
"MIT"
] | 2 | 2016-08-10T13:23:26.000Z | 2020-03-28T00:03:23.000Z | app/mailers/application_mailer.rb | ministryofjustice/parliamentary-questions | 6a60462031fad83876139a1028912b521a83897f | [
"MIT"
] | 144 | 2015-02-05T16:37:34.000Z | 2022-03-21T12:09:36.000Z | app/mailers/application_mailer.rb | ministryofjustice/parliamentary-questions | 6a60462031fad83876139a1028912b521a83897f | [
"MIT"
] | 6 | 2015-03-07T18:12:04.000Z | 2021-04-11T06:18:04.000Z | class ApplicationMailer < GovukNotifyRails::Mailer
default from: 'noreply@digital.justice.gov.uk'
layout 'mailer'
end
| 24.4 | 50 | 0.786885 |
cb22452611bb148e6407880269a36d280ff1415e | 895 | go | Go | api/api.go | ddanurwenda/relecho | 0e846d1726572be82ea80b27b231ccfb4409de22 | [
"MIT"
] | null | null | null | api/api.go | ddanurwenda/relecho | 0e846d1726572be82ea80b27b231ccfb4409de22 | [
"MIT"
] | null | null | null | api/api.go | ddanurwenda/relecho | 0e846d1726572be82ea80b27b231ccfb4409de22 | [
"MIT"
] | null | null | null | package api
import (
"github.com/ddanurwenda/relecho/api/handler"
"github.com/ddanurwenda/relecho/scores"
"github.com/ddanurwenda/relecho/todos"
"github.com/go-chi/chi"
chimid "github.com/go-chi/chi/middleware"
"github.com/go-rel/rel"
"github.com/goware/cors"
)
// NewMux api.
func NewMux(repository rel.Repository) *chi.Mux {
var (
mux = chi.NewMux()
scores = scores.New(repository)
todos = todos.New(repository, scores)
healthzHandler = handler.NewHealthz()
todosHandler = handler.NewTodos(repository, todos)
scoreHandler = handler.NewScore(repository)
)
healthzHandler.Add("database", repository)
mux.Use(chimid.RequestID)
mux.Use(chimid.RealIP)
mux.Use(chimid.Recoverer)
mux.Use(cors.AllowAll().Handler)
mux.Mount("/healthz", healthzHandler)
mux.Mount("/todos", todosHandler)
mux.Mount("/score", scoreHandler)
return mux
}
| 24.189189 | 54 | 0.713966 |
37e906fe9a0410cbdbfb46db3d08528993917a34 | 805 | lua | Lua | src/server/Library/UI/Panel/Scripts/Library/Components/OutlinedButton/init.lua | itech2018/commander | 36baa7e7bd57b60fc78faa4ed36a756b8d84f6c9 | [
"MIT"
] | null | null | null | src/server/Library/UI/Panel/Scripts/Library/Components/OutlinedButton/init.lua | itech2018/commander | 36baa7e7bd57b60fc78faa4ed36a756b8d84f6c9 | [
"MIT"
] | null | null | null | src/server/Library/UI/Panel/Scripts/Library/Components/OutlinedButton/init.lua | itech2018/commander | 36baa7e7bd57b60fc78faa4ed36a756b8d84f6c9 | [
"MIT"
] | null | null | null | local module = {}
local reaction = function(Button: guiobject, State: string)
module.Latte.Modules.Animator.Button.Outlined[State](Button)
end
module.new = function(Name: string, Text: string?, Parent: instance, Callback: (string) -> void)
local Comp = script.Comp:Clone()
Comp.Name = Name
Comp.Container.Title.Text = Text or Name
Comp.Container.Title.Font = module.Latte.Modules.Stylesheet.Fonts.Semibold
Comp.Background.BackgroundColor3 = module.Latte.Modules.Stylesheet.ThemeColor
Comp.Background.Outline.ImageColor3 = module.Latte.Modules.Stylesheet.ThemeColor
Comp.Container.Title.TextColor3 = module.Latte.Modules.Stylesheet.ThemeColor
module.Latte.Modules.Trigger.new(Comp, reaction, 3, false):Connect(function()
Callback()
end)
Comp.Parent = Parent
return Comp
end
return module | 33.541667 | 96 | 0.781366 |
875976c98067ea1107672f3853664f7fbeefff5a | 1,715 | html | HTML | app/install/view/public/base.html | finndy/finndycloud | 1863b2c060142a23b29f57b725f302b12d49524b | [
"ECL-2.0",
"Apache-2.0"
] | 48 | 2018-03-01T07:39:57.000Z | 2018-06-15T09:12:42.000Z | app/install/view/public/base.html | wangtaoceo/finndycloud | 374eb864d3a1e5c4945304453aafd39dacd53086 | [
"ECL-2.0",
"Apache-2.0"
] | 2 | 2018-03-02T02:44:22.000Z | 2018-03-02T03:06:56.000Z | app/install/view/public/base.html | wangtaoceo/finndycloud | 374eb864d3a1e5c4945304453aafd39dacd53086 | [
"ECL-2.0",
"Apache-2.0"
] | 24 | 2018-03-01T10:58:02.000Z | 2018-05-25T01:47:24.000Z | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>{$product_name}系统安装</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link type="text/css" rel="stylesheet" href="__STATIC__/assets/css/bootstrap.min.css">
<link type="text/css" rel="stylesheet" href="__STATIC__/assets/css/font-awesome.min.css">
<link type="text/css" rel="stylesheet" href="__STATIC__/assets/css/ace.min.css"/>
<link type="text/css" rel="stylesheet" href="__STATIC__/assets/css/ace-skins.min.css"/>
<link type="text/css" rel="stylesheet" href="__STATIC__/assets/css/base.css"/>
<script type="text/javascript" src="__STATIC__/assets/js/jquery-1.10.2.min.js"></script>
</head>
<body style="background: rgb(230, 234, 234)">
<div class="container">
<div class="margin" style="margin: 10px 90px 80px;">
<div class="text-center header-title margin-top">
<h1>{$product_name}{if session('update')}升级{else/}安装{/if}引导</h1>
</div>
<div class="progress-tool margin-top">
<span class="label label-xlg label-{$status.index} arrowed-right" style="width: 18%;">系统安装</span>
<span class="label label-xlg label-{$status.check} arrowed-in arrowed-right" style="width: 18%;">环境检测</span>
<span class="label label-xlg label-{$status.config} arrowed-in arrowed-right" style="width: 18%;">系统配置</span>
<span class="label label-xlg label-{$status.sql} arrowed-in arrowed-right" style="width: 18%;">数据库安装</span>
<span class="label label-xlg label-{$status.complete} arrowed-in " style="width: 18%;">安装完成</span>
</div>
<div class="article margin-top">
{block name="main"}{/block}
</div>
</div>
</div>
</body>
</html> | 47.638889 | 112 | 0.690379 |
35ceb26bd20d365340b5ab6bd0b7b6610a1bc3a8 | 4,640 | kt | Kotlin | app/src/main/java/io/github/amanshuraikwar/kryptonite/ui/MainActivity.kt | amanshuraikwar/kyptonite | 2717ac8905805b80696527ed3d123b1f0141c114 | [
"Apache-2.0"
] | null | null | null | app/src/main/java/io/github/amanshuraikwar/kryptonite/ui/MainActivity.kt | amanshuraikwar/kyptonite | 2717ac8905805b80696527ed3d123b1f0141c114 | [
"Apache-2.0"
] | null | null | null | app/src/main/java/io/github/amanshuraikwar/kryptonite/ui/MainActivity.kt | amanshuraikwar/kyptonite | 2717ac8905805b80696527ed3d123b1f0141c114 | [
"Apache-2.0"
] | null | null | null | package io.github.amanshuraikwar.kryptonite.ui
import android.os.Bundle
import android.view.View
import android.widget.ArrayAdapter
import android.widget.TextView
import android.widget.Toast
import androidx.lifecycle.Observer
import androidx.lifecycle.ViewModelProvider
import androidx.recyclerview.widget.LinearLayoutManager
import com.google.android.material.snackbar.Snackbar
import dagger.android.support.DaggerAppCompatActivity
import io.github.amanshuraikwar.kryptonite.R
import io.github.amanshuraikwar.kryptonite.addErrorTextWatcher
import io.github.amanshuraikwar.kryptonite.data.domain.result.EventObserver
import io.github.amanshuraikwar.kryptonite.ui.list.ExchangeRateListItem
import io.github.amanshuraikwar.kryptonite.ui.list.HeaderListItem
import io.github.amanshuraikwar.kryptonite.ui.list.RecyclerViewTypeFactoryGenerated
import io.github.amanshuraikwar.kryptonite.viewModelProvider
import io.github.amanshuraikwar.multiitemlistadapter.MultiItemAdapter
import io.github.amanshuraikwar.multiitemlistadapter.RecyclerViewListItem
import kotlinx.android.synthetic.main.activity_main.*
import org.threeten.bp.format.DateTimeFormatter
import javax.inject.Inject
class MainActivity : DaggerAppCompatActivity() {
@Inject lateinit var viewModelFactory: ViewModelProvider.Factory
lateinit var viewModel: MainViewModel
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
viewModel = viewModelProvider(viewModelFactory)
viewModel.displaySupportedCurrencies.observe(
this,
Observer {
val adapter = ArrayAdapter<String>(
this, R.layout.item_drop_down, it.map { it.code }
)
currencySpinner.adapter = adapter
}
)
viewModel.loading.observe(
this,
EventObserver {
pb.visibility = if (it) View.VISIBLE else View.GONE
amountEt.isEnabled = !it
currencySpinner.isEnabled = !it
}
)
viewModel.displayExchangeRates.observe(
this,
Observer {
itemsRv.adapter = MultiItemAdapter(
this,
RecyclerViewTypeFactoryGenerated(),
mutableListOf<RecyclerViewListItem>().apply {
val amount = amountEt.text.toString().toFloat()
add(HeaderListItem("Exchange Rates"))
add(
HeaderListItem(
"Last Updated: ${it[0].lastUpdated.format(DateTimeFormatter.ofPattern("hh:mm a, dd-MMMM-yyyy"))}"
)
)
addAll(
it.map {
ExchangeRateListItem(it, amount) as RecyclerViewListItem
}
)
add(HeaderListItem("That's All Folks"))
}
)
}
)
viewModel.showSnackBar.observe(
this,
EventObserver {
if (currencySpinner.adapter == null) {
showRetrySnackbar(it)
} else {
showSnackbar(it)
}
}
)
itemsRv.layoutManager = LinearLayoutManager(this)
searchEfab.setOnClickListener {
if (amountEt.text.isNullOrEmpty()) {
amountTil.error = "Enter amount."
return@setOnClickListener
}
val selectedCurrency = (currencySpinner.selectedView as TextView).text.toString()
viewModel.searchExchangeRates(
amountEt.text.toString(),
selectedCurrency
)
}
amountEt.addErrorTextWatcher(amountTil)
// if activity was recreated
// and currencies were not loaded yet
// load them again
if (savedInstanceState != null) {
if (currencySpinner.adapter == null) {
viewModel.getSupportedCurrencies()
}
}
}
private fun showSnackbar(msg: String) {
Snackbar.make(parentCl, msg, Snackbar.LENGTH_LONG).show()
}
private fun showRetrySnackbar(msg: String) {
Snackbar
.make(parentCl, msg, Snackbar.LENGTH_INDEFINITE)
.apply {
setAction("Retry") { viewModel.getSupportedCurrencies() }
}
.show()
}
}
| 33.868613 | 129 | 0.598491 |
e783b054262a29b6ab0c32c45f9d5a2ad77d7315 | 2,524 | js | JavaScript | public/front_assets/js/scripts.js | LoiHoDHV/webtintucnhom4phpmySql- | 1896c9233579ffab207dacd6502429e2402e89a0 | [
"MIT"
] | null | null | null | public/front_assets/js/scripts.js | LoiHoDHV/webtintucnhom4phpmySql- | 1896c9233579ffab207dacd6502429e2402e89a0 | [
"MIT"
] | null | null | null | public/front_assets/js/scripts.js | LoiHoDHV/webtintucnhom4phpmySql- | 1896c9233579ffab207dacd6502429e2402e89a0 | [
"MIT"
] | null | null | null | /*!
* Start Bootstrap - Blog Home v5.0.7 (https://startbootstrap.com/template/blog-home)
* Copyright 2013-2021 Start Bootstrap
* Licensed under MIT (https://github.com/StartBootstrap/startbootstrap-blog-home/blob/master/LICENSE)
*/
// This file is intentionally blank
// Use this file to add JavaScript to your project
// $(document).ready(function(){
// $('#btnSendSub').click(function(){
// alert(123);
// });
// });
// $('#btnSendSub').click(function(){
// var txtEmailSub = $('#txtEmailSub').val();
// var _token = $('#_token').val();
// // check email co trong hay khong
// var reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
// if (reg.test(txtEmailSub) == false)
// {
// alert('Email không hợp lệ');
// return false;
// }
// $.ajax({
// type: 'POST',
// url: url + "/dang-ky-nhan-tin",
// data: {
// txtEmailSub: txtEmailSub,
// _token: _token
// },
// success: function(data) {
// if (data == 'error_exit_email'){
// alert("Email này đã có , vui lòng kiểm tra lại");
// }else if(data == 'error'){
// alert("Lỗi thêm email");
// }else{
// alert("Email của bạn đã được đăng kí");
// }
// // if (data == 'finish'){
// // var level = 2;
// // var title = 'Thông báo';
// // var message = '<i class="fas fa-check"></i> Chúng tôi đã nháºn được phản hồi cá»§a bạn và sẽ liên hệ vá»›i bạn trong thá»i gian sá»›m nhất, xin cám Æ¡n !';
// // showMessage(level, title, message);
// // document.getElementById('txtName').value = '';
// // document.getElementById('txtPhone').value = '';
// // document.getElementById('txtEmail').value = '';
// // document.getElementById('txtAddress').value = '';
// // document.getElementById('txtMessage').value = '';
// // }else{
// // var level = 1;
// // var title = 'Thông báo';
// // var message = '<i class="fas fa-exclamation-triangle"></i> Có lá»—i xãy ra trong quá trình gá»i tư vấn/liên hệ, vui lòng liên hệ Admin.';
// // showMessage(level, title, message);
// // }
// }
// });
// });
| 32.779221 | 202 | 0.472662 |