├── .gitignore ├── public ├── assets │ ├── fast.png │ ├── logo.png │ ├── mp3.png │ ├── mock_x.png │ ├── mock_y.png │ ├── pattern.png │ ├── unlimited.png │ ├── watermark.png │ ├── unlimited-2.png │ └── watermark-2.png ├── favicon │ ├── favicon.ico │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── apple-touch-icon.png │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ └── site.webmanifest ├── index.html ├── js │ └── download.js ├── download.html └── css │ └── main.css ├── tailwind.config.js ├── package.json ├── README.md ├── .github └── workflows │ └── static.yml ├── src └── css │ └── main.css └── LICENSE /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /public/assets/fast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdallah-sameh-ragab/tiktok-downloader/HEAD/public/assets/fast.png -------------------------------------------------------------------------------- /public/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdallah-sameh-ragab/tiktok-downloader/HEAD/public/assets/logo.png -------------------------------------------------------------------------------- /public/assets/mp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdallah-sameh-ragab/tiktok-downloader/HEAD/public/assets/mp3.png -------------------------------------------------------------------------------- /public/assets/mock_x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdallah-sameh-ragab/tiktok-downloader/HEAD/public/assets/mock_x.png -------------------------------------------------------------------------------- /public/assets/mock_y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdallah-sameh-ragab/tiktok-downloader/HEAD/public/assets/mock_y.png -------------------------------------------------------------------------------- /public/assets/pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdallah-sameh-ragab/tiktok-downloader/HEAD/public/assets/pattern.png -------------------------------------------------------------------------------- /public/assets/unlimited.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdallah-sameh-ragab/tiktok-downloader/HEAD/public/assets/unlimited.png -------------------------------------------------------------------------------- /public/assets/watermark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdallah-sameh-ragab/tiktok-downloader/HEAD/public/assets/watermark.png -------------------------------------------------------------------------------- /public/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdallah-sameh-ragab/tiktok-downloader/HEAD/public/favicon/favicon.ico -------------------------------------------------------------------------------- /public/assets/unlimited-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdallah-sameh-ragab/tiktok-downloader/HEAD/public/assets/unlimited-2.png -------------------------------------------------------------------------------- /public/assets/watermark-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdallah-sameh-ragab/tiktok-downloader/HEAD/public/assets/watermark-2.png -------------------------------------------------------------------------------- /public/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdallah-sameh-ragab/tiktok-downloader/HEAD/public/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdallah-sameh-ragab/tiktok-downloader/HEAD/public/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdallah-sameh-ragab/tiktok-downloader/HEAD/public/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdallah-sameh-ragab/tiktok-downloader/HEAD/public/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdallah-sameh-ragab/tiktok-downloader/HEAD/public/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | module.exports = { 3 | content: ["./public/**/*.{html,js}"], 4 | theme: { 5 | extend: {}, 6 | }, 7 | plugins: [], 8 | } -------------------------------------------------------------------------------- /public/favicon/site.webmanifest: -------------------------------------------------------------------------------- 1 | {"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"} -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "tiktok-downloader", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "onrequest.js", 6 | "scripts": { 7 | "watch": "npx tailwindcss -i ./src/css/main.css -o ./public/css/main.css --watch" 8 | }, 9 | "keywords": [], 10 | "author": "", 11 | "license": "ISC", 12 | "devDependencies": { 13 | "tailwindcss": "^3.2.4" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # tiktok-downloader 2 | Web Application For Downloading Tiktok Videos & Sounds For Free Without Watermarks. 3 | 4 | Built using The [Tiktok-Video-No-Watermark](https://github.com/yi005/Tiktok-Video-No-Watermark)'s API. 5 | 6 | All credit goes to the creator of [Tiktok-Video-No-Watermark](https://github.com/yi005/Tiktok-Video-No-Watermark). 7 | 8 | # Demo: 9 | https://abdallah-ragab.github.io/tiktok-downloader/ 10 | -------------------------------------------------------------------------------- /.github/workflows/static.yml: -------------------------------------------------------------------------------- 1 | # Simple workflow for deploying static content to GitHub Pages 2 | name: Deploy static content to Pages 3 | 4 | on: 5 | # Runs on pushes targeting the default branch 6 | push: 7 | branches: ["master"] 8 | 9 | # Allows you to run this workflow manually from the Actions tab 10 | workflow_dispatch: 11 | 12 | # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages 13 | permissions: 14 | contents: read 15 | pages: write 16 | id-token: write 17 | 18 | # Allow one concurrent deployment 19 | concurrency: 20 | group: "pages" 21 | cancel-in-progress: true 22 | 23 | jobs: 24 | # Single deploy job since we're just deploying 25 | deploy: 26 | environment: 27 | name: github-pages 28 | url: ${{ steps.deployment.outputs.page_url }} 29 | runs-on: ubuntu-latest 30 | steps: 31 | - name: Checkout 32 | uses: actions/checkout@v3 33 | - name: Setup Pages 34 | uses: actions/configure-pages@v2 35 | - name: Upload artifact 36 | uses: actions/upload-pages-artifact@v1 37 | with: 38 | # Upload entire repository 39 | path: './public' 40 | - name: Deploy to GitHub Pages 41 | id: deployment 42 | uses: actions/deploy-pages@v1 43 | -------------------------------------------------------------------------------- /src/css/main.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | 5 | .clear-css { 6 | outline:unset; 7 | } 8 | .overlay { 9 | left: 0; 10 | top: 0; 11 | width: 100%; 12 | height: 100%; 13 | position: fixed; 14 | } 15 | 16 | .overlay__inner { 17 | left: 0; 18 | top: 0; 19 | width: 100%; 20 | height: 100%; 21 | position: absolute; 22 | } 23 | 24 | .overlay__content { 25 | left: 50%; 26 | position: absolute; 27 | top: 50%; 28 | transform: translate(-50%, -50%); 29 | } 30 | 31 | .spinner { 32 | width: 75px; 33 | height: 75px; 34 | display: inline-block; 35 | border-width: 2px; 36 | animation: spin 1s infinite linear; 37 | border-radius: 100%; 38 | border-style: solid; 39 | } 40 | @keyframes spin { 41 | 100% { 42 | transform: rotate(360deg); 43 | } 44 | } 45 | .dots #dot1{ 46 | animation: load 1s infinite; 47 | } 48 | 49 | .dots #dot2{ 50 | animation: load 1s infinite; 51 | animation-delay: 0.2s; 52 | } 53 | 54 | .dots #dot3{ 55 | animation: load 1s infinite; 56 | animation-delay: 0.4s; 57 | } 58 | 59 | @keyframes load{ 60 | 0%{ 61 | opacity: 0; 62 | } 63 | 50%{ 64 | opacity: 1; 65 | } 66 | 100%{ 67 | opacity: 0; 68 | } 69 | } -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | Tiktok Downloader - Download Tiktoks For Free No Watermark 12 | 13 | 14 | 15 |
16 | 35 |
36 | 38 | 40 | 41 |
42 |
43 | Download Tiktok Videos Without Watermarks For Free. 44 |
45 |
46 | Enter a video link to download. 47 |
48 |
50 | 52 | 62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 | 73 | 74 | 75 | -------------------------------------------------------------------------------- /public/js/download.js: -------------------------------------------------------------------------------- 1 | var BLOBS = {} 2 | var DATA 3 | var RETRIES = {} 4 | 5 | const startLoading = () => { 6 | const loader = document.getElementById('overlay_loader') 7 | loader.classList.remove("hidden") 8 | } 9 | const stopLoading = () => { 10 | const loader = document.getElementById('overlay_loader') 11 | loader.classList.add("hidden") 12 | } 13 | const showPageContent = () => { 14 | const container = document.getElementById("container") 15 | container.classList.remove('hidden') 16 | } 17 | const renderOverlayErrorMessage = (msg, secondary_msg = null) => { 18 | const loader = document.getElementById('overlay_loader') 19 | const loaderContent = loader.querySelector('.overlay__content') 20 | 21 | const child = document.createElement('div') 22 | child.classList.add("flex", "justify-center", "flex-col", 'items-center') 23 | 24 | child.innerHTML = ` 25 | 26 | 27 | 28 | 29 | 30 | ` 31 | child.innerHTML += `

${msg}

` 32 | if (secondary_msg) { 33 | child.innerHTML += `

${secondary_msg}

` 34 | } 35 | child.innerHTML += `

return to home page

` 36 | 37 | loaderContent.replaceChildren(child) 38 | } 39 | const readUrl = () => { 40 | const url = new URL(window.location.href) 41 | const targetUrlValue = url.searchParams.get('url') 42 | if (targetUrlValue === null) { 43 | renderOverlayErrorMessage("Invalid Video URL.") 44 | return false 45 | } 46 | return (targetUrlValue) 47 | } 48 | const makeRequest = () => { 49 | const url = readUrl() 50 | const enpoint = "https://tikwm.com/api/?url=" 51 | if (url) { 52 | const reuestURL = enpoint + url 53 | fetch(reuestURL) 54 | .then((response) => { 55 | if (response.status >= 200 && response.status <= 299) { 56 | return response.json() 57 | } else { 58 | renderOverlayErrorMessage("Server returned Error code : " + response.status, response.statusText) 59 | return null 60 | } 61 | }) 62 | .then((data) => processResponse(data)) 63 | .catch((e) => { 64 | renderOverlayErrorMessage("Error Occurred", e.message) 65 | throw e 66 | }) 67 | } 68 | } 69 | const processResponse = (resJSON) => { 70 | if (!resJSON) { return false } 71 | const resCode = resJSON['code'] 72 | const resMsg = resJSON['msg'] 73 | if (resCode === -1) { 74 | renderOverlayErrorMessage("Failed to fetch video.", resMsg) 75 | } else if (resCode === 0) { 76 | DATA = resJSON['data'] 77 | getMediaBlobs(resJSON['data']) 78 | renderPage(resJSON['data']) 79 | stopLoading() 80 | } 81 | else { 82 | console.error("UNKNOWN RESPONSE CODE.") 83 | console.log(resJSON) 84 | } 85 | } 86 | const renderPage = (data) => { 87 | renderData(data) 88 | showPageContent() 89 | } 90 | const renderData = (data) => { 91 | 92 | const videoContainer = document.getElementById('video_container') 93 | const videoField = videoContainer.querySelector('video') 94 | 95 | const videoSourceField = document.getElementById('video_source') 96 | const authorNameField = document.getElementById('author_name') 97 | const authorUsernameField = document.getElementById('author_username') 98 | const authorAvatarField = document.getElementById('author_avatar') 99 | const authorVideosField = document.getElementById('author_videos') 100 | // const authorDetailsField = document.getElementById('author_details') 101 | const videoDownloadField = document.getElementById('video_download') 102 | const videoDownloadWMField = document.getElementById('video_download_wm') 103 | const musicDownloadField = document.getElementById('music_download') 104 | const musicCoverField = document.getElementById('music_cover') 105 | const musicTitleField = document.getElementById('music_title') 106 | const musicAuthorField = document.getElementById('music_author') 107 | 108 | 109 | const videoSource = data['play'] 110 | const videoPoster = data['origin_cover'] 111 | const authorName = data['author']['nickname'] 112 | const authorUsername = data['author']['unique_id'] 113 | // const authorDetails = data['author']['unique_id'] 114 | const authorAvatar = data['author']['avatar'] 115 | const authorVideos = "https://www.tiktok.com/@" + data['author']['unique_id'] 116 | const videoDownload = data['play'] 117 | const videoDownloadWM = data['wmplay'] 118 | const musicDownload = data['music'] 119 | const musicCover = data["music_info"]['cover'] 120 | const musicTitle = data["music_info"]['title'] 121 | const musicAuthor = data["music_info"]['author'] 122 | 123 | const videoTitle = data['title'] 124 | 125 | videoSourceField.src = videoSource 126 | authorNameField.innerText = authorName 127 | authorUsernameField.innerText = authorUsername 128 | // authorDetailsField.innerText = KMBFormat() 129 | authorAvatarField.src = authorAvatar 130 | authorVideosField.href = authorVideos 131 | musicCoverField.src = musicCover 132 | musicTitleField.innerText = musicTitle 133 | musicAuthorField.innerText = musicAuthor 134 | 135 | const videoElement = ` 136 | 139 | ` 140 | videoContainer.replaceChildren() 141 | videoContainer.insertAdjacentHTML("afterbegin", videoElement) 142 | 143 | } 144 | const getMediaBlobs = (data) => { 145 | console.log("getting media blobs") 146 | const video = data['play'] 147 | const video_wm = data['wmplay'] 148 | const music = data['music'] 149 | 150 | getBlob("video", video) 151 | getBlob("music", music) 152 | getBlob("video_wm", video_wm) 153 | } 154 | const getBlob = (blobKey, url) => { 155 | const xhr = new XMLHttpRequest() 156 | xhr.open("GET", url) 157 | xhr.responseType = 'blob'; 158 | xhr.onreadystatechange = function () { 159 | if (this.readyState === this.DONE) { 160 | console.log('DONE: ', this.status); 161 | if (this.status == 200) { 162 | var blob = new Blob([this.response]); 163 | console.log("got blob " + blobKey) 164 | BLOBS[blobKey] = blob 165 | } else { 166 | console.log("failed to get blob. trying again.") 167 | !(blobKey in RETRIES) && (RETRIES[blobKey] = 0) 168 | if (RETRIES[blobKey] < 50) { 169 | RETRIES[blobKey]++ 170 | getBlob(blobKey, url) 171 | } 172 | } 173 | } 174 | } 175 | xhr.send() 176 | } 177 | const downloadFileFromBlob = (blobKey, filename, extension) => { 178 | console.log("downloading blob " + blobKey) 179 | const blob = BLOBS[blobKey] 180 | console.log(Boolean(blob)) 181 | const url = window.URL.createObjectURL(blob); 182 | const a = document.createElement("a"); 183 | 184 | a.style = "display: none"; 185 | document.body.appendChild(a); 186 | a.href = url; 187 | a.download = filename + extension; 188 | 189 | a.click(); 190 | console.log(url) 191 | // window.URL.revokeObjectURL(url); 192 | // a.remove() 193 | } 194 | const handleDownloadButtonClick = (button) => { 195 | console.log("clicked button") 196 | const blobKey = button.getAttribute('key') 197 | toggleButtonLoading(button) 198 | waitForBlobToDownload(blobKey, button) 199 | } 200 | const waitForBlobToDownload = (blobKey, button) => { 201 | console.log("looking for blob") 202 | if (!BLOBS.hasOwnProperty(blobKey)) { 203 | console.log("no blob found. recalling ...") 204 | setTimeout(waitForBlobToDownload, 100, blobKey, button) 205 | } else { 206 | console.log("Found blob") 207 | let filename = DATA['author']['unique_id'] + "___" + DATA['title'] + "___" 208 | if (blobKey == "video") { 209 | filename += "NO_WM" 210 | var extension = ".mp4" 211 | } else if (blobKey == "video_wm") { 212 | filename += "WM" 213 | var extension = ".mp4" 214 | } else if (blobKey == "music") { 215 | filename = DATA["music_info"]['author'] + "___" + DATA["music_info"]['title'] 216 | var extension = ".mp3" 217 | } 218 | downloadFileFromBlob(blobKey, filename, extension) 219 | toggleButtonLoading(button) 220 | } 221 | } 222 | const toggleButtonLoading = (button) => { 223 | console.log("toggled button state") 224 | const loader = button.querySelector("#loader") 225 | const text = button.querySelector(".button-content") 226 | const loading = !(loader.classList.contains('hidden')) 227 | 228 | loader.classList.toggle('hidden') 229 | text.classList.toggle('opacity-0') 230 | 231 | if (loading) { 232 | button.style.pointerEvents = "all" 233 | } else { 234 | button.style.pointerEvents = "none" 235 | } 236 | } 237 | const KMBFormat = (num) => { 238 | return Intl.NumberFormat('en-US', { 239 | notation: "compact", 240 | maximumFractionDigits: 1 241 | }).format(num) 242 | } 243 | 244 | 245 | startLoading() 246 | makeRequest() 247 | 248 | 249 | -------------------------------------------------------------------------------- /public/download.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | Tiktok Downloader - Download Tiktok Videos For Free No Watermark 13 | 14 | 15 | 16 | 162 | 169 | 170 | 171 | -------------------------------------------------------------------------------- /public/css/main.css: -------------------------------------------------------------------------------- 1 | /* 2 | ! tailwindcss v3.2.4 | MIT License | https://tailwindcss.com 3 | */ 4 | 5 | /* 6 | 1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4) 7 | 2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116) 8 | */ 9 | 10 | *, 11 | ::before, 12 | ::after { 13 | box-sizing: border-box; 14 | /* 1 */ 15 | border-width: 0; 16 | /* 2 */ 17 | border-style: solid; 18 | /* 2 */ 19 | border-color: #e5e7eb; 20 | /* 2 */ 21 | } 22 | 23 | ::before, 24 | ::after { 25 | --tw-content: ''; 26 | } 27 | 28 | /* 29 | 1. Use a consistent sensible line-height in all browsers. 30 | 2. Prevent adjustments of font size after orientation changes in iOS. 31 | 3. Use a more readable tab size. 32 | 4. Use the user's configured `sans` font-family by default. 33 | 5. Use the user's configured `sans` font-feature-settings by default. 34 | */ 35 | 36 | html { 37 | line-height: 1.5; 38 | /* 1 */ 39 | -webkit-text-size-adjust: 100%; 40 | /* 2 */ 41 | -moz-tab-size: 4; 42 | /* 3 */ 43 | -o-tab-size: 4; 44 | tab-size: 4; 45 | /* 3 */ 46 | font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; 47 | /* 4 */ 48 | font-feature-settings: normal; 49 | /* 5 */ 50 | } 51 | 52 | /* 53 | 1. Remove the margin in all browsers. 54 | 2. Inherit line-height from `html` so users can set them as a class directly on the `html` element. 55 | */ 56 | 57 | body { 58 | margin: 0; 59 | /* 1 */ 60 | line-height: inherit; 61 | /* 2 */ 62 | } 63 | 64 | /* 65 | 1. Add the correct height in Firefox. 66 | 2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655) 67 | 3. Ensure horizontal rules are visible by default. 68 | */ 69 | 70 | hr { 71 | height: 0; 72 | /* 1 */ 73 | color: inherit; 74 | /* 2 */ 75 | border-top-width: 1px; 76 | /* 3 */ 77 | } 78 | 79 | /* 80 | Add the correct text decoration in Chrome, Edge, and Safari. 81 | */ 82 | 83 | abbr:where([title]) { 84 | -webkit-text-decoration: underline dotted; 85 | text-decoration: underline dotted; 86 | } 87 | 88 | /* 89 | Remove the default font size and weight for headings. 90 | */ 91 | 92 | h1, 93 | h2, 94 | h3, 95 | h4, 96 | h5, 97 | h6 { 98 | font-size: inherit; 99 | font-weight: inherit; 100 | } 101 | 102 | /* 103 | Reset links to optimize for opt-in styling instead of opt-out. 104 | */ 105 | 106 | a { 107 | color: inherit; 108 | text-decoration: inherit; 109 | } 110 | 111 | /* 112 | Add the correct font weight in Edge and Safari. 113 | */ 114 | 115 | b, 116 | strong { 117 | font-weight: bolder; 118 | } 119 | 120 | /* 121 | 1. Use the user's configured `mono` font family by default. 122 | 2. Correct the odd `em` font sizing in all browsers. 123 | */ 124 | 125 | code, 126 | kbd, 127 | samp, 128 | pre { 129 | font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; 130 | /* 1 */ 131 | font-size: 1em; 132 | /* 2 */ 133 | } 134 | 135 | /* 136 | Add the correct font size in all browsers. 137 | */ 138 | 139 | small { 140 | font-size: 80%; 141 | } 142 | 143 | /* 144 | Prevent `sub` and `sup` elements from affecting the line height in all browsers. 145 | */ 146 | 147 | sub, 148 | sup { 149 | font-size: 75%; 150 | line-height: 0; 151 | position: relative; 152 | vertical-align: baseline; 153 | } 154 | 155 | sub { 156 | bottom: -0.25em; 157 | } 158 | 159 | sup { 160 | top: -0.5em; 161 | } 162 | 163 | /* 164 | 1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297) 165 | 2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016) 166 | 3. Remove gaps between table borders by default. 167 | */ 168 | 169 | table { 170 | text-indent: 0; 171 | /* 1 */ 172 | border-color: inherit; 173 | /* 2 */ 174 | border-collapse: collapse; 175 | /* 3 */ 176 | } 177 | 178 | /* 179 | 1. Change the font styles in all browsers. 180 | 2. Remove the margin in Firefox and Safari. 181 | 3. Remove default padding in all browsers. 182 | */ 183 | 184 | button, 185 | input, 186 | optgroup, 187 | select, 188 | textarea { 189 | font-family: inherit; 190 | /* 1 */ 191 | font-size: 100%; 192 | /* 1 */ 193 | font-weight: inherit; 194 | /* 1 */ 195 | line-height: inherit; 196 | /* 1 */ 197 | color: inherit; 198 | /* 1 */ 199 | margin: 0; 200 | /* 2 */ 201 | padding: 0; 202 | /* 3 */ 203 | } 204 | 205 | /* 206 | Remove the inheritance of text transform in Edge and Firefox. 207 | */ 208 | 209 | button, 210 | select { 211 | text-transform: none; 212 | } 213 | 214 | /* 215 | 1. Correct the inability to style clickable types in iOS and Safari. 216 | 2. Remove default button styles. 217 | */ 218 | 219 | button, 220 | [type='button'], 221 | [type='reset'], 222 | [type='submit'] { 223 | -webkit-appearance: button; 224 | /* 1 */ 225 | background-color: transparent; 226 | /* 2 */ 227 | background-image: none; 228 | /* 2 */ 229 | } 230 | 231 | /* 232 | Use the modern Firefox focus style for all focusable elements. 233 | */ 234 | 235 | :-moz-focusring { 236 | outline: auto; 237 | } 238 | 239 | /* 240 | Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737) 241 | */ 242 | 243 | :-moz-ui-invalid { 244 | box-shadow: none; 245 | } 246 | 247 | /* 248 | Add the correct vertical alignment in Chrome and Firefox. 249 | */ 250 | 251 | progress { 252 | vertical-align: baseline; 253 | } 254 | 255 | /* 256 | Correct the cursor style of increment and decrement buttons in Safari. 257 | */ 258 | 259 | ::-webkit-inner-spin-button, 260 | ::-webkit-outer-spin-button { 261 | height: auto; 262 | } 263 | 264 | /* 265 | 1. Correct the odd appearance in Chrome and Safari. 266 | 2. Correct the outline style in Safari. 267 | */ 268 | 269 | [type='search'] { 270 | -webkit-appearance: textfield; 271 | /* 1 */ 272 | outline-offset: -2px; 273 | /* 2 */ 274 | } 275 | 276 | /* 277 | Remove the inner padding in Chrome and Safari on macOS. 278 | */ 279 | 280 | ::-webkit-search-decoration { 281 | -webkit-appearance: none; 282 | } 283 | 284 | /* 285 | 1. Correct the inability to style clickable types in iOS and Safari. 286 | 2. Change font properties to `inherit` in Safari. 287 | */ 288 | 289 | ::-webkit-file-upload-button { 290 | -webkit-appearance: button; 291 | /* 1 */ 292 | font: inherit; 293 | /* 2 */ 294 | } 295 | 296 | /* 297 | Add the correct display in Chrome and Safari. 298 | */ 299 | 300 | summary { 301 | display: list-item; 302 | } 303 | 304 | /* 305 | Removes the default spacing and border for appropriate elements. 306 | */ 307 | 308 | blockquote, 309 | dl, 310 | dd, 311 | h1, 312 | h2, 313 | h3, 314 | h4, 315 | h5, 316 | h6, 317 | hr, 318 | figure, 319 | p, 320 | pre { 321 | margin: 0; 322 | } 323 | 324 | fieldset { 325 | margin: 0; 326 | padding: 0; 327 | } 328 | 329 | legend { 330 | padding: 0; 331 | } 332 | 333 | ol, 334 | ul, 335 | menu { 336 | list-style: none; 337 | margin: 0; 338 | padding: 0; 339 | } 340 | 341 | /* 342 | Prevent resizing textareas horizontally by default. 343 | */ 344 | 345 | textarea { 346 | resize: vertical; 347 | } 348 | 349 | /* 350 | 1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300) 351 | 2. Set the default placeholder color to the user's configured gray 400 color. 352 | */ 353 | 354 | input::-moz-placeholder, textarea::-moz-placeholder { 355 | opacity: 1; 356 | /* 1 */ 357 | color: #9ca3af; 358 | /* 2 */ 359 | } 360 | 361 | input::placeholder, 362 | textarea::placeholder { 363 | opacity: 1; 364 | /* 1 */ 365 | color: #9ca3af; 366 | /* 2 */ 367 | } 368 | 369 | /* 370 | Set the default cursor for buttons. 371 | */ 372 | 373 | button, 374 | [role="button"] { 375 | cursor: pointer; 376 | } 377 | 378 | /* 379 | Make sure disabled buttons don't get the pointer cursor. 380 | */ 381 | 382 | :disabled { 383 | cursor: default; 384 | } 385 | 386 | /* 387 | 1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14) 388 | 2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210) 389 | This can trigger a poorly considered lint error in some tools but is included by design. 390 | */ 391 | 392 | img, 393 | svg, 394 | video, 395 | canvas, 396 | audio, 397 | iframe, 398 | embed, 399 | object { 400 | display: block; 401 | /* 1 */ 402 | vertical-align: middle; 403 | /* 2 */ 404 | } 405 | 406 | /* 407 | Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14) 408 | */ 409 | 410 | img, 411 | video { 412 | max-width: 100%; 413 | height: auto; 414 | } 415 | 416 | /* Make elements with the HTML hidden attribute stay hidden by default */ 417 | 418 | [hidden] { 419 | display: none; 420 | } 421 | 422 | *, ::before, ::after { 423 | --tw-border-spacing-x: 0; 424 | --tw-border-spacing-y: 0; 425 | --tw-translate-x: 0; 426 | --tw-translate-y: 0; 427 | --tw-rotate: 0; 428 | --tw-skew-x: 0; 429 | --tw-skew-y: 0; 430 | --tw-scale-x: 1; 431 | --tw-scale-y: 1; 432 | --tw-pan-x: ; 433 | --tw-pan-y: ; 434 | --tw-pinch-zoom: ; 435 | --tw-scroll-snap-strictness: proximity; 436 | --tw-ordinal: ; 437 | --tw-slashed-zero: ; 438 | --tw-numeric-figure: ; 439 | --tw-numeric-spacing: ; 440 | --tw-numeric-fraction: ; 441 | --tw-ring-inset: ; 442 | --tw-ring-offset-width: 0px; 443 | --tw-ring-offset-color: #fff; 444 | --tw-ring-color: rgb(59 130 246 / 0.5); 445 | --tw-ring-offset-shadow: 0 0 #0000; 446 | --tw-ring-shadow: 0 0 #0000; 447 | --tw-shadow: 0 0 #0000; 448 | --tw-shadow-colored: 0 0 #0000; 449 | --tw-blur: ; 450 | --tw-brightness: ; 451 | --tw-contrast: ; 452 | --tw-grayscale: ; 453 | --tw-hue-rotate: ; 454 | --tw-invert: ; 455 | --tw-saturate: ; 456 | --tw-sepia: ; 457 | --tw-drop-shadow: ; 458 | --tw-backdrop-blur: ; 459 | --tw-backdrop-brightness: ; 460 | --tw-backdrop-contrast: ; 461 | --tw-backdrop-grayscale: ; 462 | --tw-backdrop-hue-rotate: ; 463 | --tw-backdrop-invert: ; 464 | --tw-backdrop-opacity: ; 465 | --tw-backdrop-saturate: ; 466 | --tw-backdrop-sepia: ; 467 | } 468 | 469 | ::backdrop { 470 | --tw-border-spacing-x: 0; 471 | --tw-border-spacing-y: 0; 472 | --tw-translate-x: 0; 473 | --tw-translate-y: 0; 474 | --tw-rotate: 0; 475 | --tw-skew-x: 0; 476 | --tw-skew-y: 0; 477 | --tw-scale-x: 1; 478 | --tw-scale-y: 1; 479 | --tw-pan-x: ; 480 | --tw-pan-y: ; 481 | --tw-pinch-zoom: ; 482 | --tw-scroll-snap-strictness: proximity; 483 | --tw-ordinal: ; 484 | --tw-slashed-zero: ; 485 | --tw-numeric-figure: ; 486 | --tw-numeric-spacing: ; 487 | --tw-numeric-fraction: ; 488 | --tw-ring-inset: ; 489 | --tw-ring-offset-width: 0px; 490 | --tw-ring-offset-color: #fff; 491 | --tw-ring-color: rgb(59 130 246 / 0.5); 492 | --tw-ring-offset-shadow: 0 0 #0000; 493 | --tw-ring-shadow: 0 0 #0000; 494 | --tw-shadow: 0 0 #0000; 495 | --tw-shadow-colored: 0 0 #0000; 496 | --tw-blur: ; 497 | --tw-brightness: ; 498 | --tw-contrast: ; 499 | --tw-grayscale: ; 500 | --tw-hue-rotate: ; 501 | --tw-invert: ; 502 | --tw-saturate: ; 503 | --tw-sepia: ; 504 | --tw-drop-shadow: ; 505 | --tw-backdrop-blur: ; 506 | --tw-backdrop-brightness: ; 507 | --tw-backdrop-contrast: ; 508 | --tw-backdrop-grayscale: ; 509 | --tw-backdrop-hue-rotate: ; 510 | --tw-backdrop-invert: ; 511 | --tw-backdrop-opacity: ; 512 | --tw-backdrop-saturate: ; 513 | --tw-backdrop-sepia: ; 514 | } 515 | 516 | .container { 517 | width: 100%; 518 | } 519 | 520 | @media (min-width: 640px) { 521 | .container { 522 | max-width: 640px; 523 | } 524 | } 525 | 526 | @media (min-width: 768px) { 527 | .container { 528 | max-width: 768px; 529 | } 530 | } 531 | 532 | @media (min-width: 1024px) { 533 | .container { 534 | max-width: 1024px; 535 | } 536 | } 537 | 538 | @media (min-width: 1280px) { 539 | .container { 540 | max-width: 1280px; 541 | } 542 | } 543 | 544 | @media (min-width: 1536px) { 545 | .container { 546 | max-width: 1536px; 547 | } 548 | } 549 | 550 | .absolute { 551 | position: absolute; 552 | } 553 | 554 | .relative { 555 | position: relative; 556 | } 557 | 558 | .left-0 { 559 | left: 0px; 560 | } 561 | 562 | .right-0 { 563 | right: 0px; 564 | } 565 | 566 | .top-8 { 567 | top: 2rem; 568 | } 569 | 570 | .right-2 { 571 | right: 0.5rem; 572 | } 573 | 574 | .mx-auto { 575 | margin-left: auto; 576 | margin-right: auto; 577 | } 578 | 579 | .my-3 { 580 | margin-top: 0.75rem; 581 | margin-bottom: 0.75rem; 582 | } 583 | 584 | .ml-2 { 585 | margin-left: 0.5rem; 586 | } 587 | 588 | .mt-8 { 589 | margin-top: 2rem; 590 | } 591 | 592 | .-mt-1 { 593 | margin-top: -0.25rem; 594 | } 595 | 596 | .mb-2 { 597 | margin-bottom: 0.5rem; 598 | } 599 | 600 | .mb-4 { 601 | margin-bottom: 1rem; 602 | } 603 | 604 | .mt-6 { 605 | margin-top: 1.5rem; 606 | } 607 | 608 | .mt-12 { 609 | margin-top: 3rem; 610 | } 611 | 612 | .mt-3 { 613 | margin-top: 0.75rem; 614 | } 615 | 616 | .mb-8 { 617 | margin-bottom: 2rem; 618 | } 619 | 620 | .mt-2\.5 { 621 | margin-top: 0.625rem; 622 | } 623 | 624 | .mt-2 { 625 | margin-top: 0.5rem; 626 | } 627 | 628 | .block { 629 | display: block; 630 | } 631 | 632 | .flex { 633 | display: flex; 634 | } 635 | 636 | .hidden { 637 | display: none; 638 | } 639 | 640 | .h-screen { 641 | height: 100vh; 642 | } 643 | 644 | .h-full { 645 | height: 100%; 646 | } 647 | 648 | .h-24 { 649 | height: 6rem; 650 | } 651 | 652 | .h-10 { 653 | height: 2.5rem; 654 | } 655 | 656 | .h-1\/2 { 657 | height: 50%; 658 | } 659 | 660 | .h-16 { 661 | height: 4rem; 662 | } 663 | 664 | .h-3\/4 { 665 | height: 75%; 666 | } 667 | 668 | .h-6 { 669 | height: 1.5rem; 670 | } 671 | 672 | .h-8 { 673 | height: 2rem; 674 | } 675 | 676 | .w-screen { 677 | width: 100vw; 678 | } 679 | 680 | .w-10 { 681 | width: 2.5rem; 682 | } 683 | 684 | .w-full { 685 | width: 100%; 686 | } 687 | 688 | .w-6 { 689 | width: 1.5rem; 690 | } 691 | 692 | .w-3\/4 { 693 | width: 75%; 694 | } 695 | 696 | .w-1\/2 { 697 | width: 50%; 698 | } 699 | 700 | .w-24 { 701 | width: 6rem; 702 | } 703 | 704 | .max-w-xs { 705 | max-width: 20rem; 706 | } 707 | 708 | .max-w-md { 709 | max-width: 28rem; 710 | } 711 | 712 | .flex-grow { 713 | flex-grow: 1; 714 | } 715 | 716 | .grow { 717 | flex-grow: 1; 718 | } 719 | 720 | .transform { 721 | transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); 722 | } 723 | 724 | @keyframes spin { 725 | to { 726 | transform: rotate(360deg); 727 | } 728 | } 729 | 730 | .animate-spin { 731 | animation: spin 1s linear infinite; 732 | } 733 | 734 | .cursor-pointer { 735 | cursor: pointer; 736 | } 737 | 738 | .flex-col { 739 | flex-direction: column; 740 | } 741 | 742 | .flex-wrap { 743 | flex-wrap: wrap; 744 | } 745 | 746 | .items-start { 747 | align-items: flex-start; 748 | } 749 | 750 | .items-center { 751 | align-items: center; 752 | } 753 | 754 | .justify-start { 755 | justify-content: flex-start; 756 | } 757 | 758 | .justify-center { 759 | justify-content: center; 760 | } 761 | 762 | .justify-between { 763 | justify-content: space-between; 764 | } 765 | 766 | .space-y-9 > :not([hidden]) ~ :not([hidden]) { 767 | --tw-space-y-reverse: 0; 768 | margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); 769 | margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); 770 | } 771 | 772 | .space-x-4 > :not([hidden]) ~ :not([hidden]) { 773 | --tw-space-x-reverse: 0; 774 | margin-right: calc(1rem * var(--tw-space-x-reverse)); 775 | margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); 776 | } 777 | 778 | .space-y-6 > :not([hidden]) ~ :not([hidden]) { 779 | --tw-space-y-reverse: 0; 780 | margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); 781 | margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); 782 | } 783 | 784 | .space-y-3 > :not([hidden]) ~ :not([hidden]) { 785 | --tw-space-y-reverse: 0; 786 | margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); 787 | margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); 788 | } 789 | 790 | .space-x-2 > :not([hidden]) ~ :not([hidden]) { 791 | --tw-space-x-reverse: 0; 792 | margin-right: calc(0.5rem * var(--tw-space-x-reverse)); 793 | margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); 794 | } 795 | 796 | .space-x-3 > :not([hidden]) ~ :not([hidden]) { 797 | --tw-space-x-reverse: 0; 798 | margin-right: calc(0.75rem * var(--tw-space-x-reverse)); 799 | margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); 800 | } 801 | 802 | .overflow-hidden { 803 | overflow: hidden; 804 | } 805 | 806 | .whitespace-nowrap { 807 | white-space: nowrap; 808 | } 809 | 810 | .rounded-lg { 811 | border-radius: 0.5rem; 812 | } 813 | 814 | .rounded-md { 815 | border-radius: 0.375rem; 816 | } 817 | 818 | .rounded-tl-md { 819 | border-top-left-radius: 0.375rem; 820 | } 821 | 822 | .rounded-bl-md { 823 | border-bottom-left-radius: 0.375rem; 824 | } 825 | 826 | .rounded-tr-md { 827 | border-top-right-radius: 0.375rem; 828 | } 829 | 830 | .rounded-br-md { 831 | border-bottom-right-radius: 0.375rem; 832 | } 833 | 834 | .border-neutral-200 { 835 | --tw-border-opacity: 1; 836 | border-color: rgb(229 229 229 / var(--tw-border-opacity)); 837 | } 838 | 839 | .border-t-neutral-900 { 840 | --tw-border-opacity: 1; 841 | border-top-color: rgb(23 23 23 / var(--tw-border-opacity)); 842 | } 843 | 844 | .bg-gray-100 { 845 | --tw-bg-opacity: 1; 846 | background-color: rgb(243 244 246 / var(--tw-bg-opacity)); 847 | } 848 | 849 | .bg-neutral-600 { 850 | --tw-bg-opacity: 1; 851 | background-color: rgb(82 82 82 / var(--tw-bg-opacity)); 852 | } 853 | 854 | .bg-sky-700 { 855 | --tw-bg-opacity: 1; 856 | background-color: rgb(3 105 161 / var(--tw-bg-opacity)); 857 | } 858 | 859 | .bg-sky-100 { 860 | --tw-bg-opacity: 1; 861 | background-color: rgb(224 242 254 / var(--tw-bg-opacity)); 862 | } 863 | 864 | .bg-sky-300 { 865 | --tw-bg-opacity: 1; 866 | background-color: rgb(125 211 252 / var(--tw-bg-opacity)); 867 | } 868 | 869 | .bg-sky-900 { 870 | --tw-bg-opacity: 1; 871 | background-color: rgb(12 74 110 / var(--tw-bg-opacity)); 872 | } 873 | 874 | .bg-neutral-200 { 875 | --tw-bg-opacity: 1; 876 | background-color: rgb(229 229 229 / var(--tw-bg-opacity)); 877 | } 878 | 879 | .bg-gray-600 { 880 | --tw-bg-opacity: 1; 881 | background-color: rgb(75 85 99 / var(--tw-bg-opacity)); 882 | } 883 | 884 | .bg-neutral-100 { 885 | --tw-bg-opacity: 1; 886 | background-color: rgb(245 245 245 / var(--tw-bg-opacity)); 887 | } 888 | 889 | .bg-sky-600 { 890 | --tw-bg-opacity: 1; 891 | background-color: rgb(2 132 199 / var(--tw-bg-opacity)); 892 | } 893 | 894 | .bg-white { 895 | --tw-bg-opacity: 1; 896 | background-color: rgb(255 255 255 / var(--tw-bg-opacity)); 897 | } 898 | 899 | .fill-neutral-800 { 900 | fill: #262626; 901 | } 902 | 903 | .fill-sky-800 { 904 | fill: #075985; 905 | } 906 | 907 | .fill-white { 908 | fill: #fff; 909 | } 910 | 911 | .fill-red-300 { 912 | fill: #fca5a5; 913 | } 914 | 915 | .stroke-sky-500 { 916 | stroke: #0ea5e9; 917 | } 918 | 919 | .p-1\.5 { 920 | padding: 0.375rem; 921 | } 922 | 923 | .p-1 { 924 | padding: 0.25rem; 925 | } 926 | 927 | .p-2 { 928 | padding: 0.5rem; 929 | } 930 | 931 | .px-2 { 932 | padding-left: 0.5rem; 933 | padding-right: 0.5rem; 934 | } 935 | 936 | .py-1 { 937 | padding-top: 0.25rem; 938 | padding-bottom: 0.25rem; 939 | } 940 | 941 | .py-4 { 942 | padding-top: 1rem; 943 | padding-bottom: 1rem; 944 | } 945 | 946 | .px-6 { 947 | padding-left: 1.5rem; 948 | padding-right: 1.5rem; 949 | } 950 | 951 | .pb-6 { 952 | padding-bottom: 1.5rem; 953 | } 954 | 955 | .pb-4 { 956 | padding-bottom: 1rem; 957 | } 958 | 959 | .pt-2 { 960 | padding-top: 0.5rem; 961 | } 962 | 963 | .text-center { 964 | text-align: center; 965 | } 966 | 967 | .text-3xl { 968 | font-size: 1.875rem; 969 | line-height: 2.25rem; 970 | } 971 | 972 | .text-lg { 973 | font-size: 1.125rem; 974 | line-height: 1.75rem; 975 | } 976 | 977 | .text-xs { 978 | font-size: 0.75rem; 979 | line-height: 1rem; 980 | } 981 | 982 | .text-xl { 983 | font-size: 1.25rem; 984 | line-height: 1.75rem; 985 | } 986 | 987 | .text-4xl { 988 | font-size: 2.25rem; 989 | line-height: 2.5rem; 990 | } 991 | 992 | .text-2xl { 993 | font-size: 1.5rem; 994 | line-height: 2rem; 995 | } 996 | 997 | .font-bold { 998 | font-weight: 700; 999 | } 1000 | 1001 | .font-semibold { 1002 | font-weight: 600; 1003 | } 1004 | 1005 | .text-gray-500 { 1006 | --tw-text-opacity: 1; 1007 | color: rgb(107 114 128 / var(--tw-text-opacity)); 1008 | } 1009 | 1010 | .text-white { 1011 | --tw-text-opacity: 1; 1012 | color: rgb(255 255 255 / var(--tw-text-opacity)); 1013 | } 1014 | 1015 | .text-neutral-800 { 1016 | --tw-text-opacity: 1; 1017 | color: rgb(38 38 38 / var(--tw-text-opacity)); 1018 | } 1019 | 1020 | .text-neutral-600 { 1021 | --tw-text-opacity: 1; 1022 | color: rgb(82 82 82 / var(--tw-text-opacity)); 1023 | } 1024 | 1025 | .text-neutral-100 { 1026 | --tw-text-opacity: 1; 1027 | color: rgb(245 245 245 / var(--tw-text-opacity)); 1028 | } 1029 | 1030 | .text-neutral-300 { 1031 | --tw-text-opacity: 1; 1032 | color: rgb(212 212 212 / var(--tw-text-opacity)); 1033 | } 1034 | 1035 | .text-blue-300 { 1036 | --tw-text-opacity: 1; 1037 | color: rgb(147 197 253 / var(--tw-text-opacity)); 1038 | } 1039 | 1040 | .opacity-0 { 1041 | opacity: 0; 1042 | } 1043 | 1044 | .ring { 1045 | --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); 1046 | --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color); 1047 | box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); 1048 | } 1049 | 1050 | .ring-neutral-600 { 1051 | --tw-ring-opacity: 1; 1052 | --tw-ring-color: rgb(82 82 82 / var(--tw-ring-opacity)); 1053 | } 1054 | 1055 | .ring-sky-600 { 1056 | --tw-ring-opacity: 1; 1057 | --tw-ring-color: rgb(2 132 199 / var(--tw-ring-opacity)); 1058 | } 1059 | 1060 | .transition-colors { 1061 | transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; 1062 | transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); 1063 | transition-duration: 150ms; 1064 | } 1065 | 1066 | .clear-css { 1067 | outline:unset; 1068 | } 1069 | 1070 | .overlay { 1071 | left: 0; 1072 | top: 0; 1073 | width: 100%; 1074 | height: 100%; 1075 | position: fixed; 1076 | } 1077 | 1078 | .overlay__inner { 1079 | left: 0; 1080 | top: 0; 1081 | width: 100%; 1082 | height: 100%; 1083 | position: absolute; 1084 | } 1085 | 1086 | .overlay__content { 1087 | left: 50%; 1088 | position: absolute; 1089 | top: 50%; 1090 | transform: translate(-50%, -50%); 1091 | } 1092 | 1093 | .spinner { 1094 | width: 75px; 1095 | height: 75px; 1096 | display: inline-block; 1097 | border-width: 2px; 1098 | animation: spin 1s infinite linear; 1099 | border-radius: 100%; 1100 | border-style: solid; 1101 | } 1102 | 1103 | @keyframes spin { 1104 | 100% { 1105 | transform: rotate(360deg); 1106 | } 1107 | } 1108 | 1109 | .dots #dot1{ 1110 | animation: load 1s infinite; 1111 | } 1112 | 1113 | .dots #dot2{ 1114 | animation: load 1s infinite; 1115 | animation-delay: 0.2s; 1116 | } 1117 | 1118 | .dots #dot3{ 1119 | animation: load 1s infinite; 1120 | animation-delay: 0.4s; 1121 | } 1122 | 1123 | @keyframes load{ 1124 | 0%{ 1125 | opacity: 0; 1126 | } 1127 | 1128 | 50%{ 1129 | opacity: 1; 1130 | } 1131 | 1132 | 100%{ 1133 | opacity: 0; 1134 | } 1135 | } 1136 | 1137 | .hover\:bg-white:hover { 1138 | --tw-bg-opacity: 1; 1139 | background-color: rgb(255 255 255 / var(--tw-bg-opacity)); 1140 | } 1141 | 1142 | .hover\:bg-sky-200:hover { 1143 | --tw-bg-opacity: 1; 1144 | background-color: rgb(186 230 253 / var(--tw-bg-opacity)); 1145 | } 1146 | 1147 | .hover\:bg-gray-800:hover { 1148 | --tw-bg-opacity: 1; 1149 | background-color: rgb(31 41 55 / var(--tw-bg-opacity)); 1150 | } 1151 | 1152 | .hover\:text-gray-800:hover { 1153 | --tw-text-opacity: 1; 1154 | color: rgb(31 41 55 / var(--tw-text-opacity)); 1155 | } 1156 | 1157 | .hover\:text-blue-400:hover { 1158 | --tw-text-opacity: 1; 1159 | color: rgb(96 165 250 / var(--tw-text-opacity)); 1160 | } 1161 | 1162 | @media (prefers-color-scheme: dark) { 1163 | .dark\:border-neutral-700 { 1164 | --tw-border-opacity: 1; 1165 | border-color: rgb(64 64 64 / var(--tw-border-opacity)); 1166 | } 1167 | 1168 | .dark\:border-t-white { 1169 | --tw-border-opacity: 1; 1170 | border-top-color: rgb(255 255 255 / var(--tw-border-opacity)); 1171 | } 1172 | 1173 | .dark\:bg-neutral-900 { 1174 | --tw-bg-opacity: 1; 1175 | background-color: rgb(23 23 23 / var(--tw-bg-opacity)); 1176 | } 1177 | 1178 | .dark\:bg-neutral-600 { 1179 | --tw-bg-opacity: 1; 1180 | background-color: rgb(82 82 82 / var(--tw-bg-opacity)); 1181 | } 1182 | 1183 | .dark\:bg-neutral-400 { 1184 | --tw-bg-opacity: 1; 1185 | background-color: rgb(163 163 163 / var(--tw-bg-opacity)); 1186 | } 1187 | 1188 | .dark\:bg-sky-100 { 1189 | --tw-bg-opacity: 1; 1190 | background-color: rgb(224 242 254 / var(--tw-bg-opacity)); 1191 | } 1192 | 1193 | .dark\:bg-sky-400 { 1194 | --tw-bg-opacity: 1; 1195 | background-color: rgb(56 189 248 / var(--tw-bg-opacity)); 1196 | } 1197 | 1198 | .dark\:bg-rose-400 { 1199 | --tw-bg-opacity: 1; 1200 | background-color: rgb(251 113 133 / var(--tw-bg-opacity)); 1201 | } 1202 | 1203 | .dark\:bg-neutral-800 { 1204 | --tw-bg-opacity: 1; 1205 | background-color: rgb(38 38 38 / var(--tw-bg-opacity)); 1206 | } 1207 | 1208 | .dark\:bg-red-400 { 1209 | --tw-bg-opacity: 1; 1210 | background-color: rgb(248 113 113 / var(--tw-bg-opacity)); 1211 | } 1212 | 1213 | .dark\:fill-neutral-100 { 1214 | fill: #f5f5f5; 1215 | } 1216 | 1217 | .dark\:text-neutral-200 { 1218 | --tw-text-opacity: 1; 1219 | color: rgb(229 229 229 / var(--tw-text-opacity)); 1220 | } 1221 | 1222 | .dark\:text-neutral-400 { 1223 | --tw-text-opacity: 1; 1224 | color: rgb(163 163 163 / var(--tw-text-opacity)); 1225 | } 1226 | 1227 | .dark\:text-black { 1228 | --tw-text-opacity: 1; 1229 | color: rgb(0 0 0 / var(--tw-text-opacity)); 1230 | } 1231 | 1232 | .dark\:text-white { 1233 | --tw-text-opacity: 1; 1234 | color: rgb(255 255 255 / var(--tw-text-opacity)); 1235 | } 1236 | 1237 | .dark\:text-neutral-100 { 1238 | --tw-text-opacity: 1; 1239 | color: rgb(245 245 245 / var(--tw-text-opacity)); 1240 | } 1241 | 1242 | .dark\:text-neutral-300 { 1243 | --tw-text-opacity: 1; 1244 | color: rgb(212 212 212 / var(--tw-text-opacity)); 1245 | } 1246 | 1247 | .dark\:ring-rose-600 { 1248 | --tw-ring-opacity: 1; 1249 | --tw-ring-color: rgb(225 29 72 / var(--tw-ring-opacity)); 1250 | } 1251 | 1252 | .dark\:ring-red-400 { 1253 | --tw-ring-opacity: 1; 1254 | --tw-ring-color: rgb(248 113 113 / var(--tw-ring-opacity)); 1255 | } 1256 | 1257 | .dark\:hover\:bg-neutral-700:hover { 1258 | --tw-bg-opacity: 1; 1259 | background-color: rgb(64 64 64 / var(--tw-bg-opacity)); 1260 | } 1261 | 1262 | .dark\:hover\:bg-sky-300:hover { 1263 | --tw-bg-opacity: 1; 1264 | background-color: rgb(125 211 252 / var(--tw-bg-opacity)); 1265 | } 1266 | 1267 | .dark\:hover\:bg-rose-500:hover { 1268 | --tw-bg-opacity: 1; 1269 | background-color: rgb(244 63 94 / var(--tw-bg-opacity)); 1270 | } 1271 | 1272 | .dark\:hover\:text-neutral-200:hover { 1273 | --tw-text-opacity: 1; 1274 | color: rgb(229 229 229 / var(--tw-text-opacity)); 1275 | } 1276 | } 1277 | 1278 | @media (min-width: 640px) { 1279 | .sm\:block { 1280 | display: block; 1281 | } 1282 | 1283 | .sm\:hidden { 1284 | display: none; 1285 | } 1286 | } 1287 | 1288 | @media (min-width: 768px) { 1289 | .md\:top-0 { 1290 | top: 0px; 1291 | } 1292 | 1293 | .md\:mt-9 { 1294 | margin-top: 2.25rem; 1295 | } 1296 | 1297 | .md\:block { 1298 | display: block; 1299 | } 1300 | 1301 | .md\:flex { 1302 | display: flex; 1303 | } 1304 | 1305 | .md\:hidden { 1306 | display: none; 1307 | } 1308 | 1309 | .md\:h-3\/4 { 1310 | height: 75%; 1311 | } 1312 | 1313 | .md\:w-1\/2 { 1314 | width: 50%; 1315 | } 1316 | 1317 | .md\:w-3\/12 { 1318 | width: 25%; 1319 | } 1320 | 1321 | .md\:w-9\/12 { 1322 | width: 75%; 1323 | } 1324 | 1325 | .md\:flex-row { 1326 | flex-direction: row; 1327 | } 1328 | 1329 | .md\:flex-col { 1330 | flex-direction: column; 1331 | } 1332 | 1333 | .md\:flex-nowrap { 1334 | flex-wrap: nowrap; 1335 | } 1336 | 1337 | .md\:justify-center { 1338 | justify-content: center; 1339 | } 1340 | 1341 | .md\:space-x-6 > :not([hidden]) ~ :not([hidden]) { 1342 | --tw-space-x-reverse: 0; 1343 | margin-right: calc(1.5rem * var(--tw-space-x-reverse)); 1344 | margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))); 1345 | } 1346 | 1347 | .md\:space-x-12 > :not([hidden]) ~ :not([hidden]) { 1348 | --tw-space-x-reverse: 0; 1349 | margin-right: calc(3rem * var(--tw-space-x-reverse)); 1350 | margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))); 1351 | } 1352 | 1353 | .md\:space-y-8 > :not([hidden]) ~ :not([hidden]) { 1354 | --tw-space-y-reverse: 0; 1355 | margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); 1356 | margin-bottom: calc(2rem * var(--tw-space-y-reverse)); 1357 | } 1358 | 1359 | .md\:space-x-0 > :not([hidden]) ~ :not([hidden]) { 1360 | --tw-space-x-reverse: 0; 1361 | margin-right: calc(0px * var(--tw-space-x-reverse)); 1362 | margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); 1363 | } 1364 | 1365 | .md\:space-y-3 > :not([hidden]) ~ :not([hidden]) { 1366 | --tw-space-y-reverse: 0; 1367 | margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); 1368 | margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); 1369 | } 1370 | 1371 | .md\:bg-transparent { 1372 | background-color: transparent; 1373 | } 1374 | 1375 | .md\:text-left { 1376 | text-align: left; 1377 | } 1378 | 1379 | .md\:text-lg { 1380 | font-size: 1.125rem; 1381 | line-height: 1.75rem; 1382 | } 1383 | } 1384 | 1385 | @media (prefers-color-scheme: dark) { 1386 | @media (min-width: 768px) { 1387 | .dark\:md\:bg-transparent { 1388 | background-color: transparent; 1389 | } 1390 | 1391 | .dark\:md\:bg-sky-100 { 1392 | --tw-bg-opacity: 1; 1393 | background-color: rgb(224 242 254 / var(--tw-bg-opacity)); 1394 | } 1395 | } 1396 | } 1397 | 1398 | @media (min-width: 1024px) { 1399 | .lg\:h-10 { 1400 | height: 2.5rem; 1401 | } 1402 | 1403 | .lg\:w-4\/12 { 1404 | width: 33.333333%; 1405 | } 1406 | 1407 | .lg\:w-8\/12 { 1408 | width: 66.666667%; 1409 | } 1410 | 1411 | .lg\:w-12 { 1412 | width: 3rem; 1413 | } 1414 | 1415 | .lg\:max-w-lg { 1416 | max-width: 32rem; 1417 | } 1418 | 1419 | .lg\:text-5xl { 1420 | font-size: 3rem; 1421 | line-height: 1; 1422 | } 1423 | 1424 | .lg\:text-xl { 1425 | font-size: 1.25rem; 1426 | line-height: 1.75rem; 1427 | } 1428 | } 1429 | 1430 | @media (min-width: 1280px) { 1431 | .xl\:text-6xl { 1432 | font-size: 3.75rem; 1433 | line-height: 1; 1434 | } 1435 | 1436 | .xl\:text-2xl { 1437 | font-size: 1.5rem; 1438 | line-height: 2rem; 1439 | } 1440 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | --------------------------------------------------------------------------------