xhluca's picture
Add files using upload-large-folder tool
68a5297 verified
raw
history blame
132 kB
<head data-webtasks-id="152ba53b-6168-4b42"><title data-webtasks-id="9acd1c0a-61fb-4107">Wash dishes and utensils.: Todoist</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8" data-webtasks-id="42507209-7cb1-4f91"><meta http-equiv="X-UA-Compatible" content="IE=edge" data-webtasks-id="4e50e440-e2d0-4837"><meta property="og:image" content="/assets/images/968d99236e2536919d6d14ca13d25930.jpg" data-webtasks-id="5527e9ae-1d9a-4cde"><meta property="og:image:secure_url" content="/assets/images/968d99236e2536919d6d14ca13d25930.jpg" data-webtasks-id="53c82714-c5c5-4091"><meta name="apple-itunes-app" content="app-id=572688855" data-webtasks-id="40d0d635-bb76-487a"><meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1" data-webtasks-id="35a179fd-08a9-4c98"><meta name="theme-color" content="#db4c3f" data-webtasks-id="89c4b2a0-e6e0-4356"><script type="text/javascript" async="" src="https://www.googletagmanager.com/gtag/js?id=G-M6V9BEQD2J&amp;l=dataLayer&amp;cx=c" nonce="" data-webtasks-id="4fc6d91d-d4fa-4081"></script><script async="" defer="" src="https://www.googletagmanager.com/gtm.js?id=GTM-WQB95PC&amp;gtm_auth=BcR4sNCoRjSMVR5_xQ5zQA&amp;gtm_preview=env-1&amp;gtm_cookies_win=x" nonce="" data-webtasks-id="434e9af8-3ac5-4d6a"></script><script nonce="" data-webtasks-id="af41276e-0c30-43c2">class CdnFailbackWatchdog {
TYPE_CSS = 'css'
TYPE_JS = 'js'
MAX_CDN_FALLBACK = 2
ASSET_TIMEOUT = 15 * 1000 // 15 seconds
SEARCH_PARAM = 'cdn_fallback'
constructor(console) {
this.console = console
this.isReloading = false
this.tracked = 0
this.timeout = null
this.successes = []
this.failures = []
this.params = new URLSearchParams(window.location.search)
this.jsFilesCnt = 0
this.cssFilesCnt = 0
this.cdns = null
this.cdn = ''
this.console.log('[watchdog] init')
}
saveLastTriedCDN(value) {
// store in localStorage a value 'x', otherwise log that it was not possible
try {
this.console.log('[watchdog] saving last tried CDN: ' + value)
localStorage.setItem('td-cdn', value)
localStorage.setItem('td-cdn-ttl', Date.now() + 1000 * 60 * 60 * 24 * 30) // 30 days
} catch (e) {
this.console.log('[watchdog] failed to save working CDN in localStorage')
}
}
getLastTriedCDN() {
const value = localStorage.getItem('td-cdn')
const ttl = localStorage.getItem('td-cdn-ttl')
if (value && ttl && parseInt(ttl, 10) > Date.now()) {
this.console.log('[watchdog] retrieving last tried CDN: ' + value)
return value
}
this.clearLastTriedCDN()
return null
}
clearLastTriedCDN() {
try {
this.console.log('[watchdog] clearing last tried CDN')
localStorage.removeItem('td-cdn')
localStorage.removeItem('td-cdn-ttl')
} catch (e) {
this.console.log('[watchdog] failed to clear working CDN in localStorage')
}
}
getCdns() {
if (this.cdns == null) {
const cdnsStr =
(document &&
document.documentElement &&
document.documentElement.getAttribute('data-cdns')) ||
'/'
this.cdns = cdnsStr.split('|')
}
return this.cdns
}
selectCDN() {
if (this.cdn) {
this.console.log('[watchdog] using CDN from cache: ' + this.cdn)
return this.cdn
}
const cdns = this.getCdns()
// Check if we have a cached CDN
// If we can't access it, use the last CDN in the list
let lastTriedCDN
try {
lastTriedCDN = this.getLastTriedCDN()
} catch (e) {
this.console.log('[watchdog] failed to get last tried CDN')
this.cdn = cdns[cdns.length - 1]
return this.cdn
}
// If the cached CDN is not in the list, clear it
if (lastTriedCDN && !cdns.includes(lastTriedCDN)) {
lastTriedCDN = null
this.clearLastTriedCDN()
}
// If we have a cached CDN, use it
// Otherwise, use the current load attempt to get the CDN
if (lastTriedCDN) {
this.cdn = lastTriedCDN
} else {
const loadAttempt = this.getLoadAttempt()
const cdnIndex = Math.min(loadAttempt, cdns.length - 1)
this.cdn = cdns[cdnIndex]
}
// ensure CDN always end in trailing /
if (!this.cdn.endsWith('/')) {
this.cdn += '/'
}
this.saveLastTriedCDN(this.cdn)
return this.cdn
}
getLoadAttempt() {
const cdnFallback = this.params.get(this.SEARCH_PARAM)
return (cdnFallback && parseInt(cdnFallback, 10)) || 0
}
track(assetType) {
this.tracked += 1
if (assetType === this.TYPE_JS) {
this.jsFilesCnt += 1
} else if (assetType === this.TYPE_CSS) {
this.cssFilesCnt += 1
}
if (this.timeout != null) {
clearTimeout(this.timeout)
this.timeout = null
}
this.timeout = setTimeout(this.reloadIfIssue.bind(this, true), this.ASSET_TIMEOUT)
}
parse(element) {
element.onload = null
element.onerror = null
if (element) {
if (element.href && element.rel && element.rel === 'stylesheet') {
return {
src: element.href,
type: this.TYPE_CSS,
}
}
if (element.src && element.nodeName.toLowerCase() === 'script') {
return {
src: element.src,
type: this.TYPE_JS,
}
}
}
return null
}
ok(element) {
const parsedAsset = this.parse(element)
if (parsedAsset) {
this.successes.push(parsedAsset)
this.reloadIfIssue()
}
}
err(element) {
const parsedAsset = this.parse(element)
if (parsedAsset) {
this.failures.push({
...parsedAsset,
reason: 'Failed to load from CDN',
})
this.reloadIfIssue()
}
}
haveAssetsLoaded(ignoreTracking = false) {
if (ignoreTracking) {
this.console.warn(
`Ignoring asset checks, because something timed out. Tracked: ${this.tracked}; Successes: ${this.successes.length}; Failures: ${this.failures.length}`,
)
return false
}
if (this.tracked > this.successes.length + this.failures.length) {
return null
}
if (this.timeout != null) {
this.console.log(
`[watchdog] All assets have reported back; successes: ${this.successes.length}; failures: ${this.failures.length}`,
)
clearTimeout(this.timeout)
this.timeout = null
}
if (this.failures.length > 0) {
this.logFailures()
return false
}
const anySuccessfulCss =
this.cssFilesCnt == 0 ||
this.successes.findIndex((asset) => asset.type === this.TYPE_CSS) > -1
const anySuccessfulJS =
this.jsFilesCnt == 0 ||
this.successes.findIndex((asset) => asset.type === this.TYPE_JS) > -1
if (anySuccessfulCss && anySuccessfulJS) {
return true
}
this.console.warn(
`CSS or JS is missing from loaded assets; CSS: ${anySuccessfulCss}; JS: ${anySuccessfulJS}`,
)
return false
}
showTroubleLoading() {
try {
document.querySelector('.cdn-failback-error').classList.add('cdn-failback-error--show')
} catch (e) {
// do nothing
}
}
logFailures() {
this.console.group('The following assets had issues loading:')
const messages = this.failures.map((asset) => `${asset.src}: ${asset.reason}`)
messages.forEach((msg) => this.console.warn(msg))
this.console.groupEnd()
}
reloadIfIssue(ignoreTracking = false) {
const result = this.haveAssetsLoaded(ignoreTracking)
if (result === null || result === true) {
return
}
if (result === false) {
// ensures next attempt won't use the same CDN, as failed this time.
this.clearLastTriedCDN()
}
if (this.isReloading) {
this.console.warn(
'[RELOAD] Detected more issues loading assets, but we are already preparing to reload so no need to do anything',
)
return
}
if (window.navigator.onLine === false) {
this.console.warn("[RELOAD] Need to reload, but not online; won't try reloading")
this.showTroubleLoading()
return
}
const cdnFallback = this.getLoadAttempt() + 1
const maxCdnFallback = Math.min(this.getCdns().length, this.MAX_CDN_FALLBACK)
if (cdnFallback > maxCdnFallback) {
this.console.warn("[RELOAD] Hit maximum reload attempts, won't try reloading anymore")
this.showTroubleLoading()
return
}
let timeoutId = null
this.isReloading = true
const reloadClient = () => {
this.params.set(this.SEARCH_PARAM, cdnFallback)
this.console.warn('[RELOAD] Reloading client with URL: ' + this.params.toString())
window.clearTimeout(timeoutId)
window.location.search = this.params.toString()
}
timeoutId = window.setTimeout(
reloadClient.bind(this),
5 * 1000, // 5 seconds
)
this.cleanupServiceWorkers().then(reloadClient).catch(reloadClient)
}
cleanupServiceWorkers() {
const cleanupPromises = []
if ('serviceWorker' in navigator && window && window.caches != null) {
cleanupPromises.push(
new Promise((resolve) => {
window.caches
.keys()
.then((cacheKeys) =>
Promise.all(
cacheKeys.map((cacheKey) => window.caches.delete(cacheKey)),
),
)
.then(() => {
this.console.warn('[RELOAD] Removed all Service Worker caches')
resolve()
})
.catch((t) => {
this.console.warn(
'[RELOAD] Service worker cache keys could not be removed: ' +
t.message,
),
resolve()
})
}),
)
}
// unregister service worker
cleanupPromises.push(
new Promise((resolve) => {
navigator.serviceWorker
.getRegistration('/app/service-worker.js')
.then((swReg) => {
if (swReg) {
swReg
.unregister()
.then(() => {
this.console.warn('[RELOAD] Service worker unregistered')
resolve()
})
.catch((t) => {
this.console.warn(
'[RELOAD] Service worker could not be unregistered: ' +
t.message,
)
resolve()
})
} else {
resolve()
}
})
.catch((e) => {
this.console.warn(
'[RELOAD] Service worker could not be unregistered: ' + e.message,
)
resolve()
})
}),
)
return Promise.all(cleanupPromises)
}
}
function getPathnameFromAsset(asset) {
if (asset.startsWith('/')) {
return asset.slice(1)
}
try {
return new URL(asset).pathname.slice(1)
} catch {
return asset
}
}
function cdnLoadScript(tagName = 'head') {
return (asset) => {
window.watchdog.track('js')
const scriptE = document.createElement('script')
scriptE.onload = () => {
window.watchdog.ok(scriptE)
}
scriptE.onerror = () => {
window.watchdog.err(scriptE)
}
scriptE.src = window.watchdog.cdn + getPathnameFromAsset(asset)
scriptE.async = false
scriptE.crossOrigin = 'anonymous'
scriptE.nonce = document.documentElement.getAttribute('data-csp-nonce') || 'unknown-nonce'
document.getElementsByTagName(tagName)[0].appendChild(scriptE)
}
}
function cdnLoadLink(tagName = 'head') {
return (asset) => {
window.watchdog.track('css')
const linkE = document.createElement('link')
linkE.onload = () => {
window.watchdog.ok(linkE)
}
linkE.onerror = () => {
window.watchdog.err(linkE)
}
linkE.href = window.watchdog.cdn + getPathnameFromAsset(asset)
linkE.async = false
linkE.crossOrigin = 'anonymous'
linkE.rel = 'stylesheet'
linkE.nonce = document.documentElement.getAttribute('data-csp-nonce') || 'unknown-nonce'
document.getElementsByTagName(tagName)[0].appendChild(linkE)
}
}
window.watchdog = new CdnFailbackWatchdog(window.console)
window.watchdog.selectCDN()
window.cdnLoadScript = cdnLoadScript
window.cdnLoadLink = cdnLoadLink</script><script nonce="" data-webtasks-id="48fd3ef3-d6ea-4cf2">cdnLoadScript()("init-theme.424d6e9aca3f1406ddd0052b67231394.js");
cdnLoadScript()("checkUnsupportedBrowser.c96c50bcdd3a49f39a83b159f26b5b3c.js");
cdnLoadScript()("/assets/runtime.8ce64929dd0addb55bb5787d1d866de2.js");</script><script src="https://todoist.b-cdn.net/init-theme.424d6e9aca3f1406ddd0052b67231394.js" crossorigin="anonymous" data-webtasks-id="fcb88dba-af7f-4751"></script><script src="https://todoist.b-cdn.net/checkUnsupportedBrowser.c96c50bcdd3a49f39a83b159f26b5b3c.js" crossorigin="anonymous" data-webtasks-id="ddfc5fdf-6855-4add"></script><script src="https://todoist.b-cdn.net/assets/runtime.8ce64929dd0addb55bb5787d1d866de2.js" crossorigin="anonymous" data-webtasks-id="13739a11-9e0c-49e3"></script><script nonce="" data-webtasks-id="512876b1-5ff4-43ee">cdnLoadLink()("/assets/vendor~add~app~authentication~275fb47b.3bddbc7f0e2749783e460b54c1f6fab0.css");
cdnLoadLink()("/assets/vendor~add~app~253ae210.cecc6c91b0559c218c324a51b600ce1c.css");
cdnLoadLink()("/assets/app~d0ae3f07.2415fea43ce14de494a1bb15c0e0377f.css");
cdnLoadLink()("/assets/app~5a11b65b.789955acb2b0d1b96ce54fa7f1bdf022.css");
cdnLoadLink()("/assets/app~c714bc7b.3b9a3320fb1350deb46a6ab033b25dc2.css");
cdnLoadLink()("/assets/app~31e116db.a721f48b197617be0b1fe1f4a501a5f9.css");
cdnLoadLink()("/assets/app~fc66dfb5.801c0ac5f0ac081b675a6e6ffe084595.css");
cdnLoadLink()("/assets/app~2cb4426d.f8c583acb830ed5a9238cd39ea4c2b78.css");</script><link href="https://todoist.b-cdn.net/assets/vendor~add~app~authentication~275fb47b.3bddbc7f0e2749783e460b54c1f6fab0.css" crossorigin="anonymous" rel="stylesheet" data-webtasks-id="31b2ecba-1321-4e07"><link href="https://todoist.b-cdn.net/assets/vendor~add~app~253ae210.cecc6c91b0559c218c324a51b600ce1c.css" crossorigin="anonymous" rel="stylesheet" data-webtasks-id="94b44cf8-3759-4728"><link href="https://todoist.b-cdn.net/assets/app~d0ae3f07.2415fea43ce14de494a1bb15c0e0377f.css" crossorigin="anonymous" rel="stylesheet" data-webtasks-id="9e565264-9018-4e6a"><link href="https://todoist.b-cdn.net/assets/app~5a11b65b.789955acb2b0d1b96ce54fa7f1bdf022.css" crossorigin="anonymous" rel="stylesheet" data-webtasks-id="af69e1b5-dbc6-4814"><link href="https://todoist.b-cdn.net/assets/app~c714bc7b.3b9a3320fb1350deb46a6ab033b25dc2.css" crossorigin="anonymous" rel="stylesheet" data-webtasks-id="00ac0961-8abb-491b"><link href="https://todoist.b-cdn.net/assets/app~31e116db.a721f48b197617be0b1fe1f4a501a5f9.css" crossorigin="anonymous" rel="stylesheet" data-webtasks-id="33de1756-5eb7-4fc3"><link href="https://todoist.b-cdn.net/assets/app~fc66dfb5.801c0ac5f0ac081b675a6e6ffe084595.css" crossorigin="anonymous" rel="stylesheet" data-webtasks-id="dd7f1fd2-7afd-4812"><link href="https://todoist.b-cdn.net/assets/app~2cb4426d.f8c583acb830ed5a9238cd39ea4c2b78.css" crossorigin="anonymous" rel="stylesheet" data-webtasks-id="5aeec291-eeae-4f5c"><script async="" src="https://www.google-analytics.com/analytics.js" data-webtasks-id="0ae51562-1763-4813"></script><style data-webtasks-id="583553cf-44e5-4578">.cdn-failback-error {
display: none;
flex-direction: column;
justify-content: center;
align-items: center;
position: fixed;
height: calc(100% - 36px);
width: calc(100% - 36px);
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
'Apple Color Emoji', Helvetica, Arial, sans-serif, 'Segoe UI Emoji', 'Segoe UI Symbol';
padding: 18px;
background-color: white;
z-index: 1;
}
.cdn-failback-error h1 {
font-size: 24px;
}
.cdn-failback-error p {
font-size: 16px;
}
.cdn-failback-error p a {
color: #d1453b !important;
}
.cdn-failback-error.cdn-failback-error--show {
display: flex;
}</style><style data-webtasks-id="b34422aa-3944-48c6">body {
margin: 0;
}
.loading_screen {
position: fixed;
display: flex;
justify-content: center;
height: 100%;
width: 100%;
}
.loading_screen--loader {
width: 100px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.loading_screen--logo {
margin-bottom: 32px;
}
.loading_screen--spinner {
animation-name: circular-spinner;
animation-duration: 1.2s;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
.theme_dark .loading_screen {
background-color: #1f1f1f;
}
.theme_dark .loading_screen--logo .logo_bg {
fill: rgba(255, 255, 255, 0.87);
}
.theme_dark .loading_screen--logo .logo_stripe {
fill: #1f1f1f;
}
.theme_dark .loading_screen--spinner .ring_thumb {
fill: rgba(255, 255, 255, 0.87);
}
.theme_dark .loading_screen--spinner .ring_track {
fill: rgba(255, 255, 255, 0.4);
}
@keyframes circular-spinner {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}</style><script nonce="" data-webtasks-id="09c41c78-00b0-4435">(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.defer=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl+'&gtm_auth=BcR4sNCoRjSMVR5_xQ5zQA&gtm_preview=env-1&gtm_cookies_win=x';
var n=d.querySelector('[nonce]');n&&j.setAttribute('nonce',n.nonce||n.getAttribute('nonce'));f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-WQB95PC');</script><meta name="apple-mobile-web-app-title" content="Todoist" data-webtasks-id="3342431d-125c-4503"><meta name="apple-mobile-web-app-capable" content="yes" data-webtasks-id="96e26261-96b9-4478"><meta name="apple-mobile-web-app-status-bar-style" content="default" data-webtasks-id="39d40fa0-ef74-4364"><meta name="theme-color" content="#C24F3D" data-webtasks-id="dda5966e-4f4d-48ef"><link rel="apple-touch-startup-image" sizes="1024x1024" href="/app/manifest_icons/icon_1024x1024.098d1a14e2f871db82d8a2392d59b587.png" data-webtasks-id="4eb9bd84-4200-456e"><link rel="apple-touch-icon" sizes="1024x1024" href="/app/manifest_icons/icon_1024x1024.098d1a14e2f871db82d8a2392d59b587.png" data-webtasks-id="c66a6c83-cb59-4ca2"><link rel="apple-touch-icon" sizes="180x180" href="/app/manifest_icons/icon_180x180.d0c3ef3c6be29a9ca57ead5171bbebc4.png" data-webtasks-id="cbaa2798-ff92-44d0"><link rel="apple-touch-icon" sizes="167x167" href="/app/manifest_icons/icon_167x167.3a26fccf02024d9e908aa61a168c04b6.png" data-webtasks-id="40d281bd-a935-470c"><link rel="apple-touch-icon" sizes="152x152" href="/app/manifest_icons/icon_152x152.749dc17e04c34f6e3ade0c6ec90a827c.png" data-webtasks-id="93a232d2-a5f5-42cf"><link rel="apple-touch-icon" sizes="120x120" href="/app/manifest_icons/icon_120x120.4a19b1dbc4514d6e3e3929c28f912cc8.png" data-webtasks-id="09523df3-407b-4f05"><link rel="manifest" href="/app/manifest.48149c9f0c601e29a9554640f7bf5b4d.json" data-webtasks-id="dd1a0811-4aa8-4cf2"><link rel="stylesheet" type="text/css" href="https://todoist.b-cdn.net/assets/98.661794586db6155211b62b66452ea5b9.css" data-webtasks-id="901e5166-0253-4c88"><script charset="utf-8" src="https://todoist.b-cdn.net/assets/98.9917839217825cf4238394433c7f0e3f.js" data-webtasks-id="0ba75bce-9bc1-4820"></script><link rel="stylesheet" type="text/css" href="https://todoist.b-cdn.net/assets/99.8430aacde66c52603a2eb1e096e8bcbd.css" data-webtasks-id="ccbdae97-95dc-4c4e"><script charset="utf-8" src="https://todoist.b-cdn.net/assets/99.d7786603923961d6130df5a8fba7274c.js" data-webtasks-id="556cfde5-55ca-411f"></script><link rel="stylesheet" type="text/css" href="https://todoist.b-cdn.net/assets/100.b629ea0ccf140d381f747a0a9b43e143.css" data-webtasks-id="dc2f153a-076b-4373"><script charset="utf-8" src="https://todoist.b-cdn.net/assets/100.6ea9551355fba42b82ff5df17e65853f.js" data-webtasks-id="e9d3d5fa-e8c7-418c"></script><link rel="stylesheet" type="text/css" href="https://todoist.b-cdn.net/assets/101.ee8d052d1cae91032335580570810324.css" data-webtasks-id="8f8c6dd7-b337-47ae"><script charset="utf-8" src="https://todoist.b-cdn.net/assets/101.f11d4660ef102f5486e262cb7a74573e.js" data-webtasks-id="5c3a1d0a-c4f8-4d5f"></script><link rel="stylesheet" type="text/css" href="https://todoist.b-cdn.net/assets/102.9efc7d118af4be1061bd9cfe5b14a62c.css" data-webtasks-id="3ae7231d-a7a5-44fc"><script charset="utf-8" src="https://todoist.b-cdn.net/assets/102.d05d612ec9b832abf472584ac0e1c5ac.js" data-webtasks-id="9ddde05f-898f-492e"></script><link rel="stylesheet" type="text/css" href="https://todoist.b-cdn.net/assets/103.30a8daf0902dd7f54a756bb0aa66bbe8.css" data-webtasks-id="93dc0eb6-657b-4792"><script charset="utf-8" src="https://todoist.b-cdn.net/assets/103.97ecbf50c381b89d14ac4f2e5c210a28.js" data-webtasks-id="a0f1c3c9-8062-45a2"></script><link rel="stylesheet" type="text/css" href="https://todoist.b-cdn.net/assets/104.37ba6c86f74d760008e69bb9c65e5c86.css" data-webtasks-id="328beed3-49f0-4406"><script charset="utf-8" src="https://todoist.b-cdn.net/assets/104.b1e7e817baa13c9e657949961368452c.js" data-webtasks-id="8bb175fe-6161-493d"></script><link rel="stylesheet" type="text/css" href="https://todoist.b-cdn.net/assets/105.cac76b8228f2c73f9773c36700ed207c.css" data-webtasks-id="ded082d6-b47d-4d9f"><script charset="utf-8" src="https://todoist.b-cdn.net/assets/105.4a014ac94e66889011f326aaf5f6080f.js" data-webtasks-id="b8d60810-5c41-497b"></script><link rel="stylesheet" type="text/css" href="https://todoist.b-cdn.net/assets/106.2aa7fbe90fd5d34c5dc8e60b594ee385.css" data-webtasks-id="a00064cb-7d75-4d59"><script charset="utf-8" src="https://todoist.b-cdn.net/assets/106.28e67f981dfb80835d1e0a7a481bd567.js" data-webtasks-id="8abf7c14-df08-445a"></script><link rel="stylesheet" type="text/css" href="https://todoist.b-cdn.net/assets/107.3068545f246fddc0614457869806de9e.css" data-webtasks-id="788673d1-6db0-42da"><script charset="utf-8" src="https://todoist.b-cdn.net/assets/107.012f4b3a870c0e1638ae35137e9d040e.js" data-webtasks-id="577dc764-cc74-41b9"></script><link rel="stylesheet" type="text/css" href="https://todoist.b-cdn.net/assets/108.ab835c81ab951809ee09ba2994a4a1ea.css" data-webtasks-id="41006fa8-8c00-4a71"><script charset="utf-8" src="https://todoist.b-cdn.net/assets/108.549d9ad9f48b6138ad516c2437205792.js" data-webtasks-id="719a8460-d3bf-4990"></script><link rel="stylesheet" type="text/css" href="https://todoist.b-cdn.net/assets/109.9588611b5216e07907250f927acc895c.css" data-webtasks-id="9dfd0cf2-9a67-4cd8"><script charset="utf-8" src="https://todoist.b-cdn.net/assets/109.f3d53bb67902a3ccf2c58ea0fd5c8673.js" data-webtasks-id="59d3fa6e-2246-4158"></script><link rel="stylesheet" type="text/css" href="https://todoist.b-cdn.net/assets/110.6fc99b0005bb204116467384c0dc8905.css" data-webtasks-id="4480a35b-a001-45fb"><script charset="utf-8" src="https://todoist.b-cdn.net/assets/110.64ddcabfe10bce324fbc0971e99b28cf.js" data-webtasks-id="561c9c62-c024-46be"></script><style data-tiptap-style="" data-webtasks-id="ed6eca0f-4a11-49e1">.ProseMirror {
position: relative;
}
.ProseMirror {
word-wrap: break-word;
white-space: pre-wrap;
white-space: break-spaces;
-webkit-font-variant-ligatures: none;
font-variant-ligatures: none;
font-feature-settings: "liga" 0; /* the above doesn't seem to work in Edge */
}
.ProseMirror [contenteditable="false"] {
white-space: normal;
}
.ProseMirror [contenteditable="false"] [contenteditable="true"] {
white-space: pre-wrap;
}
.ProseMirror pre {
white-space: pre-wrap;
}
img.ProseMirror-separator {
display: inline !important;
border: none !important;
margin: 0 !important;
width: 1px !important;
height: 1px !important;
}
.ProseMirror-gapcursor {
display: none;
pointer-events: none;
position: absolute;
margin: 0;
}
.ProseMirror-gapcursor:after {
content: "";
display: block;
position: absolute;
top: -2px;
width: 20px;
border-top: 1px solid black;
animation: ProseMirror-cursor-blink 1.1s steps(2, start) infinite;
}
@keyframes ProseMirror-cursor-blink {
to {
visibility: hidden;
}
}
.ProseMirror-hideselection *::selection {
background: transparent;
}
.ProseMirror-hideselection *::-moz-selection {
background: transparent;
}
.ProseMirror-hideselection * {
caret-color: transparent;
}
.ProseMirror-focused .ProseMirror-gapcursor {
display: block;
}
.tippy-box[data-animation=fade][data-state=hidden] {
opacity: 0
}</style></head><body data-webtasks-id="164c066c-ba86-48a8" style="overflow: hidden; padding-right: 0px;" data-dialog-body-scroll=":rg:"><div class="cdn-failback-error" data-webtasks-id="10e3334b-0515-4809" data-aria-hidden="true" aria-hidden="true"><svg class="loading_screen--logo" width="64" height="64" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="b074f2a9-af19-4f4d"><g fill="none" fill-rule="evenodd" data-webtasks-id="ad548ed9-fa68-4ab5"><path class="logo_bg" d="M56.000016 0h-48c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V8c0-4.4-3.6-8-8-8" fill="#E44332" data-webtasks-id="8d227f26-e83f-4b00"></path><g class="logo_stripe" fill="#FFF" data-webtasks-id="28c8fa71-2239-4ba6"><path d="M13.672368 29.985936c1.1304-.65152 25.34368-14.58496 25.89952-14.90592.5544-.32016.58224-1.30224-.03824-1.65632-.62096-.35408-1.79984-1.02368-2.23856-1.28048-.44656-.26048-1.24976-.40528-1.99472.02384-.30928.1784-21.00256 12.0768-21.69424
12.46992-.82784.47072-1.85248.4768-2.67744-.0008-.65152-.37696-10.92864-6.3488-10.92864-6.3488v5.39712c2.66016 1.54912 9.2744 5.40128 10.87744 6.30624.95664.54016 1.87232.52688 2.79488-.0048" data-webtasks-id="4ea36379-8145-4a8e"></path><path d="M13.672368 40.76952c1.1304-.65152 25.34368-14.58496 25.89952-14.90592.5544-.32.58224-1.30224-.03824-1.65632-.62096-.35408-1.79984-1.02368-2.23856-1.28048-.44656-.26048-1.24976-.40528-1.99472.02384-.30928.1784-21.00256 12.0768-21.69424
12.46992-.82784.47072-1.85248.4768-2.67744-.0008-.65152-.37696-10.92864-6.3488-10.92864-6.3488v5.39712c2.66016 1.54912 9.2744 5.40128 10.87744 6.30624.95664.54016 1.87232.52688 2.79488-.0048" data-webtasks-id="2b9a0043-b80a-4f9f"></path><path d="M13.672368 51.55312c1.1304-.65152 25.34368-14.58496 25.89952-14.90592.5544-.32.58224-1.30224-.03824-1.65632-.62096-.35408-1.79984-1.02368-2.23856-1.28048-.44656-.26048-1.24976-.40528-1.99472.02384-.30928.1784-21.00256 12.0768-21.69424
12.46992-.82784.47072-1.85248.4768-2.67744-.0008-.65152-.37696-10.92864-6.3488-10.92864-6.3488v5.39712c2.66016 1.54912 9.2744 5.40128 10.87744 6.30624.95664.54016 1.87232.52688 2.79488-.0048" data-webtasks-id="ca9ee739-152f-46aa"></path></g></g></svg><h1 data-webtasks-id="0024dda8-222b-4ec2">Todoist couldn't load the required files.</h1><p data-webtasks-id="20a0927c-d050-47e1">Please check your network connection, or <a href="https://todoist.com/contact" data-webtasks-id="2b2abf5d-ac46-45f8">contact support</a> if the problem persists.</p></div><noscript data-webtasks-id="d45640cd-6ef9-473f" data-aria-hidden="true" aria-hidden="true"><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WQB95PC&gtm_auth=BcR4sNCoRjSMVR5_xQ5zQA&gtm_preview=env-1&gtm_cookies_win=x" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript><div id="todoist_app" data-webtasks-id="fc53aeb3-1074-44b0"><div id="page_background" data-webtasks-id="42c424a4-143a-4615"><a class="skiplink" href="#content" data-webtasks-id="a6c3cc64-e97f-4867" data-aria-hidden="true" aria-hidden="true">Skip to task list</a><div data-testid="top_bar" id="top_bar" data-webtasks-id="15883d04-1fde-490d" data-aria-hidden="true" aria-hidden="true"><div id="top_bar_inner" role="banner" aria-label="Top Banner: contains Search, Quick Add, Productivity, Help, Notifications, and Settings" data-webtasks-id="f993fec6-5b05-4a43"><div class="left_control" data-webtasks-id="79a6ee36-59e6-49e0"><div data-webtasks-id="fe64bcfb-0e85-40ba"><button type="button" aria-label="Main menu" role="switch" aria-checked="true" data-gtm-id="burger-menu-toggle" class="left_menu_toggle top_bar_btn" tabindex="0" data-webtasks-id="bf4afbff-2b3b-4f7b"><svg viewBox="0 0 24 24" class="close_icon" width="24" height="24" data-webtasks-id="6b2a208d-a624-4701"><path fill="currentColor" fill-rule="nonzero" d="M5.146 5.146a.5.5 0 0 1 .708 0L12 11.293l6.146-6.147a.5.5 0 0 1 .638-.057l.07.057a.5.5 0 0 1 0 .708L12.707 12l6.147 6.146a.5.5 0 0 1 .057.638l-.057.07a.5.5 0 0 1-.708 0L12 12.707l-6.146 6.147a.5.5 0 0 1-.638.057l-.07-.057a.5.5 0 0 1 0-.708L11.293 12 5.146 5.854a.5.5 0 0 1-.057-.638z" data-webtasks-id="86c99200-b941-46af"></path></svg><svg class="menu_icon" width="24" height="24" viewBox="0 0 24 24" data-webtasks-id="23dc880a-ff63-455d"><path fill="currentColor" fill-rule="evenodd" d="M4.5 5h15a.5.5 0 110 1h-15a.5.5 0 010-1zm0 6h15a.5.5 0 110 1h-15a.5.5 0 110-1zm0 6h15a.5.5 0 110 1h-15a.5.5 0 110-1z" data-webtasks-id="30ca56fa-af11-4555"></path></svg></button></div><button type="button" aria-label="Go to Home view" data-gtm-id="burger-home-button" class="top_bar_btn home_btn" tabindex="0" data-webtasks-id="3d88d72c-00ac-4037"><svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="fae854c2-de7c-49cb"><path fill="currentColor" d="M12.527 3.075c.35.104.64.263 1.27.876L19.1 9.123c.374.364.49.505.601.678.11.174.185.351.232.552.042.178.062.34.066.742L20 17.718c0 .446-.046.607-.134.77a.906.906 0 01-.378.378c-.163.088-.324.134-.77.134H14v-4.718c0-.446-.046-.607-.134-.77a.906.906 0 00-.378-.378c-.142-.077-.284-.122-.616-.132L12.718 13h-1.436c-.446 0-.607.046-.77.134a.906.906 0 00-.378.378c-.077.142-.122.284-.132.616l-.002.154V19H5.282c-.446 0-.607-.046-.77-.134a.906.906 0 01-.378-.378c-.088-.163-.134-.324-.134-.77v-6.462c0-.522.02-.703.067-.903.047-.2.121-.378.232-.552l.077-.113c.098-.134.233-.282.524-.565l5.304-5.172c.629-.613.92-.772 1.269-.876a1.82 1.82 0 011.054 0zm-.286.958a.825.825 0 00-.482 0c-.18.054-.326.139-.63.418l-.227.216L5.598 9.84c-.3.293-.385.39-.456.5a.76.76 0 00-.102.242c-.026.112-.037.224-.04.531l.002 6.807.005.073.074.006L8.999 18 9 14.268l.003-.17c.013-.448.083-.749.249-1.058a1.9 1.9 0 01.788-.788c.306-.164.6-.234 1.043-.249l.199-.003h1.45l.17.003c.448.013.749.083 1.058.249.337.18.608.45.788.788.164.306.234.6.249 1.043l.003.199L14.999 18l3.92-.002.073-.006.006-.073.002-.2v-6.615l-.005-.218a1.494 1.494 0 00-.035-.305.747.747 0 00-.102-.242l-.059-.084a3.571 3.571 0 00-.294-.315l-5.407-5.273c-.425-.414-.604-.545-.798-.615l-.06-.019z" data-webtasks-id="93e0b184-82e9-4ab2"></path></svg></button><div id="quick_find" data-testid="quick_find_container" class="" style="width: 218px;" data-webtasks-id="ca27d560-d90b-4c8f"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" aria-hidden="true" class="search_icon" data-webtasks-id="0a97023d-fe7b-4de2"><path d="M10.5 3a7.5 7.5 0 015.645 12.438l4.709 4.708a.502.502 0 01-.708.708l-4.708-4.709A7.5 7.5 0 1110.5 3zm0 1a6.5 6.5 0 100 13 6.5 6.5 0 000-13z" fill="currentColor" data-webtasks-id="20c01673-527b-4067"></path></svg><div class="_2a3b75a1 _8c75067a" data-webtasks-id="ce6bf57c-920d-4a8a"><input autocomplete="off" id=":r0:" role="combobox" aria-autocomplete="none" aria-haspopup="listbox" aria-expanded="false" class="quick_find__input" placeholder="Search" aria-label="Quick search" aria-keyshortcuts="/" value="" data-webtasks-id="970d98de-fd8f-49d5"></div><a aria-label="How to use search" href="https://todoist.com/help/articles/360000394949" rel="noopener noreferrer" target="_blank" class="help_icon" tabindex="0" data-webtasks-id="9840daad-ce1b-47dc"><svg width="24" height="24" aria-hidden="true" data-webtasks-id="8ef294aa-1ff5-4f30"><g fill="none" fill-rule="evenodd" data-webtasks-id="3489162f-de96-4728"><path fill="currentColor" d="M11.9 16.5c-.46 0-.8-.35-.8-.85s.34-.86.8-.86c.48 0 .8.36.8.86s-.32.85-.8.85zM9.5 9.87c.06-1.32.9-2.37 2.54-2.37 1.46 0 2.46.95 2.46 2.21 0 .96-.47 1.64-1.22 2.11-.73.46-.94.8-.94 1.45v.4h-1.02v-.57c0-.8.37-1.36 1.16-1.86.68-.43.94-.82.94-1.47 0-.76-.56-1.32-1.43-1.32-.87 0-1.43.55-1.5 1.42H9.5z" data-webtasks-id="65c089e1-a668-4be7"></path><circle cx="12" cy="12" r="7.5" stroke="currentColor" data-webtasks-id="94b2a5d5-7c25-430c"></circle></g></svg></a><button class="close_icon" aria-label="Close Search" data-webtasks-id="0c12e19a-dce7-44f1"><svg viewBox="0 0 24 24" class="" width="18" height="18" aria-hidden="true" data-webtasks-id="a91258f0-5ff2-4db8"><path fill="currentColor" fill-rule="nonzero" d="M5.146 5.146a.5.5 0 0 1 .708 0L12 11.293l6.146-6.147a.5.5 0 0 1 .638-.057l.07.057a.5.5 0 0 1 0 .708L12.707 12l6.147 6.146a.5.5 0 0 1 .057.638l-.057.07a.5.5 0 0 1-.708 0L12 12.707l-6.146 6.147a.5.5 0 0 1-.638.057l-.07-.057a.5.5 0 0 1 0-.708L11.293 12 5.146 5.854a.5.5 0 0 1-.057-.638z" data-webtasks-id="d1ac1e9e-4ec0-41f6"></path></svg></button><button class="shortcut_hint" aria-label="Quick search" aria-keyshortcuts="/" tabindex="0" data-webtasks-id="8480a3a3-e21f-4f0d">/</button></div></div><div aria-label="Menu" class="top_right_button_group" role="group" data-webtasks-id="bc7fef9e-adfc-4a9a"><button data-testid="upgrade-button-top-bar" data-gtm-id="upgrade-button-top-bar" tabindex="0" type="button" aria-disabled="false" class="Zx8lDnR _8313bd46 _54d56775 _8b7f1a82 _2a3b75a1 _56a651f6" data-gtm-vis-recent-on-screen-39724453_306="7768" data-gtm-vis-first-on-screen-39724453_306="7768" data-gtm-vis-total-visible-time-39724453_306="100" data-gtm-vis-has-fired-39724453_306="1" data-webtasks-id="b768c9ac-0849-4ff5"><div aria-hidden="true" class="a44d4350 _2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="0fa99454-ed7c-4c9d"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" data-webtasks-id="9fbff046-134f-412c"><g fill="none" fill-rule="evenodd" data-webtasks-id="e12f20f9-5e54-4dfc"><path stroke="#FFD093" fill="#FFD093" stroke-linejoin="bevel" d="M8.2 18.6l3.8-2.3 3.8 2.3a.8.8 0 0 0 1-.9l-.9-4.2 3.3-2.8a.8.8 0 0 0-.4-1.3L14.4 9l-1.7-4a.8.8 0 0 0-1.4 0L9.6 9l-4.4.4a.8.8 0 0 0-.4 1.3l3.3 2.8-1 4.2a.8.8 0 0 0 1.1.9z" data-webtasks-id="e50dea06-9468-4dd7"></path></g></svg></div><span class="_0051d171 _2a3b75a1 f973eed0 f6342c26" data-webtasks-id="2b0b6ad5-1277-488d">Upgrade to Pro</span></button><button type="button" id="quick_add_task_holder" data-track="navigation|quick_add" aria-label="Quick Add" class="top_bar_btn" tabindex="0" data-webtasks-id="46979c1f-3100-47af"><svg width="24" height="24" viewBox="0 0 24 24" data-webtasks-id="3244a4da-8a3d-43a5"><g fill="none" fill-rule="evenodd" transform="translate(4 3)" data-webtasks-id="d45b4e83-ac9d-4acd"><mask id="jd4FBg" fill="#fff" data-webtasks-id="771a52cf-6f05-4f10"><path d="M9 8h7a.5.5 0 1 1 0 1H9v7a.5.5 0 1 1-1 0V9H1a.5.5 0 0 1 0-1h7V1a.5.5 0 0 1 1 0v7z" data-webtasks-id="5144feb5-f67f-4576"></path></mask><g mask="url(#jd4FBg)" data-webtasks-id="2b07bc43-fd76-4a3e"><path fill="currentColor" d="M-4-3h24v24H-4z" data-webtasks-id="bfc20c02-768b-4f34"></path></g></g></svg></button><button type="button" aria-label="Productivity" id="top_completed_holder" data-track="navigation|karma" class="completed_pie_stat top_bar_btn" tabindex="0" data-webtasks-id="5cce188b-e028-4801"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" data-webtasks-id="55ef48e2-8227-4edc"><g fill="none" fill-rule="evenodd" data-webtasks-id="42468a1f-832e-4094"><g fill="currentColor" fill-rule="nonzero" data-webtasks-id="be395b6d-30c2-430c"><g data-webtasks-id="814a4a97-8a41-4cb7"><g data-webtasks-id="6b5005a6-205a-48b9"><path d="M12 3c4.97 0 9 4.03 9 9s-4.03 9-9 9-9-4.03-9-9 4.03-9 9-9zm0 1c-4.418 0-8 3.582-8 8 0 .702.09 1.383.26 2.031l2.886-2.885c.196-.195.512-.195.708 0l2.646 2.647 4.793-4.794L13 9c-.276 0-.5-.224-.5-.5s.224-.5.5-.5h3.52l.052.005L16.5 8c.036 0 .071.004.105.011l.046.012.04.015c.014.005.027.012.04.019.013.006.025.013.036.02l.035.025c.014.01.027.02.04.033l.012.011.011.013c.012.012.023.025.033.039l-.044-.052c.026.027.05.056.069.087l.02.034.02.042.014.04c.005.015.009.03.012.046l.006.033.005.051V12c0 .276-.224.5-.5.5s-.5-.224-.5-.5V9.706l-5.146 5.148c-.196.195-.512.195-.708 0L7.5 12.207 4.618 15.09C5.827 17.974 8.677 20 12 20c4.418 0 8-3.582 8-8s-3.582-8-8-8z" transform="translate(-564 -480) translate(528 444) translate(36 36)" data-webtasks-id="35121fce-979d-4329"></path></g></g></g></g></svg><span class="count" data-webtasks-id="5a9f0a1d-f2a2-4b95">0/5</span></button><button data-command="" data-disclosure="" aria-expanded="false" id="help_btn" aria-haspopup="menu" aria-label="Help &amp; Feedback" tabindex="0" class="reactist_menubutton top_bar_btn" type="button" data-webtasks-id="fcc46279-9262-4e8d"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" aria-hidden="true" data-webtasks-id="5d392cc0-83f8-4d05"><path d="M12 3a9 9 0 11-.001 18.001A9 9 0 0112 3zm0 1a8 8 0 100 16 8 8 0 000-16zm-.093 10.794c.47 0 .802.355.802.856 0 .495-.331.85-.802.85-.471 0-.808-.355-.808-.85 0-.501.337-.856.808-.856zm.128-7.294c1.465 0 2.465.954 2.465 2.213 0 .96-.47 1.639-1.215 2.11-.738.458-.948.8-.948 1.443v.397H11.32v-.562c-.006-.808.366-1.358 1.163-1.86.674-.433.936-.818.936-1.473 0-.758-.559-1.314-1.425-1.314-.878 0-1.436.544-1.5 1.418H9.5c.064-1.32.901-2.372 2.535-2.372z" fill="currentColor" fill-rule="nonzero" data-webtasks-id="bd5a6a00-2753-43e1"></path></svg></button><button aria-owns="notification_popup" aria-label="Notifications" aria-controls="notification_popup" aria-expanded="false" aria-haspopup="listbox" type="button" aria-disabled="false" tabindex="0" class="c2qnPuu _8313bd46 _7a4dbd5f _5e45d59f _8644eccb _2a3b75a1" data-webtasks-id="73a3f098-951e-440f"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" data-webtasks-id="515c92ca-af31-4aff"><path d="M12 3a5.75 5.75 0 015.75 5.75c0 3.24.682 5.875 2.03 7.927A1.5 1.5 0 0118.525 19H14.5a2.5 2.5 0 01-5 0H5.475a1.501 1.501 0 01-1.254-2.323C5.568 14.625 6.25 11.989 6.25 8.75A5.75 5.75 0 0112 3zm1.5 16h-3a1.5 1.5 0 003 0zM12 4a4.75 4.75 0 00-4.75 4.75c0 3.423-.731 6.248-2.193 8.476a.5.5 0 00.418.774h13.05a.5.5 0 00.418-.774c-1.462-2.227-2.193-5.053-2.193-8.476A4.75 4.75 0 0012 4z" fill="currentColor" fill-rule="nonzero" data-webtasks-id="1dcc3d79-a72b-4dc3"></path></svg></button><button data-command="" data-disclosure="" aria-expanded="false" id=":r2:" aria-haspopup="menu" aria-label="Settings" tabindex="0" class="reactist_menubutton top_bar_btn settings_btn" type="button" data-webtasks-id="1e72b2b0-b2de-43e9"><div class="+syWHcL _0J7x-Vo settings_avatar _2a3b75a1" data-webtasks-id="e342e87b-3b75-4fcc"><img src="https://dcff1xvirvpfp.cloudfront.net/e0bb2b38dfa4453db86eeebe2f5f504b_big.jpg" alt="webtasks.navigator" data-webtasks-id="d3598072-bf80-4b5c"></div></button></div></div></div><div id="app_holder" data-webtasks-id="8d4eada9-f36c-459c" data-aria-hidden="true" aria-hidden="true"><div id="content_wrapper" data-webtasks-id="226fc1b5-19d0-476f"><div class="left_menu_overlay" data-webtasks-id="3851a5b5-5f9a-40bf"></div><div id="left_menu" class="_2a3b75a1 _509a57b4 _1fb9d90e" style="width: 305px;" data-webtasks-id="1ff5d2ac-7257-4f66"><div role="navigation" id="left_menu_inner" aria-label="Main Navigation: contains Projects, Labels, and Filters" class="_2a3b75a1 _509a57b4 _1fb9d90e _4a93668a" style="gap: var(--reactist-spacing-large); width: 305px;" data-webtasks-id="23dfced6-a576-4fcc"><ul aria-label="Main filters" data-testid="top-sidebar-nav-items" id="top-menu" class="A-1+3VRDSVrGqFoUjyOVqA== focus-marker-enabled-within _2a3b75a1" data-webtasks-id="e4bf0207-e757-43e9"><li id="filter_inbox" class="iydsj+G" data-id="2315339881" data-track="navigation|inbox" disabled="" draggable="false" data-webtasks-id="c26808e4-cff8-4d88"><div data-sidebar-list-item="true" class="eYDM03d0TdWUmvQvarxM6w== _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="aba3b7cd-0e26-4c37"><div class="bwinE4g8Ubo+bdRFBhZqsg== _2a3b75a1 _509a57b4 cd4c8183 e5a9206f _50ba6b6b _4a93668a _34cd2b5e" data-webtasks-id="5fdf1def-bf58-436d"><a aria-label="Inbox, 27 tasks" tabindex="0" href="/app/project/2315339881" data-webtasks-id="2fb95428-7c37-408a"><span aria-hidden="true" class="nyM4MbjjB+aCdYL9moVpWA==" data-webtasks-id="cd1c20ec-6b93-4a48"><svg width="24" height="24" viewBox="0 0 24 24" class="Dd3PmF2g5h93YIf1bCDdiA==" data-webtasks-id="f1fdbe01-7ea5-4589"><g fill="currentColor" fill-rule="nonzero" data-webtasks-id="a1f68d50-6a0b-4ee4"><path d="M10 14.5a2 2 0 104 0h5.5V18a1.5 1.5 0 01-1.5 1.5H6A1.5 1.5 0 014.5 18v-3.5H10z" opacity="0.1" data-webtasks-id="e47b675d-fa57-4ef2"></path><path d="M8.062 4h7.876a2 2 0 011.94 1.515l2.062 8.246a2 2 0 01.06.485V18a2 2 0 01-2 2H6a2 2 0 01-2-2v-3.754a2 2 0 01.06-.485l2.06-8.246A2 2 0 018.061 4zm0 1a1 1 0 00-.97.757L5.03 14.004a1 1 0 00-.03.242V18a1 1 0 001 1h12a1 1 0 001-1v-3.754a1 1 0 00-.03-.242l-2.06-8.247A1 1 0 0015.94 5H8.061zM12 17.25A2.75 2.75 0 019.295 15H7a.5.5 0 110-1h2.75a.5.5 0 01.5.5 1.75 1.75 0 003.5 0 .5.5 0 01.5-.5H17a.5.5 0 110 1h-2.295A2.75 2.75 0 0112 17.25z" data-webtasks-id="328b921e-c225-4286"></path></g></svg></span><span class="FnFY2YlPR10DcnOkjvMMmA==" data-webtasks-id="82550558-9186-499c">Inbox</span></a><span data-project-actions="true" data-webtasks-id="c23a2e2e-f19a-4f27"><div class="fgALZGUA6SZg9blSarq2hg== _2a3b75a1 _9015266f" data-webtasks-id="cdb5cc9a-99b8-491b"><span aria-hidden="true" class="AuiqUdaGFITJcNpaWKvZFA== _2a3b75a1" data-webtasks-id="bcaa2ba0-bd25-4d14">27</span></div></span></div></div></li><li id="filter_today" data-track="navigation|today" class="" data-webtasks-id="df8174cd-c7bd-47f4"><div data-sidebar-list-item="true" class="eYDM03d0TdWUmvQvarxM6w== _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="934abf98-71d0-4ed2"><div class="bwinE4g8Ubo+bdRFBhZqsg== _2a3b75a1 _509a57b4 cd4c8183 e5a9206f _50ba6b6b _4a93668a _34cd2b5e" data-webtasks-id="50d0aa7e-ef51-4f13"><a aria-label="Today, 4 tasks" tabindex="0" href="/app/today" data-webtasks-id="a315348e-3b76-4319"><span aria-hidden="true" class="nyM4MbjjB+aCdYL9moVpWA==" data-webtasks-id="d21bd3c9-7b97-4668"><svg width="24" height="24" viewBox="0 0 24 24" class="ONBJEQtK++jnfUWJ3V90Dw==" data-webtasks-id="24d440d4-4714-4295"><g fill="currentColor" fill-rule="evenodd" data-webtasks-id="100bac0a-6aeb-4b96"><path fill-rule="nonzero" d="M6 4.5h12A1.5 1.5 0 0 1 19.5 6v2.5h-15V6A1.5 1.5 0 0 1 6 4.5z" opacity=".1" data-webtasks-id="7aee0df0-7280-44d8"></path><path fill-rule="nonzero" d="M6 4h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2zm0 1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H6zm1 3h10a.5.5 0 1 1 0 1H7a.5.5 0 0 1 0-1z" data-webtasks-id="8014f7de-22cc-4414"></path><text font-family="-apple-system, system-ui, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'" font-size="9" transform="translate(4 2)" font-weight="500" data-webtasks-id="8ce417bc-1f26-4193"><tspan x="8" y="15" text-anchor="middle" data-webtasks-id="ea388613-2637-441c">03</tspan></text></g></svg></span><span class="FnFY2YlPR10DcnOkjvMMmA==" data-webtasks-id="21a5272c-05cb-4629">Today</span></a><span data-project-actions="true" data-webtasks-id="54ee2b66-3fbf-4b10"><div class="fgALZGUA6SZg9blSarq2hg== _2a3b75a1 _9015266f" data-webtasks-id="de9e6086-5a9a-4eff"><span aria-hidden="true" class="AuiqUdaGFITJcNpaWKvZFA== mKhIUVyJYf3pexnRkJu3eA== _2a3b75a1" data-webtasks-id="bfa4e663-ca79-4348">4</span></div></span></div></div></li><li id="filter_upcoming" data-track="navigation|upcoming" data-webtasks-id="0d79d399-eff5-4ba3"><div data-sidebar-list-item="true" class="eYDM03d0TdWUmvQvarxM6w== _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="96794809-1ce6-41a2"><div class="bwinE4g8Ubo+bdRFBhZqsg== _2a3b75a1 _509a57b4 cd4c8183 e5a9206f _50ba6b6b _4a93668a _34cd2b5e" data-webtasks-id="7215c135-9c53-4bc5"><a aria-label="Upcoming" tabindex="0" href="/app/upcoming" data-webtasks-id="bbe3ddf9-fba7-4f8e"><span aria-hidden="true" class="nyM4MbjjB+aCdYL9moVpWA==" data-webtasks-id="6fc716bf-10e1-4c0b"><svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class="SWWJ2mDmoJ5jpYGsCY5nBA==" data-webtasks-id="b6643132-09e7-446a"><g fill="currentColor" fill-rule="nonzero" data-webtasks-id="4c375ace-e9e6-4569"><path d="M6 4.5h12A1.5 1.5 0 0119.5 6v2.5h-15V6A1.5 1.5 0 016 4.5z" opacity="0.1" data-webtasks-id="d8370e8e-c2c2-46f7"></path><path d="M6 4h12a2 2 0 012 2v12a2 2 0 01-2 2H6a2 2 0 01-2-2V6a2 2 0 012-2zm0 1a1 1 0 00-1 1v12a1 1 0 001 1h12a1 1 0 001-1V6a1 1 0 00-1-1H6zm10 12a1 1 0 110-2 1 1 0 010 2zm-4 0a1 1 0 110-2 1 1 0 010 2zm-4 0a1 1 0 110-2 1 1 0 010 2zm8-4a1 1 0 110-2 1 1 0 010 2zm-4 0a1 1 0 110-2 1 1 0 010 2zm-4 0a1 1 0 110-2 1 1 0 010 2zM7 8h10a.5.5 0 110 1H7a.5.5 0 010-1z" data-webtasks-id="d925c59e-6737-47d7"></path></g></svg></span><span class="FnFY2YlPR10DcnOkjvMMmA==" data-webtasks-id="e248cd47-cc1d-4d88">Upcoming</span></a><span data-project-actions="true" data-webtasks-id="a3306d90-bf28-4cce"><div class="_2a3b75a1 _9015266f" data-webtasks-id="4054b995-bed9-4e13"></div></span></div></div></li><li id="filters_labels" data-track="navigation|filters-labels" data-webtasks-id="cb16a49e-f060-4740" class=""><div data-sidebar-list-item="true" class="eYDM03d0TdWUmvQvarxM6w== _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="6cb2879b-1ce1-470b"><div class="bwinE4g8Ubo+bdRFBhZqsg== _2a3b75a1 _509a57b4 cd4c8183 e5a9206f _50ba6b6b _4a93668a _34cd2b5e" data-webtasks-id="187818f4-f66a-4ac5"><a aria-label="Filters &amp; Labels" tabindex="0" href="/app/filters-labels" data-webtasks-id="1f36078c-2b1f-4a91"><span aria-hidden="true" class="nyM4MbjjB+aCdYL9moVpWA==" data-webtasks-id="0ab88f80-2768-4831"><svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg" class="yeJ7DFSh0CB61w0UHm64kQ==" data-webtasks-id="d4d17d27-fe7d-4eb2"><path opacity="0.1" fill-rule="evenodd" clip-rule="evenodd" d="M13 6.5A1.5 1.5 0 0114.5 5h3A1.5 1.5 0 0119 6.5v3a1.5 1.5 0 01-1.5 1.5h-3A1.5 1.5 0 0113 9.5v-3zM6.5 13A1.5 1.5 0 005 14.5v3A1.5 1.5 0 006.5 19h3a1.5 1.5 0 001.5-1.5v-3A1.5 1.5 0 009.5 13h-3zm8 0a1.5 1.5 0 00-1.5 1.5v3a1.5 1.5 0 001.5 1.5h3a1.5 1.5 0 001.5-1.5v-3a1.5 1.5 0 00-1.5-1.5h-3zm-8-8A1.5 1.5 0 005 6.5v3A1.5 1.5 0 006.5 11h3A1.5 1.5 0 0011 9.5v-3A1.5 1.5 0 009.5 5h-3z" fill="currentColor" data-webtasks-id="f040482e-f8a2-436e"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M17.5 6h-3a.5.5 0 00-.5.5v3a.5.5 0 00.5.5h3a.5.5 0 00.5-.5v-3a.5.5 0 00-.5-.5zm-3-1A1.5 1.5 0 0013 6.5v3a1.5 1.5 0 001.5 1.5h3A1.5 1.5 0 0019 9.5v-3A1.5 1.5 0 0017.5 5h-3zm-8 9h3a.5.5 0 01.5.5v3a.5.5 0 01-.5.5h-3a.5.5 0 01-.5-.5v-3a.5.5 0 01.5-.5zm-1.5.5A1.5 1.5 0 016.5 13h3a1.5 1.5 0 011.5 1.5v3A1.5 1.5 0 019.5 19h-3A1.5 1.5 0 015 17.5v-3zm9.5-.5h3a.5.5 0 01.5.5v3a.5.5 0 01-.5.5h-3a.5.5 0 01-.5-.5v-3a.5.5 0 01.5-.5zm-1.5.5a1.5 1.5 0 011.5-1.5h3a1.5 1.5 0 011.5 1.5v3a1.5 1.5 0 01-1.5 1.5h-3a1.5 1.5 0 01-1.5-1.5v-3zM6.5 6h3a.5.5 0 01.5.5v3a.5.5 0 01-.5.5h-3a.5.5 0 01-.5-.5v-3a.5.5 0 01.5-.5zM5 6.5A1.5 1.5 0 016.5 5h3A1.5 1.5 0 0111 6.5v3A1.5 1.5 0 019.5 11h-3A1.5 1.5 0 015 9.5v-3z" fill="currentColor" data-webtasks-id="ef42943e-940b-43c9"></path></svg></span><span class="FnFY2YlPR10DcnOkjvMMmA==" data-webtasks-id="e7b1eb22-f4dc-4b6a">Filters &amp; Labels</span></a><span data-project-actions="true" data-webtasks-id="83858151-b7de-4e8f"><div class="_2a3b75a1 _9015266f" data-webtasks-id="5fd72f2c-aa87-4fcd"></div></span></div></div></li></ul><div class="_2a3b75a1" data-webtasks-id="abbbe627-a0bf-4f89"><div data-expansion-panel-header="true" class="_67vYS3K focus-marker-enabled-within _2a3b75a1 _9015266f _4eb1d749" data-webtasks-id="6ebf7d53-9bb5-40ab"><div class="_2a3b75a1 _509a57b4 c4803194 b0e6eab4 cad4e2ec e5a9206f _50ba6b6b f6342c26 _34cd2b5e" data-webtasks-id="62c9c791-2c76-4849"><div class="_2a3b75a1 _509a57b4 e5a9206f _50ba6b6b _4a93668a" data-webtasks-id="5be6aa1d-d40e-40d0"><div class="_2a3b75a1 _509a57b4 e5a9206f _55ef2d4e d5d0d34a _2580a74b" data-webtasks-id="e36a2c86-f20a-4afe"><div class="a83bd4e0 _7be5c531 _6a3e5ade _2f303ac3 _2a3b75a1 _211eebc7" data-webtasks-id="25012274-8bb8-4253">Favorites</div></div></div><div class="_2a3b75a1 d5d0d34a" data-webtasks-id="732bf9a8-e3ea-4a17"></div><div class="_2a3b75a1 d5d0d34a" data-webtasks-id="c53399c8-3d8b-4b7c"><button data-expansion-panel-toggle="true" data-track="navigation|favorites_panel" aria-expanded="true" aria-controls="left-menu-favorites-panel" aria-label="Toggle list of Favorites" type="button" aria-disabled="false" tabindex="0" class="znXtw1Z WQcHCWm _427OSVk _8313bd46 f169a390 _8b7f1a82 _8644eccb _2a3b75a1" data-webtasks-id="e87520ff-8f54-43a4"><svg width="16" height="16" viewBox="0 0 16 16" class="aqv2kvH" data-webtasks-id="e8065de0-ada2-4415"><path d="M14 5.758L13.156 5 7.992 9.506l-.55-.48.002.002-4.588-4.003L2 5.77 7.992 11 14 5.758" fill="currentColor" data-webtasks-id="be3c991b-d647-443f"></path></svg></button></div></div></div><div class="_2a3b75a1" data-webtasks-id="5ed8e54f-468b-4beb"><div class="VELYhgE ChYSaj4 _2a3b75a1 f6342c26" data-webtasks-id="54ecb143-37f0-46ce"><div class="_2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="d13d1045-1c00-4d66"><div class="_2a3b75a1 _8c75067a" data-webtasks-id="3f26ae25-766e-4b89"><div id="left-menu-favorites-panel" class="_2a3b75a1" data-webtasks-id="552086c3-426b-4a8b"><ul aria-label="Favorites" class="A-1+3VRDSVrGqFoUjyOVqA== focus-marker-enabled-within _2a3b75a1" data-webtasks-id="a0f4aabf-e6d5-47ca"><li data-webtasks-id="708e4e2c-c8b3-4cd6"><div data-sidebar-list-item="true" class="eYDM03d0TdWUmvQvarxM6w== _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="2862dd1a-c1f0-4f5a"><div class="bwinE4g8Ubo+bdRFBhZqsg== _2a3b75a1 _509a57b4 cd4c8183 e5a9206f _50ba6b6b _4a93668a _34cd2b5e" data-webtasks-id="1cd09996-83bd-4430"><a aria-label="Task Type, 4 tasks" tabindex="0" href="/app/label/2167512163" data-webtasks-id="79059e48-6947-46d0"><span aria-hidden="true" class="nyM4MbjjB+aCdYL9moVpWA==" style="color: rgb(64, 115, 255);" data-webtasks-id="cb59d1a0-0e27-4415"><svg width="24" height="24" viewBox="0 0 24 24" data-webtasks-id="02a2ca9d-36ac-49eb"><path fill="currentColor" d="M5.914 11.086l4.5-4.5A2 2 0 0111.828 6H16a2 2 0 012 2v4.172a2 2 0 01-.586 1.414l-4.5 4.5a2 2 0 01-2.828 0l-4.172-4.172a2 2 0 010-2.828zM14 11a1 1 0 100-2 1 1 0 000 2z" data-webtasks-id="01d35cd9-674a-49e5"></path></svg></span><span class="FnFY2YlPR10DcnOkjvMMmA==" data-webtasks-id="c0f7cafa-d6d0-4dda">Task Type</span></a><span data-project-actions="true" data-webtasks-id="8678a677-0768-4fd5"><div class="fgALZGUA6SZg9blSarq2hg== _7DCqR7o3BYjme7edphDp8A== _2a3b75a1 _9015266f" data-webtasks-id="c2abcb03-85d6-48fc"><span aria-hidden="true" class="AuiqUdaGFITJcNpaWKvZFA== _2a3b75a1" data-webtasks-id="c81b082e-a650-4c5f">4</span><button type="button" aria-label="More label actions" aria-expanded="false" class="q-PolHQBMEHmpVzKzPeWWA==" tabindex="0" data-webtasks-id="865e6c1c-e568-4e1f"><span data-webtasks-id="b9bb8246-3280-4502"><svg width="15" height="3" data-webtasks-id="b6319b37-19fb-4051"><path d="M1.5 3a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm6 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm6 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3z" fill="currentColor" fill-rule="evenodd" data-webtasks-id="61b67dd5-b5d8-40ff"></path></svg></span></button></div></span></div></div></li><li data-webtasks-id="0626eb36-c868-442f"><div data-sidebar-list-item="true" class="eYDM03d0TdWUmvQvarxM6w== _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="e0d4c699-dd47-408f"><div class="bwinE4g8Ubo+bdRFBhZqsg== _2a3b75a1 _509a57b4 cd4c8183 e5a9206f _50ba6b6b _4a93668a _34cd2b5e" data-webtasks-id="92536203-8f6d-4de9"><a aria-label="Status, 0 tasks" tabindex="0" href="/app/label/2167486659" data-webtasks-id="504919c5-0428-442f"><span aria-hidden="true" class="nyM4MbjjB+aCdYL9moVpWA==" style="color: rgb(64, 115, 255);" data-webtasks-id="292a5881-7651-4c09"><svg width="24" height="24" viewBox="0 0 24 24" data-webtasks-id="f421eed7-09fb-405b"><path fill="currentColor" d="M5.914 11.086l4.5-4.5A2 2 0 0111.828 6H16a2 2 0 012 2v4.172a2 2 0 01-.586 1.414l-4.5 4.5a2 2 0 01-2.828 0l-4.172-4.172a2 2 0 010-2.828zM14 11a1 1 0 100-2 1 1 0 000 2z" data-webtasks-id="f996ad64-15ac-44b1"></path></svg></span><span class="FnFY2YlPR10DcnOkjvMMmA==" data-webtasks-id="f8c9dee2-e8a1-4f47">Status</span></a><span data-project-actions="true" data-webtasks-id="98e983f6-a8d3-4804"><div class="fgALZGUA6SZg9blSarq2hg== _7DCqR7o3BYjme7edphDp8A== _2a3b75a1 _9015266f" data-webtasks-id="2f62d437-ada5-45c1"><button type="button" aria-label="More label actions" aria-expanded="false" class="q-PolHQBMEHmpVzKzPeWWA==" tabindex="0" data-webtasks-id="2701bbc5-f044-4b49"><span data-webtasks-id="bd5717a7-27fe-4b75"><svg width="15" height="3" data-webtasks-id="1e2a1019-fff2-4168"><path d="M1.5 3a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm6 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm6 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3z" fill="currentColor" fill-rule="evenodd" data-webtasks-id="17c933c6-51ba-4ef7"></path></svg></span></button></div></span></div></div></li><li data-webtasks-id="0f5cc04f-683d-4634"><div data-sidebar-list-item="true" class="eYDM03d0TdWUmvQvarxM6w== _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="c4c65a0a-81b9-4fa5"><div class="bwinE4g8Ubo+bdRFBhZqsg== _2a3b75a1 _509a57b4 cd4c8183 e5a9206f _50ba6b6b _4a93668a _34cd2b5e" data-webtasks-id="86e6eb1a-dbb4-4082"><a aria-label="Important Tasks, 7 tasks" tabindex="0" href="/app/filter/2339312997" data-webtasks-id="c7c53e61-c251-4697"><span aria-hidden="true" class="nyM4MbjjB+aCdYL9moVpWA==" style="color: rgb(128, 128, 128);" data-webtasks-id="263d08a2-29b4-4059"><svg width="24" height="24" viewBox="0 0 24 24" data-webtasks-id="e029d76d-043a-49c0"><path fill="currentColor" d="M12 19a5 5 0 005-5c0-1.102-.345-2-1.064-3.03-.259-.371-1.414-1.832-1.697-2.225-.775-1.077-1.338-2.124-1.765-3.403a.5.5 0 00-.948 0c-.427 1.28-.99 2.326-1.765 3.403-.283.393-1.438 1.854-1.697 2.225C7.344 12 7 12.898 7 14a5 5 0 005 5z" data-webtasks-id="beaad580-e985-4fdd"></path></svg></span><span class="FnFY2YlPR10DcnOkjvMMmA==" data-webtasks-id="264c13c8-cef4-403d">Important Tasks</span></a><span data-project-actions="true" data-webtasks-id="1385c7a7-e9af-4c50"><div class="fgALZGUA6SZg9blSarq2hg== _7DCqR7o3BYjme7edphDp8A== _2a3b75a1 _9015266f" data-webtasks-id="ffa8a692-391c-4a42"><span aria-hidden="true" class="AuiqUdaGFITJcNpaWKvZFA== _2a3b75a1" data-webtasks-id="ddd11748-cde5-46a4">7</span><button type="button" aria-label="More filter actions" aria-expanded="false" class="q-PolHQBMEHmpVzKzPeWWA==" tabindex="0" data-webtasks-id="51aafc59-3689-4b45"><span data-webtasks-id="acf153f0-e79d-4663"><svg width="15" height="3" data-webtasks-id="f7de05a1-2ff1-47b5"><path d="M1.5 3a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm6 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm6 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3z" fill="currentColor" fill-rule="evenodd" data-webtasks-id="3124ed7b-eb9a-4344"></path></svg></span></button></div></span></div></div></li></ul></div></div></div></div></div></div><div class="_2a3b75a1" data-webtasks-id="0bf85dbe-681e-4111"><div data-expansion-panel-header="true" class="_67vYS3K focus-marker-enabled-within _2a3b75a1 _9015266f _4eb1d749" data-webtasks-id="edda417c-a483-473b"><div class="I0d9ZtQ _2a3b75a1 _509a57b4 c4803194 b0e6eab4 cad4e2ec e5a9206f _50ba6b6b f6342c26 _34cd2b5e" data-webtasks-id="13501a77-e84f-4f79"><a class="_2a3b75a1 _509a57b4 e5a9206f _50ba6b6b _4a93668a f6342c26" href="/app/projects" data-webtasks-id="7a62644a-bf8c-4b3a"><div class="_2a3b75a1 _509a57b4 e5a9206f _55ef2d4e d5d0d34a _2580a74b" data-webtasks-id="7cfcded9-cd6d-49ef"><div class="a83bd4e0 _7be5c531 _6a3e5ade _2f303ac3 _2a3b75a1 _211eebc7" data-webtasks-id="d73bdd4e-1ae6-43ed">Projects</div><span class="_7957de66 c6106b8c _2a3b75a1 _4a786bb9" data-webtasks-id="08fdd1a5-b726-491b">Used: 5/5</span></div></a><div class="_2a3b75a1 d5d0d34a" data-webtasks-id="2b9349b2-e697-40a2"><button aria-label="Unlock more projects" tabindex="0" type="button" aria-disabled="false" class="_8313bd46 f169a390 _8b7f1a82 _8644eccb _2a3b75a1" data-webtasks-id="ebb96876-317e-4ff8"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="e5512a1c-9a0a-4f7c"><path fill="currentColor" fill-rule="evenodd" clip-rule="evenodd" d="M15 6.995V9H9V6.995C9 5.895 9.9 5 11.01 5h1.988C14.102 5 15 5.897 15 6.995zM8 9V6.995A3.003 3.003 0 0111.01 4h1.988A3.002 3.002 0 0116 6.995V9h.994C18.102 9 19 9.887 19 11v6c0 1.105-.897 2-2.006 2H7.006A1.998 1.998 0 015 17v-6c0-1.105.897-2 2.006-2H8zm-2 2v6c0 .556.446 1 1.006 1h9.988c.557 0 1.006-.448 1.006-1v-6c0-.556-.446-1-1.006-1H7.006C6.449 10 6 10.448 6 11zm4 3a2 2 0 104 0 2 2 0 00-4 0zm2 1a1 1 0 100-2 1 1 0 000 2z" data-webtasks-id="2be246bf-e0b0-42ea"></path></svg></button></div><div class="_2a3b75a1 d5d0d34a" data-webtasks-id="9d473bb8-231e-4e25"><button data-expansion-panel-toggle="true" data-track="navigation|projects_panel" aria-expanded="true" aria-controls="left-menu-projects-panel" aria-label="Toggle list of Projects" type="button" aria-disabled="false" tabindex="0" class="znXtw1Z WQcHCWm _427OSVk _8313bd46 f169a390 _8b7f1a82 _8644eccb _2a3b75a1" data-webtasks-id="76a5895b-fdcb-4bc0"><svg width="16" height="16" viewBox="0 0 16 16" class="aqv2kvH" data-webtasks-id="be4d591a-935e-40ba"><path d="M14 5.758L13.156 5 7.992 9.506l-.55-.48.002.002-4.588-4.003L2 5.77 7.992 11 14 5.758" fill="currentColor" data-webtasks-id="1cbc17c8-f45b-47a6"></path></svg></button></div></div></div><div class="_2a3b75a1" data-webtasks-id="42af5677-74aa-4c09"><div class="VELYhgE ChYSaj4 _2a3b75a1 f6342c26" data-webtasks-id="834069de-b1c3-4dc1"><div class="_2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="cf84a163-d4cd-4c2e"><div class="_2a3b75a1 _8c75067a" data-webtasks-id="ad0b69ab-f7ea-4abb"><div id="left-menu-projects-panel" class="_2a3b75a1" data-webtasks-id="2742cbea-98cc-4b62"><ul id="projects_list" aria-label="Projects" class="A-1+3VRDSVrGqFoUjyOVqA== focus-marker-enabled-within _2a3b75a1" data-webtasks-id="eef037ee-6d76-47b9"><li data-type="project_list_item" data-id="2315367588" project="[object Object]" data-draggable="" draggable="true" class="iydsj+G" style="margin-left: 0px;" data-webtasks-id="6a4f5616-685a-4700"><div data-sidebar-list-item="true" class="eYDM03d0TdWUmvQvarxM6w== _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="cc8028ab-d35c-41db"><div class="bwinE4g8Ubo+bdRFBhZqsg== _2a3b75a1 _509a57b4 cd4c8183 e5a9206f _50ba6b6b _4a93668a _34cd2b5e" data-webtasks-id="278add6a-8d78-4418"><a aria-label="Home Renovation Project, 9 tasks" tabindex="0" href="/app/project/2315367588" data-webtasks-id="13cc387e-b773-4976"><span aria-hidden="true" class="nyM4MbjjB+aCdYL9moVpWA==" data-webtasks-id="342eadcc-95df-42b6"><svg width="24" height="24" viewBox="0 0 24 24" class="project_icon" style="color: rgb(224, 81, 148);" data-webtasks-id="c05686d2-0dfb-48e3"><path d="M12 7a5 5 0 110 10 5 5 0 010-10z" fill="currentColor" data-webtasks-id="fc52e4c0-c61f-4140"></path></svg></span><span class="FnFY2YlPR10DcnOkjvMMmA==" data-webtasks-id="93836671-c658-4ede">Home Renovation Project</span></a><span data-project-actions="true" data-webtasks-id="de16137d-0f4f-4a95"><div class="fgALZGUA6SZg9blSarq2hg== _7DCqR7o3BYjme7edphDp8A== _2a3b75a1 _9015266f" data-webtasks-id="bff62410-b8b4-4151"><span aria-hidden="true" class="AuiqUdaGFITJcNpaWKvZFA== _2a3b75a1" data-webtasks-id="808a9c12-17c7-4cee">9</span><button type="button" aria-label="More project actions" aria-expanded="false" class="q-PolHQBMEHmpVzKzPeWWA==" tabindex="0" data-webtasks-id="bf67075e-ce9c-4f40"><span data-webtasks-id="b83aef05-b7e2-4e68"><svg width="15" height="3" data-webtasks-id="457e0e8e-3eda-45c1"><path d="M1.5 3a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm6 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm6 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3z" fill="currentColor" fill-rule="evenodd" data-webtasks-id="e59859c0-15fc-4255"></path></svg></span></button></div></span></div></div></li><li data-type="project_list_item" data-id="2315444883" project="[object Object]" data-draggable="" draggable="true" class="iydsj+G" style="margin-left: 0px;" data-webtasks-id="2a11ea05-28b0-47c6"><div data-sidebar-list-item="true" class="eYDM03d0TdWUmvQvarxM6w== _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="5d37ac31-ea2f-41e0"><div class="bwinE4g8Ubo+bdRFBhZqsg== _2a3b75a1 _509a57b4 cd4c8183 e5a9206f _50ba6b6b _4a93668a _34cd2b5e" data-webtasks-id="287a1ce6-2796-4db9"><a aria-label="Website Redesign, 1 task" tabindex="0" href="/app/project/2315444883" data-webtasks-id="d641049d-a344-4935"><span aria-hidden="true" class="nyM4MbjjB+aCdYL9moVpWA==" data-webtasks-id="740d734e-127e-437e"><svg width="24" height="24" viewBox="0 0 24 24" class="project_icon" style="color: rgb(128, 128, 128);" data-webtasks-id="66c759ae-fdbc-437c"><path d="M12 7a5 5 0 110 10 5 5 0 010-10z" fill="currentColor" data-webtasks-id="c113f4fe-2946-414c"></path></svg></span><span class="FnFY2YlPR10DcnOkjvMMmA==" data-webtasks-id="99766acb-24d7-46d2">Website Redesign</span></a><span data-project-actions="true" data-webtasks-id="62130a52-60ac-4db0"><div class="fgALZGUA6SZg9blSarq2hg== _7DCqR7o3BYjme7edphDp8A== _2a3b75a1 _9015266f" data-webtasks-id="a085825f-1c7e-4623"><span aria-hidden="true" class="AuiqUdaGFITJcNpaWKvZFA== _2a3b75a1" data-webtasks-id="9bf0bfc6-1ef7-431f">1</span><button type="button" aria-label="More project actions" aria-expanded="false" class="q-PolHQBMEHmpVzKzPeWWA==" tabindex="0" data-webtasks-id="94679fdd-c466-4842"><span data-webtasks-id="7bc009b2-0321-4a54"><svg width="15" height="3" data-webtasks-id="40fb0a67-9d5f-49bc"><path d="M1.5 3a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm6 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm6 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3z" fill="currentColor" fill-rule="evenodd" data-webtasks-id="228511ab-a349-4a59"></path></svg></span></button></div></span></div></div></li><li data-type="project_list_item" data-id="2315445490" project="[object Object]" data-draggable="" draggable="true" class="iydsj+G" style="margin-left: 0px;" data-webtasks-id="d76af33f-99a5-4217"><div data-sidebar-list-item="true" class="eYDM03d0TdWUmvQvarxM6w== _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="4d88be8d-09ea-461c"><div class="bwinE4g8Ubo+bdRFBhZqsg== _2a3b75a1 _509a57b4 cd4c8183 e5a9206f _50ba6b6b _4a93668a _34cd2b5e" data-webtasks-id="5f5274a3-4cc7-42f5"><a aria-label="Marketing Campaign, 0 tasks" tabindex="0" href="/app/project/2315445490" data-webtasks-id="bfb98337-5443-43ad"><span aria-hidden="true" class="nyM4MbjjB+aCdYL9moVpWA==" data-webtasks-id="1ee80461-6ec9-4717"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" class="project_icon" style="color: rgb(136, 77, 255);" data-webtasks-id="6a02ce6a-22d8-4b0a"><path d="M12 13c3.376 0 5.328 1.187 5.854 3.562A1.181 1.181 0 0116.7 18H7.3a1.182 1.182 0 01-1.154-1.438C6.672 14.187 8.624 13 12 13zm0-7a3 3 0 110 6 3 3 0 010-6z" fill="currentColor" data-webtasks-id="0414e248-531f-4425"></path></svg></span><span class="FnFY2YlPR10DcnOkjvMMmA==" data-webtasks-id="ce193dc7-9fdf-48c3">Marketing Campaign</span></a><span data-project-actions="true" data-webtasks-id="8332f72d-9c68-4214"><div class="fgALZGUA6SZg9blSarq2hg== _7DCqR7o3BYjme7edphDp8A== _2a3b75a1 _9015266f" data-webtasks-id="2c2e0a75-5cf7-4120"><button type="button" aria-label="More project actions" aria-expanded="false" class="q-PolHQBMEHmpVzKzPeWWA==" tabindex="0" data-webtasks-id="6aac6fb9-c2ee-45f9"><span data-webtasks-id="10dfd562-c458-4047"><svg width="15" height="3" data-webtasks-id="ade27cf6-7877-4246"><path d="M1.5 3a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm6 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm6 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3z" fill="currentColor" fill-rule="evenodd" data-webtasks-id="13282831-1dba-45a0"></path></svg></span></button></div></span></div></div></li><li data-type="project_list_item" data-id="2315446415" project="[object Object]" data-draggable="" draggable="true" class="iydsj+G" style="margin-left: 0px;" data-webtasks-id="8a93ea66-9ef5-4fa6"><div data-sidebar-list-item="true" class="eYDM03d0TdWUmvQvarxM6w== _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="67b7006f-0d2b-4aab"><div class="bwinE4g8Ubo+bdRFBhZqsg== _2a3b75a1 _509a57b4 cd4c8183 e5a9206f _50ba6b6b _4a93668a _34cd2b5e" data-webtasks-id="6ac45370-bb4e-4bd5"><a aria-label="Mila Project, 1 task" tabindex="0" href="/app/project/2315446415" data-webtasks-id="b09c3aaa-6159-4a0e"><span aria-hidden="true" class="nyM4MbjjB+aCdYL9moVpWA==" data-webtasks-id="391e6018-1a62-4b4d"><svg width="24" height="24" viewBox="0 0 24 24" class="project_icon" style="color: rgb(128, 128, 128);" data-webtasks-id="d4b93d32-d7fc-4e97"><path d="M12 7a5 5 0 110 10 5 5 0 010-10z" fill="currentColor" data-webtasks-id="3891a969-6c92-4b27"></path></svg></span><span class="FnFY2YlPR10DcnOkjvMMmA==" data-webtasks-id="a8eecb7b-57ce-4078">Mila Project</span></a><span data-project-actions="true" data-webtasks-id="a636331b-6961-4637"><div class="fgALZGUA6SZg9blSarq2hg== _7DCqR7o3BYjme7edphDp8A== _2a3b75a1 _9015266f" data-webtasks-id="90dd13aa-189e-491c"><span aria-hidden="true" class="AuiqUdaGFITJcNpaWKvZFA== _2a3b75a1" data-webtasks-id="69f3548a-e52f-4b18">1</span><button type="button" aria-label="More project actions" aria-expanded="false" class="q-PolHQBMEHmpVzKzPeWWA==" tabindex="0" data-webtasks-id="dc309798-2a9c-4e9d"><span data-webtasks-id="b323969a-4f70-4d24"><svg width="15" height="3" data-webtasks-id="62d0fe94-4344-4d14"><path d="M1.5 3a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm6 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm6 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3z" fill="currentColor" fill-rule="evenodd" data-webtasks-id="ba259e95-bd37-4890"></path></svg></span></button></div></span></div></div></li><li data-type="project_list_item" data-id="2315448706" project="[object Object]" data-draggable="" draggable="true" class="iydsj+G" style="margin-left: 0px;" data-webtasks-id="3f46ddf0-63a1-4684"><div data-sidebar-list-item="true" class="eYDM03d0TdWUmvQvarxM6w== _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="17dafad0-8f77-4666"><div class="bwinE4g8Ubo+bdRFBhZqsg== _2a3b75a1 _509a57b4 cd4c8183 e5a9206f _50ba6b6b _4a93668a _34cd2b5e" data-webtasks-id="67d96ebc-9bb6-49ed"><a aria-label="Event Organization, 2 tasks" tabindex="0" href="/app/project/2315448706" data-webtasks-id="cf35310c-2574-466a"><span aria-hidden="true" class="nyM4MbjjB+aCdYL9moVpWA==" data-webtasks-id="1906428a-f045-4eb9"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" class="project_icon" style="color: rgb(128, 128, 128);" data-webtasks-id="b36a47c8-3a62-43f3"><path d="M12 13c3.376 0 5.328 1.187 5.854 3.562A1.181 1.181 0 0116.7 18H7.3a1.182 1.182 0 01-1.154-1.438C6.672 14.187 8.624 13 12 13zm0-7a3 3 0 110 6 3 3 0 010-6z" fill="currentColor" data-webtasks-id="cc573b72-75b4-40c8"></path></svg></span><span class="FnFY2YlPR10DcnOkjvMMmA==" data-webtasks-id="5de100f4-1af7-43a5">Event Organization</span></a><span data-project-actions="true" data-webtasks-id="237f83b5-f333-4e83"><div class="fgALZGUA6SZg9blSarq2hg== _7DCqR7o3BYjme7edphDp8A== _2a3b75a1 _9015266f" data-webtasks-id="0120c7a8-3a59-44fd"><span aria-hidden="true" class="AuiqUdaGFITJcNpaWKvZFA== _2a3b75a1" data-webtasks-id="c9946c22-d2c9-4639">2</span><button type="button" aria-label="More project actions" aria-expanded="false" class="q-PolHQBMEHmpVzKzPeWWA==" tabindex="0" data-webtasks-id="61c492c3-e51d-4ce7"><span data-webtasks-id="467aaf81-1c0e-4327"><svg width="15" height="3" data-webtasks-id="05b0b33d-0dff-47bd"><path d="M1.5 3a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm6 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm6 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3z" fill="currentColor" fill-rule="evenodd" data-webtasks-id="aeccbb05-165d-4dd1"></path></svg></span></button></div></span></div></div></li></ul></div></div></div></div></div></div><div class="_2a3b75a1 _509a57b4 _213145b4 _8e9bf2ee _33dfbd8e c76cb3c7 _1fb9d90e be9bf31a _4a93668a c68f8bf6" data-webtasks-id="a9129d15-9246-4f1e"></div></div></div><div class="ADvfnAf8aQWYfj+wqyIeVQ==" data-webtasks-id="caf743bd-24e6-45ff"></div><div class="resize_handle" style="left: 303px;" data-webtasks-id="b3e254f9-e361-441b"></div><main aria-label="Main Content" id="content" class="main_content" tabindex="-1" style="margin-left: 305px;" data-webtasks-id="a1fb0190-749c-4c3e"><div class="main-view-layout main-view-layout--undefined" data-webtasks-id="7ca073f3-8aa1-4723"><div role="listbox" aria-multiselectable="true" data-selection-empty="" tabindex="-1" class="oCoNIi6 filter_view" style="--view-header-height: 72px;" data-webtasks-id="318f800c-1f40-4a1c"><header aria-label="Project Header: contains Comments button, Share button, Sort Options button, and More Project Actions button" data-testid="view_header" class="view_header view_header--has_actions _2a3b75a1 _33dfbd8e" data-webtasks-id="decf1242-63f2-44f6"><div class="view_header__content" data-webtasks-id="c3452e77-1392-40ea"><button type="button" aria-label="Back to Filters &amp; Labels" class="icon_button view_header__previous_view" tabindex="0" data-webtasks-id="aa5b0ad4-39ba-49bf"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="e3b6d3ae-31a6-46af"><path fill-rule="evenodd" clip-rule="evenodd" d="M11.145 6.148a.5.5 0 11.71.704L6.738 12H17.5a.5.5 0 010 1H6.738l5.117 5.148a.5.5 0 01-.71.704l-5.964-6a.472.472 0 01-.025-.027A.437.437 0 015 12.5c0-.124.059-.238.156-.325a.533.533 0 01.025-.027l5.964-6z" fill="currentColor" data-webtasks-id="01538fd8-c4c8-4cd9"></path></svg></button><h1 role="heading" tabindex="0" aria-describedby="view_header__a11y_helper_text" data-testid="view_header__h1" class="editable" data-webtasks-id="898cba61-dcb8-42d4"><span class="simple_content" data-webtasks-id="9c947cbb-275a-4218">Tomorrow tasks</span></h1><span id="view_header__a11y_helper_text" data-webtasks-id="d95ca564-638e-46d3">Activate to edit name</span><div class="view_header__actions _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="b3092f77-6569-43ee"><button type="button" aria-label="View options menu" class="_9Wfxfoc5gMsPy1iegKm8fw==" data-webtasks-id="69540058-80f0-48d8"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" data-webtasks-id="4812b07d-b844-4183"><path d="M15 14.5a2 2 0 011.936 1.498L19.5 16a.5.5 0 010 1l-2.563.001a2.001 2.001 0 01-3.874 0L4.5 17a.5.5 0 010-1l8.564-.002A2 2 0 0115 14.5zm-.982 1.81l.005-.025-.005.026-.003.014-.004.025-.007.061A.897.897 0 0014 16.5l.008.125.007.047-.001.002.003.014.006.024h-.001l.004.018.016.058.007.021.004.013.009.026.013.033.012.027-.011-.026.019.043-.008-.017.029.06-.018-.037.048.09a1 1 0 001.784-.155l.015-.039.006-.018-.015.039.022-.06-.001-.001.016-.057.004-.018.005-.024.001-.006v-.001l.005-.033.008-.06A.877.877 0 0016 16.5l-.008-.124-.007-.051-.001-.001-.003-.014-.01-.047-.004-.016-.007-.024-.01-.034-.004-.012-.01-.03-.006-.013-.007-.017-.01-.026a.998.998 0 00-1.843.043l-.014.034-.007.022-.014.047-.002.009v.001l-.005.016-.01.047zM9 9.5a2 2 0 011.936 1.498L19.5 11a.5.5 0 010 1l-8.563.001a2.001 2.001 0 01-3.874 0L4.5 12a.5.5 0 010-1l2.564-.002A2 2 0 019 9.5zm0 1a.998.998 0 00-.93.634l-.014.034-.007.022-.014.047-.002.009v.001l-.005.016-.01.047.005-.025-.005.026-.003.014-.004.025-.007.061C8 11.441 8 11.471 8 11.5l.008.125.007.047-.001.002.003.014.006.024h-.001l.004.018.016.058.007.021.004.013.009.026.013.033.012.027-.011-.026.019.043-.008-.017.029.06-.018-.037.048.09a1 1 0 001.784-.155l.015-.039.006-.018-.015.039.022-.06-.001-.001.016-.057.004-.018.005-.024.001-.006v-.001l.005-.033.008-.06A.877.877 0 0010 11.5l-.008-.124-.007-.051-.001-.001-.003-.014-.01-.047-.004-.016-.007-.024-.01-.034-.004-.012-.01-.03-.006-.013-.007-.017-.01-.026A1.002 1.002 0 009 10.5zm6-6a2 2 0 011.936 1.498L19.5 6a.5.5 0 010 1l-2.563.001a2.001 2.001 0 01-3.874 0L4.5 7a.5.5 0 010-1l8.564-.002A2 2 0 0115 4.5zm0 1a.998.998 0 00-.93.634l-.014.034-.007.022-.014.047-.002.009v.001l-.005.016-.01.047.005-.025-.005.026-.003.014-.004.025-.007.061C14 6.441 14 6.471 14 6.5l.008.125.007.047-.001.002.003.014.006.024h-.001l.004.018.016.058.007.021.004.013.009.026.013.033.012.027-.011-.026.019.043-.008-.017.029.06-.018-.037.048.09a1 1 0 001.784-.155l.015-.039.006-.018-.015.039.022-.06-.001-.001.016-.057.004-.018.005-.024.001-.006v-.001l.005-.033.008-.06C16 6.557 16 6.528 16 6.5l-.008-.124-.007-.051-.001-.001-.003-.014-.01-.047-.004-.016-.007-.024-.01-.034-.004-.012-.01-.03-.006-.013-.007-.017-.01-.026A1.002 1.002 0 0015 5.5z" fill="currentColor" fill-rule="nonzero" data-webtasks-id="b4b03386-26ab-44f5"></path></svg><span class="action_label" data-webtasks-id="1e489753-7e3a-429e">View</span></button><button type="button" aria-label="Filter options menu" tabindex="0" data-webtasks-id="764d7c62-6114-41dc"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" data-webtasks-id="07a28516-2b6f-4131"><g fill="none" stroke="currentColor" stroke-linecap="round" transform="translate(3 10)" data-webtasks-id="630da341-193b-41b4"><circle cx="2" cy="2" r="2" data-webtasks-id="06350b49-0ad0-4b18"></circle><circle cx="9" cy="2" r="2" data-webtasks-id="ccd12a39-f540-4de4"></circle><circle cx="16" cy="2" r="2" data-webtasks-id="a920f5f7-7767-4760"></circle></g></svg></button></div></div></header><div class="view_content" data-webtasks-id="108b6221-32d4-40b6"><section class="section" aria-label="4 Jul ‧ Tomorrow ‧ Tuesday" data-webtasks-id="f9eb519e-247e-4cdc"><header id=":rb:" data-webtasks-id="a7c5b613-8392-4db4"><div class="section_head__overflow_actions" data-webtasks-id="5eddf350-d384-4579"></div><h2 data-webtasks-id="111187ad-175a-41d9"><div class="_2a3b75a1 _509a57b4 e5a9206f _55ef2d4e c68f8bf6" data-webtasks-id="7ae2a2d6-74ab-44ef"><a href="/app/search/2023-07-04" data-webtasks-id="e8a7cdb9-04d6-445d">4 Jul ‧ Tomorrow ‧ Tuesday</a></div></h2></header><div class="list_holder" data-webtasks-id="aed3dd27-7f48-4f78"><ul class="items" data-webtasks-id="1446f301-d451-417d"><li aria-selected="false" data-selection-id="Tue Jul 04 2023 23:59:59 GMT+0530 (India Standard Time)-0/7016137619" id="task-7016137619" class="task_list_item" data-item-id="7016137619" data-item-indent="1" data-task-navigation-element="7016137619" data-webtasks-id="a9a5d6ca-f152-4a02"><div role="button" tabindex="0" data-action-hint="task-root" aria-labelledby="task-7016137619-content" class="task_list_item__body" data-webtasks-id="4ee95528-2f31-4321"><button type="button" class="task_checkbox priority_1" role="checkbox" aria-checked="false" aria-label="Mark task as complete" aria-describedby="task-7016137619-content" data-action-hint="task-complete" data-webtasks-id="94e682c5-bfac-45f8"><span class="task_checkbox__circle" data-webtasks-id="cb2f25ea-c657-46b0"></span><svg width="24" height="24" data-webtasks-id="e65743a6-070f-4979"><path fill="currentColor" d="M11.23 13.7l-2.15-2a.55.55 0 0 0-.74-.01l.03-.03a.46.46 0 0 0 0 .68L11.24 15l5.4-5.01a.45.45 0 0 0 0-.68l.02.03a.55.55 0 0 0-.73 0l-4.7 4.35z" data-webtasks-id="cded9892-a103-49f8"></path></svg><span class="task_checkbox__border" data-webtasks-id="1f929cf5-abad-4937"></span></button><div class="task_list_item__content" data-webtasks-id="53de7b87-050e-4945"><div id="task-7016137619-content" class="task_list_item__content__wrapper" data-webtasks-id="f4d199ed-ab80-47d8"><div class="_2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="fa5dc3d4-8b31-4e1e"><div class="e3d32437 _2a3b75a1" data-webtasks-id="d9ed44ff-4447-4afc"><div class="task_content" data-webtasks-id="8b5abcaa-74b1-4dfb">Research and interview potential contractors</div></div></div></div><div class="task_list_item__info_tags" data-layout="list" data-webtasks-id="74d015a1-d5ca-4fd5"><span class="task_list_item__project" data-webtasks-id="e9a9570d-31a7-4937"><a href="/app/project/2315367588#task-7016137619" data-webtasks-id="4efa24ca-5d0d-43d6"><div class="task_list_item__project__label _2a3b75a1 _148492bc" data-webtasks-id="adb914ea-79bd-4cd9"><div class="a83bd4e0 _266d6623 _6a3e5ade _2f303ac3 _2a3b75a1 _211eebc7" data-webtasks-id="44fc840f-f14f-4b11"><span data-webtasks-id="9b1f6f26-4ab4-4d17">Home Renovation Project / Hire Contractors</span></div></div><svg width="12" height="12" viewBox="0 0 12 12" class="project_icon" style="color: rgb(224, 81, 148);" data-webtasks-id="548f0337-25a8-4c62"><circle cx="6" cy="6" r="4" fill="currentColor" data-webtasks-id="dbc0d2bc-6ec4-427c"></circle></svg></a></span></div></div><div class="task_list_item__selected_actions" data-webtasks-id="07184768-1456-403b"></div><div class="task_list_item__actions task_list_item__actions--active" data-webtasks-id="6552b971-e0b8-4e56"><button type="button" aria-label="Edit" data-action-hint="task-edit" tabindex="0" data-webtasks-id="98a69a1d-5694-42f7"><svg width="24" height="24" data-webtasks-id="49d63aa5-0a76-46ca"><g fill="none" fill-rule="evenodd" data-webtasks-id="dd1f5906-479a-4584"><path fill="currentColor" d="M9.5 19h10a.5.5 0 110 1h-10a.5.5 0 110-1z" data-webtasks-id="17430da3-69c7-4c6e"></path><path stroke="currentColor" d="M4.42 16.03a1.5 1.5 0 00-.43.9l-.22 2.02a.5.5 0 00.55.55l2.02-.21a1.5 1.5 0 00.9-.44L18.7 7.4a1.5 1.5 0 000-2.12l-.7-.7a1.5 1.5 0 00-2.13 0L4.42 16.02z" data-webtasks-id="1e5a6576-e680-4d7b"></path></g></svg></button><button type="button" aria-expanded="false" data-action-hint="task-scheduler" aria-label="Due date" class="due_date_controls" tabindex="0" data-webtasks-id="6dfe36de-309d-4db0"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="6787fabb-e44a-41d0"><path fill-rule="evenodd" clip-rule="evenodd" d="M18 4H6a2 2 0 00-2 2v12a2 2 0 002 2h12a2 2 0 002-2V6a2 2 0 00-2-2zM5 6a1 1 0 011-1h12a1 1 0 011 1v12a1 1 0 01-1 1H6a1 1 0 01-1-1V6zm12 10a1 1 0 11-2 0 1 1 0 012 0zM7 8a.5.5 0 000 1h10a.5.5 0 000-1H7z" fill="currentColor" data-webtasks-id="1c40fe70-25b2-405c"></path></svg></button><a class="task_list_item__comments_link" aria-label="Comment" data-action-hint="task-comment" tabindex="0" href="/app/filter/2339313217/task/7016137619?intent=reply" data-webtasks-id="787aedcb-a5d4-4f87"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" data-svgs-path="sm1/comments.svg" data-webtasks-id="d1b7e04a-3a13-411c"><path fill="currentColor" fill-rule="nonzero" d="M11.707 20.793A1 1 0 0 1 10 20.086V18H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-4.5l-2.793 2.793zM11 20.086L14.086 17H19a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h6v3.086z" data-webtasks-id="478da1bb-25a3-475c"></path></svg></a><button type="button" aria-expanded="false" data-testid="more_menu" data-action-hint="task-overflow-menu" aria-label="More task actions" class="more_actions_button" tabindex="0" data-webtasks-id="6d13e1d1-a881-4313"><svg width="15" height="3" data-webtasks-id="bab01625-aef4-42ac"><path d="M1.5 3a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm6 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm6 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3z" fill="currentColor" fill-rule="evenodd" data-webtasks-id="40162797-c815-4a53"></path></svg></button></div></div></li><li aria-selected="false" data-selection-id="Tue Jul 04 2023 23:59:59 GMT+0530 (India Standard Time)-0/7016195072" id="task-7016195072" class="task_list_item" data-item-id="7016195072" data-item-indent="1" data-task-navigation-element="7016195072" data-webtasks-id="3055e91c-9eb7-44a2"><div role="button" tabindex="0" data-action-hint="task-root" aria-labelledby="task-7016195072-content" class="task_list_item__body" data-webtasks-id="26a89e59-1a59-430c"><button type="button" class="task_checkbox priority_1" role="checkbox" aria-checked="false" aria-label="Mark task as complete" aria-describedby="task-7016195072-content" data-action-hint="task-complete" data-webtasks-id="7504024b-1d8b-4f1b"><span class="task_checkbox__circle" data-webtasks-id="b6a2418b-51ae-4e9a"></span><svg width="24" height="24" data-webtasks-id="a99eb6e2-1bec-46b4"><path fill="currentColor" d="M11.23 13.7l-2.15-2a.55.55 0 0 0-.74-.01l.03-.03a.46.46 0 0 0 0 .68L11.24 15l5.4-5.01a.45.45 0 0 0 0-.68l.02.03a.55.55 0 0 0-.73 0l-4.7 4.35z" data-webtasks-id="a8be0bfb-6f9a-411e"></path></svg><span class="task_checkbox__border" data-webtasks-id="8ca8c33c-98e8-4b4a"></span></button><div class="task_list_item__content" data-webtasks-id="7a8d4459-9b4a-4381"><div id="task-7016195072-content" class="task_list_item__content__wrapper" data-webtasks-id="08056b46-a0a6-4825"><div class="_2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="1b43d2b2-ae18-4759"><div class="e3d32437 _2a3b75a1" data-webtasks-id="103b0899-a368-4fb6"><div class="task_content" data-webtasks-id="410cf6f0-bf09-4f29">Wash dishes and utensils.</div></div></div></div><div class="task_list_item__info_tags" data-layout="list" data-webtasks-id="c508c01c-f06d-45b0"><span class="task_list_item__project" data-webtasks-id="c39568ed-2c79-4947"><a href="/app/project/2315339881#task-7016195072" data-webtasks-id="41be095a-8ca9-43d3"><div class="task_list_item__project__label _2a3b75a1 _148492bc" data-webtasks-id="a76f8a3d-58cf-473d"><div class="a83bd4e0 _266d6623 _6a3e5ade _2f303ac3 _2a3b75a1 _211eebc7" data-webtasks-id="5d91dbfb-ec79-4eb7"><span data-webtasks-id="8c542c23-5c3a-4109">Inbox / Clean the kitchen</span></div></div><svg width="12" height="12" viewBox="0 0 16 16" class="project_icon project_icon_inbox" data-webtasks-id="16b50bc4-ba54-4b03"><g fill="currentColor" data-webtasks-id="03ecb642-28b6-4d7e"><path d="M13.5 9.5V12a1.5 1.5 0 01-1.5 1.5H4A1.5 1.5 0 012.5 12V9.5h3.75a1.75 1.75 0 003.5 0h3.75z" opacity="0.1" data-webtasks-id="096ea811-68e4-46e6"></path><path d="M10.491 2a2 2 0 011.923 1.45l1.509 5.28a2 2 0 01.077.55V12a2 2 0 01-2 2H4a2 2 0 01-2-2V9.28a2 2 0 01.077-.55l1.509-5.28A2 2 0 015.509 2h4.982zm0 1H5.51a1 1 0 00-.962.725l-1.509 5.28A1 1 0 003 9.28V12a1 1 0 001 1h8a1 1 0 001-1V9.28a1 1 0 00-.038-.275l-1.51-5.28a1 1 0 00-.96-.725zM6.25 9a.5.5 0 01.5.5 1.25 1.25 0 002.5 0 .5.5 0 01.5-.5h1.75a.5.5 0 110 1h-1.306a2.25 2.25 0 01-4.388 0H4.5a.5.5 0 010-1z" data-webtasks-id="680a756c-2d30-4712"></path></g></svg></a></span></div></div><div class="task_list_item__selected_actions" data-webtasks-id="eaf9492b-624c-44c6"></div><div class="task_list_item__actions task_list_item__actions--active" data-webtasks-id="4083cffe-b356-4afe"><button type="button" aria-label="Edit" data-action-hint="task-edit" tabindex="0" data-webtasks-id="5e3efe47-4e89-46a3"><svg width="24" height="24" data-webtasks-id="bfbc4c81-168a-401d"><g fill="none" fill-rule="evenodd" data-webtasks-id="07482262-85ff-43cd"><path fill="currentColor" d="M9.5 19h10a.5.5 0 110 1h-10a.5.5 0 110-1z" data-webtasks-id="1ee838a4-c55b-4c52"></path><path stroke="currentColor" d="M4.42 16.03a1.5 1.5 0 00-.43.9l-.22 2.02a.5.5 0 00.55.55l2.02-.21a1.5 1.5 0 00.9-.44L18.7 7.4a1.5 1.5 0 000-2.12l-.7-.7a1.5 1.5 0 00-2.13 0L4.42 16.02z" data-webtasks-id="bd789f4b-2af7-4c8c"></path></g></svg></button><button type="button" aria-expanded="false" data-action-hint="task-scheduler" aria-label="Due date" class="due_date_controls" tabindex="0" data-webtasks-id="7547faca-e9c5-4668"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="22295cf1-9d47-4e9a"><path fill-rule="evenodd" clip-rule="evenodd" d="M18 4H6a2 2 0 00-2 2v12a2 2 0 002 2h12a2 2 0 002-2V6a2 2 0 00-2-2zM5 6a1 1 0 011-1h12a1 1 0 011 1v12a1 1 0 01-1 1H6a1 1 0 01-1-1V6zm12 10a1 1 0 11-2 0 1 1 0 012 0zM7 8a.5.5 0 000 1h10a.5.5 0 000-1H7z" fill="currentColor" data-webtasks-id="db47a065-7ea5-48ce"></path></svg></button><a class="task_list_item__comments_link" aria-label="Comment" data-action-hint="task-comment" tabindex="0" href="/app/filter/2339313217/task/7016195072?intent=reply" data-webtasks-id="8bda0379-d385-4897"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" data-svgs-path="sm1/comments.svg" data-webtasks-id="907ec969-efff-455a"><path fill="currentColor" fill-rule="nonzero" d="M11.707 20.793A1 1 0 0 1 10 20.086V18H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-4.5l-2.793 2.793zM11 20.086L14.086 17H19a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h6v3.086z" data-webtasks-id="7c4c48c9-39d6-4e67"></path></svg></a><button type="button" aria-expanded="false" data-testid="more_menu" data-action-hint="task-overflow-menu" aria-label="More task actions" class="more_actions_button" tabindex="0" data-webtasks-id="38766da7-e552-4e67"><svg width="15" height="3" data-webtasks-id="d6c0c8ef-c9e4-4fea"><path d="M1.5 3a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm6 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm6 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3z" fill="currentColor" fill-rule="evenodd" data-webtasks-id="2a941488-c943-453d"></path></svg></button></div></div></li><li aria-selected="false" data-selection-id="Tue Jul 04 2023 23:59:59 GMT+0530 (India Standard Time)-0/7016195309" id="task-7016195309" class="task_list_item" data-item-id="7016195309" data-item-indent="1" data-task-navigation-element="7016195309" data-webtasks-id="f2cdaf78-42f1-498e"><div role="button" tabindex="0" data-action-hint="task-root" aria-labelledby="task-7016195309-content" class="task_list_item__body" data-webtasks-id="f98db8ae-61e0-4be2"><button type="button" class="task_checkbox priority_1" role="checkbox" aria-checked="false" aria-label="Mark task as complete" aria-describedby="task-7016195309-content" data-action-hint="task-complete" data-webtasks-id="e0e44ecc-529a-42f7"><span class="task_checkbox__circle" data-webtasks-id="1daf77c4-7b9b-4817"></span><svg width="24" height="24" data-webtasks-id="dca176eb-0b7f-4d73"><path fill="currentColor" d="M11.23 13.7l-2.15-2a.55.55 0 0 0-.74-.01l.03-.03a.46.46 0 0 0 0 .68L11.24 15l5.4-5.01a.45.45 0 0 0 0-.68l.02.03a.55.55 0 0 0-.73 0l-4.7 4.35z" data-webtasks-id="a6bd666f-e2ec-40a0"></path></svg><span class="task_checkbox__border" data-webtasks-id="3b47bd54-51a1-4d31"></span></button><div class="task_list_item__content" data-webtasks-id="62014ea5-9b9d-4b10"><div id="task-7016195309-content" class="task_list_item__content__wrapper" data-webtasks-id="6e5f8b19-8a51-4478"><div class="_2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="7d5d0375-9e22-4752"><div class="e3d32437 _2a3b75a1" data-webtasks-id="ef7012a9-fb7a-437d"><div class="task_content" data-webtasks-id="a4b46cf8-4f74-422c">Wipe countertops and stovetop.</div></div></div></div><div class="task_list_item__info_tags" data-layout="list" data-webtasks-id="c7dd29ea-22a4-46cc"><span class="task_list_item__project" data-webtasks-id="911f9ca0-53be-452c"><a href="/app/project/2315339881#task-7016195309" data-webtasks-id="469f87f4-375c-4fd1"><div class="task_list_item__project__label _2a3b75a1 _148492bc" data-webtasks-id="79d36460-495f-46ec"><div class="a83bd4e0 _266d6623 _6a3e5ade _2f303ac3 _2a3b75a1 _211eebc7" data-webtasks-id="c4d139c9-0d68-4be0"><span data-webtasks-id="988c679a-0866-437b">Inbox / Clean the kitchen</span></div></div><svg width="12" height="12" viewBox="0 0 16 16" class="project_icon project_icon_inbox" data-webtasks-id="435df8e9-9501-4c96"><g fill="currentColor" data-webtasks-id="7ec8d825-1231-49ff"><path d="M13.5 9.5V12a1.5 1.5 0 01-1.5 1.5H4A1.5 1.5 0 012.5 12V9.5h3.75a1.75 1.75 0 003.5 0h3.75z" opacity="0.1" data-webtasks-id="ba9b368f-9eb9-4ace"></path><path d="M10.491 2a2 2 0 011.923 1.45l1.509 5.28a2 2 0 01.077.55V12a2 2 0 01-2 2H4a2 2 0 01-2-2V9.28a2 2 0 01.077-.55l1.509-5.28A2 2 0 015.509 2h4.982zm0 1H5.51a1 1 0 00-.962.725l-1.509 5.28A1 1 0 003 9.28V12a1 1 0 001 1h8a1 1 0 001-1V9.28a1 1 0 00-.038-.275l-1.51-5.28a1 1 0 00-.96-.725zM6.25 9a.5.5 0 01.5.5 1.25 1.25 0 002.5 0 .5.5 0 01.5-.5h1.75a.5.5 0 110 1h-1.306a2.25 2.25 0 01-4.388 0H4.5a.5.5 0 010-1z" data-webtasks-id="82c53984-9957-4dbf"></path></g></svg></a></span></div></div><div class="task_list_item__selected_actions" data-webtasks-id="a7894355-c9d2-4dba"></div><div class="task_list_item__actions task_list_item__actions--active" data-webtasks-id="b3a5902e-63c9-4d54"><button type="button" aria-label="Edit" data-action-hint="task-edit" tabindex="0" data-webtasks-id="582102db-ce80-4ce4"><svg width="24" height="24" data-webtasks-id="0eb4ce4f-e64d-4b90"><g fill="none" fill-rule="evenodd" data-webtasks-id="bf68152b-8bed-473b"><path fill="currentColor" d="M9.5 19h10a.5.5 0 110 1h-10a.5.5 0 110-1z" data-webtasks-id="33d724c6-2614-4496"></path><path stroke="currentColor" d="M4.42 16.03a1.5 1.5 0 00-.43.9l-.22 2.02a.5.5 0 00.55.55l2.02-.21a1.5 1.5 0 00.9-.44L18.7 7.4a1.5 1.5 0 000-2.12l-.7-.7a1.5 1.5 0 00-2.13 0L4.42 16.02z" data-webtasks-id="cec28a29-cb2a-40ce"></path></g></svg></button><button type="button" aria-expanded="false" data-action-hint="task-scheduler" aria-label="Due date" class="due_date_controls" tabindex="0" data-webtasks-id="0754fa9e-2a48-4d90"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="48335d80-2d6a-4896"><path fill-rule="evenodd" clip-rule="evenodd" d="M18 4H6a2 2 0 00-2 2v12a2 2 0 002 2h12a2 2 0 002-2V6a2 2 0 00-2-2zM5 6a1 1 0 011-1h12a1 1 0 011 1v12a1 1 0 01-1 1H6a1 1 0 01-1-1V6zm12 10a1 1 0 11-2 0 1 1 0 012 0zM7 8a.5.5 0 000 1h10a.5.5 0 000-1H7z" fill="currentColor" data-webtasks-id="5cc25e38-3e08-475e"></path></svg></button><a class="task_list_item__comments_link" aria-label="Comment" data-action-hint="task-comment" tabindex="0" href="/app/filter/2339313217/task/7016195309?intent=reply" data-webtasks-id="f5efbf82-b55d-42c0"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" data-svgs-path="sm1/comments.svg" data-webtasks-id="85273c51-8b00-42ed"><path fill="currentColor" fill-rule="nonzero" d="M11.707 20.793A1 1 0 0 1 10 20.086V18H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-4.5l-2.793 2.793zM11 20.086L14.086 17H19a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h6v3.086z" data-webtasks-id="b515cf38-4d81-431d"></path></svg></a><button type="button" aria-expanded="false" data-testid="more_menu" data-action-hint="task-overflow-menu" aria-label="More task actions" class="more_actions_button" tabindex="0" data-webtasks-id="4c24d3b1-5a22-46ec"><svg width="15" height="3" data-webtasks-id="22d77730-9473-4a32"><path d="M1.5 3a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm6 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm6 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3z" fill="currentColor" fill-rule="evenodd" data-webtasks-id="3b4d5048-7571-498b"></path></svg></button></div></div></li><li aria-selected="false" data-selection-id="Tue Jul 04 2023 23:59:59 GMT+0530 (India Standard Time)-0/7016195515" id="task-7016195515" class="task_list_item" data-item-id="7016195515" data-item-indent="1" data-task-navigation-element="7016195515" data-webtasks-id="7fd77a52-accb-42df"><div role="button" tabindex="0" data-action-hint="task-root" aria-labelledby="task-7016195515-content" class="task_list_item__body" data-webtasks-id="d21d7b10-8823-457a"><button type="button" class="task_checkbox priority_1" role="checkbox" aria-checked="false" aria-label="Mark task as complete" aria-describedby="task-7016195515-content" data-action-hint="task-complete" data-webtasks-id="fe889187-39e6-42d7"><span class="task_checkbox__circle" data-webtasks-id="29f0aa1b-1a96-407a"></span><svg width="24" height="24" data-webtasks-id="f4a7f4c6-e71c-48ef"><path fill="currentColor" d="M11.23 13.7l-2.15-2a.55.55 0 0 0-.74-.01l.03-.03a.46.46 0 0 0 0 .68L11.24 15l5.4-5.01a.45.45 0 0 0 0-.68l.02.03a.55.55 0 0 0-.73 0l-4.7 4.35z" data-webtasks-id="b8267723-2c41-42dc"></path></svg><span class="task_checkbox__border" data-webtasks-id="18c25d1e-f715-48c7"></span></button><div class="task_list_item__content" data-webtasks-id="5a2e1854-2e15-4fb7"><div id="task-7016195515-content" class="task_list_item__content__wrapper" data-webtasks-id="6d1fc0ae-3cd0-4d66"><div class="_2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="82258454-a2f6-4253"><div class="e3d32437 _2a3b75a1" data-webtasks-id="c1de6d1d-f277-4143"><div class="task_content" data-webtasks-id="50ead4d9-e2c0-4840">Sweep and mop the floor.</div></div></div></div><div class="task_list_item__info_tags" data-layout="list" data-webtasks-id="1800c7fe-17e2-41fc"><span class="task_list_item__project" data-webtasks-id="205aef64-4e18-477d"><a href="/app/project/2315339881#task-7016195515" data-webtasks-id="259741cf-6f04-421b"><div class="task_list_item__project__label _2a3b75a1 _148492bc" data-webtasks-id="9e83262b-42ca-47b1"><div class="a83bd4e0 _266d6623 _6a3e5ade _2f303ac3 _2a3b75a1 _211eebc7" data-webtasks-id="87652d96-b979-44dc"><span data-webtasks-id="7c495277-4b71-4624">Inbox / Clean the kitchen</span></div></div><svg width="12" height="12" viewBox="0 0 16 16" class="project_icon project_icon_inbox" data-webtasks-id="4fc495a3-805d-4d95"><g fill="currentColor" data-webtasks-id="694cf232-1be4-4adb"><path d="M13.5 9.5V12a1.5 1.5 0 01-1.5 1.5H4A1.5 1.5 0 012.5 12V9.5h3.75a1.75 1.75 0 003.5 0h3.75z" opacity="0.1" data-webtasks-id="9630043e-f3c9-4384"></path><path d="M10.491 2a2 2 0 011.923 1.45l1.509 5.28a2 2 0 01.077.55V12a2 2 0 01-2 2H4a2 2 0 01-2-2V9.28a2 2 0 01.077-.55l1.509-5.28A2 2 0 015.509 2h4.982zm0 1H5.51a1 1 0 00-.962.725l-1.509 5.28A1 1 0 003 9.28V12a1 1 0 001 1h8a1 1 0 001-1V9.28a1 1 0 00-.038-.275l-1.51-5.28a1 1 0 00-.96-.725zM6.25 9a.5.5 0 01.5.5 1.25 1.25 0 002.5 0 .5.5 0 01.5-.5h1.75a.5.5 0 110 1h-1.306a2.25 2.25 0 01-4.388 0H4.5a.5.5 0 010-1z" data-webtasks-id="4e9d606a-a7db-46c7"></path></g></svg></a></span></div></div><div class="task_list_item__selected_actions" data-webtasks-id="081f692b-b3fb-46cc"></div><div class="task_list_item__actions" data-webtasks-id="64e5d010-7540-4cea"></div></div></li></ul></div></section></div></div></div></main></div></div><div class="AD6ugiP _2a3b75a1 _2286072d" data-webtasks-id="7ee5d41d-cbdc-4541" data-aria-hidden="true" aria-hidden="true"></div><div id="DndDescribedBy-0" style="display: none;" data-webtasks-id="818776e1-d242-4b07" data-aria-hidden="true" aria-hidden="true">
To pick up a draggable item, press the space bar.
While dragging, use the arrow keys to move the item.
Press space again to drop the item in its new position, or press escape to cancel.
</div><div id="DndLiveRegion-0" role="status" aria-live="assertive" aria-atomic="true" style="position: fixed; width: 1px; height: 1px; margin: -1px; border: 0px; padding: 0px; overflow: hidden; clip: rect(0px, 0px, 0px, 0px); clip-path: inset(100%); white-space: nowrap;" data-webtasks-id="e953dc31-34fe-4bdf"></div></div></div><script nonce="" data-webtasks-id="1f6d19b9-975a-46a5" data-aria-hidden="true" aria-hidden="true">cdnLoadScript('body')("/assets/vendor~add~app~authentication~electron-login~253ae210.ec4a036eb951a06dc27d57d59797b047.js");
cdnLoadScript('body')("/assets/vendor~add~app~authentication~electron-login~b5906859.05ba931ebac209f7999b443e72ae3280.js");
cdnLoadScript('body')("/assets/vendor~add~app~electron-login~253ae210.6d50f66ae22a3fef28a890ded269d2b7.js");
cdnLoadScript('body')("/assets/vendor~add~app~electron-login~690b702c.773011852ea4818c3a7819fec150864e.js");
cdnLoadScript('body')("/assets/vendor~add~app~authentication~275fb47b.cdc58f7ad4f5564716aa57a108fc9314.js");
cdnLoadScript('body')("/assets/vendor~add~app~253ae210.b920a54c73aacfe924ebd4a3ff1244a9.js");
cdnLoadScript('body')("/assets/vendor~add~app~f9ca8911.885b0816e84a1903d7ce10be67899880.js");
cdnLoadScript('body')("/assets/vendor~app~electron-login~678f84af.4b3d2b486103d5026993534ede5dd05a.js");
cdnLoadScript('body')("/assets/vendor~app~authentication~253ae210.c16ea5b2ef8df5a14db5a8209a526ab3.js");
cdnLoadScript('body')("/assets/vendor~app~connected-card~bf6881bb.5d0d79922167d69fd4f807545ba2460f.js");
cdnLoadScript('body')("/assets/vendor~app~253ae210.b525fef0e454511e0f1ea125ff91c804.js");
cdnLoadScript('body')("/assets/app~d0ae3f07.d7db0fa7b7e2ceea9068bc17105014b4.js");
cdnLoadScript('body')("/assets/app~5a11b65b.812be39e91f453b8d9bbae15ba908d06.js");
cdnLoadScript('body')("/assets/app~c714bc7b.7d341c0da2cba29d7f2ec22109cc3313.js");
cdnLoadScript('body')("/assets/app~31e116db.1f18136229e36cf9130d3b5bf309cee2.js");
cdnLoadScript('body')("/assets/app~fc66dfb5.26aaa8f8fda8705013bf63cba64f9e18.js");
cdnLoadScript('body')("/assets/app~2cb4426d.3c90e017d13b7f0812ad9042487ee9da.js");</script><script src="https://todoist.b-cdn.net/assets/vendor~add~app~authentication~electron-login~253ae210.ec4a036eb951a06dc27d57d59797b047.js" crossorigin="anonymous" data-webtasks-id="f7d6a6d3-9cdd-40f5" data-aria-hidden="true" aria-hidden="true"></script><script src="https://todoist.b-cdn.net/assets/vendor~add~app~authentication~electron-login~b5906859.05ba931ebac209f7999b443e72ae3280.js" crossorigin="anonymous" data-webtasks-id="6f466810-fff4-42fe" data-aria-hidden="true" aria-hidden="true"></script><script src="https://todoist.b-cdn.net/assets/vendor~add~app~electron-login~253ae210.6d50f66ae22a3fef28a890ded269d2b7.js" crossorigin="anonymous" data-webtasks-id="73dbb6a7-4b41-4695" data-aria-hidden="true" aria-hidden="true"></script><script src="https://todoist.b-cdn.net/assets/vendor~add~app~electron-login~690b702c.773011852ea4818c3a7819fec150864e.js" crossorigin="anonymous" data-webtasks-id="39de17d3-b2f1-4966" data-aria-hidden="true" aria-hidden="true"></script><script src="https://todoist.b-cdn.net/assets/vendor~add~app~authentication~275fb47b.cdc58f7ad4f5564716aa57a108fc9314.js" crossorigin="anonymous" data-webtasks-id="6dca0a97-d630-4dee" data-aria-hidden="true" aria-hidden="true"></script><script src="https://todoist.b-cdn.net/assets/vendor~add~app~253ae210.b920a54c73aacfe924ebd4a3ff1244a9.js" crossorigin="anonymous" data-webtasks-id="6b1a4e3e-11bd-4c54" data-aria-hidden="true" aria-hidden="true"></script><script src="https://todoist.b-cdn.net/assets/vendor~add~app~f9ca8911.885b0816e84a1903d7ce10be67899880.js" crossorigin="anonymous" data-webtasks-id="96bd1d2e-c725-4dba" data-aria-hidden="true" aria-hidden="true"></script><script src="https://todoist.b-cdn.net/assets/vendor~app~electron-login~678f84af.4b3d2b486103d5026993534ede5dd05a.js" crossorigin="anonymous" data-webtasks-id="7e164d7d-307b-4035" data-aria-hidden="true" aria-hidden="true"></script><script src="https://todoist.b-cdn.net/assets/vendor~app~authentication~253ae210.c16ea5b2ef8df5a14db5a8209a526ab3.js" crossorigin="anonymous" data-webtasks-id="58cc04ae-d2ab-4e07" data-aria-hidden="true" aria-hidden="true"></script><script src="https://todoist.b-cdn.net/assets/vendor~app~connected-card~bf6881bb.5d0d79922167d69fd4f807545ba2460f.js" crossorigin="anonymous" data-webtasks-id="191be0cc-f15d-4503" data-aria-hidden="true" aria-hidden="true"></script><script src="https://todoist.b-cdn.net/assets/vendor~app~253ae210.b525fef0e454511e0f1ea125ff91c804.js" crossorigin="anonymous" data-webtasks-id="ffe58d56-fa7e-4f3f" data-aria-hidden="true" aria-hidden="true"></script><script src="https://todoist.b-cdn.net/assets/app~d0ae3f07.d7db0fa7b7e2ceea9068bc17105014b4.js" crossorigin="anonymous" data-webtasks-id="cd029c72-99f7-4ee1" data-aria-hidden="true" aria-hidden="true"></script><script src="https://todoist.b-cdn.net/assets/app~5a11b65b.812be39e91f453b8d9bbae15ba908d06.js" crossorigin="anonymous" data-webtasks-id="83da483f-24bb-4716" data-aria-hidden="true" aria-hidden="true"></script><script src="https://todoist.b-cdn.net/assets/app~c714bc7b.7d341c0da2cba29d7f2ec22109cc3313.js" crossorigin="anonymous" data-webtasks-id="c82ac602-7ae1-422c" data-aria-hidden="true" aria-hidden="true"></script><script src="https://todoist.b-cdn.net/assets/app~31e116db.1f18136229e36cf9130d3b5bf309cee2.js" crossorigin="anonymous" data-webtasks-id="eb5eff33-48fd-46d3" data-aria-hidden="true" aria-hidden="true"></script><script src="https://todoist.b-cdn.net/assets/app~fc66dfb5.26aaa8f8fda8705013bf63cba64f9e18.js" crossorigin="anonymous" data-webtasks-id="ef068876-ac37-4417" data-aria-hidden="true" aria-hidden="true"></script><script src="https://todoist.b-cdn.net/assets/app~2cb4426d.3c90e017d13b7f0812ad9042487ee9da.js" crossorigin="anonymous" data-webtasks-id="087be9e1-b7ee-431f" data-aria-hidden="true" aria-hidden="true"></script><div class="ist_tooltip_holder" style="display: none;" data-webtasks-id="0e4ab697-fcfb-4b2b" data-aria-hidden="true" aria-hidden="true"></div><div id="id-z3lmhk" data-webtasks-id="e2285878-1219-40c6" data-aria-hidden="true" aria-hidden="true"><div data-webtasks-id="7b4ca026-d8ae-412c"></div></div><div id="modal_box" data-webtasks-id="e999b34e-799a-47c8" data-aria-hidden="true" aria-hidden="true"></div><div id="id-zuyup7" data-webtasks-id="5f6f5787-9169-4075"><div data-webtasks-id="7c994bef-76c8-40d3"><div data-testid="modal-overlay" data-overlay="true" class="_8aa86dd3 _61ffb38f _11d61de3 _2a3b75a1" data-webtasks-id="0e58306e-204c-49b0"><div data-focus-guard="true" tabindex="0" data-webtasks-id="1b54df1e-b0ea-4f00" style="width: 1px; height: 0px; padding: 0px; overflow: hidden; position: fixed; top: 1px; left: 1px;"></div><div data-focus-lock-disabled="false" data-webtasks-id="842206b3-17d3-44f7"><div id=":rg:" data-dialog="" role="dialog" tabindex="-1" aria-label="Wash dishes and utensils." data-testid="task-details-modal" class="mC9LTvj _45139719 _2a3b75a1 _509a57b4 _1fb9d90e _4a93668a f6342c26 a83fb2f5 d85cf739 _5fe4d5e3" data-webtasks-id="ef053724-318a-4d7d"><header class="FejMLOm _2a3b75a1 _4e9ab24b ad0ccf15 _9510d053 _078feb3c" data-webtasks-id="98562fd1-70f0-421e"><div class="eae3d34f _1cf15621 _2a3b75a1 _509a57b4 e5a9206f _50ba6b6b _985b733f _966b120f" data-webtasks-id="8063d586-4772-43eb"><div class="_9dd31975 _2a3b75a1 _68ab48ca _4a93668a a83fb2f5" data-webtasks-id="c367114b-c439-4dab"><div data-testid="task-detail-default-header" class="_5i5tzAW _2a3b75a1 _509a57b4 e5a9206f _3692f9c2 _50ba6b6b _985b733f" data-webtasks-id="43a8edf4-ab8b-4279"><a class="m4WjXkL" title="Inbox" href="/app/project/2315339881#task-7016195072" data-webtasks-id="3c0fa252-e8d8-4cb3"><svg width="16" height="16" viewBox="0 0 16 16" class="project_icon project_icon_inbox" data-webtasks-id="3a22f121-aa5f-4616"><g fill="currentColor" data-webtasks-id="899c5265-21a6-4c0a"><path d="M13.5 9.5V12a1.5 1.5 0 01-1.5 1.5H4A1.5 1.5 0 012.5 12V9.5h3.75a1.75 1.75 0 003.5 0h3.75z" opacity="0.1" data-webtasks-id="df01a5dc-7ab9-4692"></path><path d="M10.491 2a2 2 0 011.923 1.45l1.509 5.28a2 2 0 01.077.55V12a2 2 0 01-2 2H4a2 2 0 01-2-2V9.28a2 2 0 01.077-.55l1.509-5.28A2 2 0 015.509 2h4.982zm0 1H5.51a1 1 0 00-.962.725l-1.509 5.28A1 1 0 003 9.28V12a1 1 0 001 1h8a1 1 0 001-1V9.28a1 1 0 00-.038-.275l-1.51-5.28a1 1 0 00-.96-.725zM6.25 9a.5.5 0 01.5.5 1.25 1.25 0 002.5 0 .5.5 0 01.5-.5h1.75a.5.5 0 110 1h-1.306a2.25 2.25 0 01-4.388 0H4.5a.5.5 0 010-1z" data-webtasks-id="2179d166-983e-4ee1"></path></g></svg><div class="a83bd4e0 _266d6623 _2f303ac3 _2a3b75a1 _211eebc7" data-webtasks-id="8ddbe769-560c-4d8d">Inbox</div></a>&nbsp;/&nbsp;<a class="m4WjXkL" title="Clean the kitchen" href="/app/project/2315339881#section-127556442" data-webtasks-id="19fd60e4-df9d-4d68"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" data-webtasks-id="2cab6fd6-2336-4ee1"><path fill-rule="evenodd" clip-rule="evenodd" d="M3 1.5a.5.5 0 01.5-.5h9a.5.5 0 010 1h-9a.5.5 0 01-.5-.5zM13 6a2 2 0 00-2-2H5a2 2 0 00-2 2v4a2 2 0 002 2h6a2 2 0 002-2V6zM5 5h6l.117.007A1 1 0 0112 6v4l-.007.117A1 1 0 0111 11H5l-.117-.007A1 1 0 014 10V6l.007-.117A1 1 0 015 5zm-1.5 9a.5.5 0 000 1h9a.5.5 0 000-1h-9z" fill="currentColor" data-webtasks-id="a3beb65f-d1f4-48fd"></path></svg><div class="a83bd4e0 _266d6623 _2f303ac3 _2a3b75a1 _211eebc7" data-webtasks-id="334d7c9f-08b6-4e44">Clean the kitchen</div></a></div></div><div data-testid="button-container" class="_49ffdac0 _4bb9987d _2a3b75a1 _68ab48ca d5d0d34a d8ff7933 a83fb2f5" data-webtasks-id="be9d3c2d-50e0-45b8"><div class="_2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="66130b55-02a0-439e"><button aria-label="Previous task" type="button" aria-disabled="true" tabindex="0" class="_8313bd46 f169a390 _5e45d59f _8644eccb _43792df1 _2a3b75a1" data-webtasks-id="16924933-a9ac-460f"><svg width="14" height="8" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="cff6a6aa-48b2-47be"><path fill-rule="evenodd" clip-rule="evenodd" d="M13.854 7.604a.5.5 0 01-.708 0L7 1.457.854 7.604a.5.5 0 01-.708-.707l6.5-6.5a.5.5 0 01.708 0l6.5 6.5a.5.5 0 010 .707z" fill="currentColor" data-webtasks-id="745be2bd-db46-4500"></path></svg></button><button aria-label="Next task" type="button" aria-disabled="false" tabindex="0" class="_8313bd46 f169a390 _5e45d59f _8644eccb _2a3b75a1" data-webtasks-id="c67098ab-8d68-4906"><svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="9465ab8d-be05-4b83"><path fill-rule="evenodd" clip-rule="evenodd" d="M5.146 8.397a.5.5 0 01.708 0L12 14.543l6.146-6.146a.5.5 0 01.708.707l-6.5 6.5a.5.5 0 01-.708 0l-6.5-6.5a.5.5 0 010-.707z" fill="currentColor" data-webtasks-id="dd77b9d1-b4e5-4d86"></path></svg></button><div class="_2a3b75a1 f53218d5" data-webtasks-id="c8f84dd2-5bd4-4e7e"><button data-command="" data-disclosure="" aria-expanded="false" id=":ri:" aria-haspopup="menu" aria-label="More actions" type="button" aria-disabled="false" tabindex="0" class="_8313bd46 f169a390 _5e45d59f _8644eccb _2a3b75a1" data-webtasks-id="83545fc5-b6fb-4590"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" data-webtasks-id="53fe8bf7-4434-4e44"><g fill="none" stroke="currentColor" stroke-linecap="round" transform="translate(3 10)" data-webtasks-id="daff3f7a-8b61-4a28"><circle cx="2" cy="2" r="2" data-webtasks-id="49b5db21-ab21-4306"></circle><circle cx="9" cy="2" r="2" data-webtasks-id="6f12de13-aa2e-45b2"></circle><circle cx="16" cy="2" r="2" data-webtasks-id="ce3425ee-aa05-481c"></circle></g></svg></button></div><div class="_2a3b75a1 f53218d5" data-webtasks-id="7fc549ba-31a3-442d"><button aria-label="Close modal" tabindex="0" type="button" aria-disabled="false" class="_8313bd46 f169a390 _5e45d59f _8644eccb _2a3b75a1" data-webtasks-id="34e4072c-9778-4feb"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" data-webtasks-id="ea7cfc14-7201-4dcd"><path fill="currentColor" d="M5.146 5.146a.5.5 0 0 1 .708 0L12 11.293l6.146-6.147a.5.5 0 0 1 .638-.057l.07.057a.5.5 0 0 1 0 .708L12.707 12l6.147 6.146a.5.5 0 0 1 .057.638l-.057.07a.5.5 0 0 1-.708 0L12 12.707l-6.146 6.147a.5.5 0 0 1-.638.057l-.07-.057a.5.5 0 0 1 0-.708L11.293 12 5.146 5.854a.5.5 0 0 1-.057-.638z" data-webtasks-id="49861694-2c45-47ad"></path></svg></button></div></div></div></div></header><hr class="b6f67ff8 _2a3b75a1" data-webtasks-id="433e9730-1e23-48cd"><div data-item-content="Wash dishes and utensils." data-item-id="7016195072" data-item-detail-root="" data-item-project-id="2315339881" data-item-project-name="Inbox" class="SDboQs9 _2a3b75a1 _509a57b4 e5a9206f a83fb2f5" data-webtasks-id="cf154c9a-7f0c-4d28"><div data-testid="task-main-content-container" class="_2a3b75a1 eb6097f1 f0941ead _078feb3c _10a2f952 _8c75067a d85cf739" data-webtasks-id="d78b189e-eedc-4871"><div class="_2a3b75a1 _509a57b4 _1fb9d90e _966b120f _8c75067a" data-webtasks-id="5f7a5ebf-8b20-4ed6"><div class="_2a3b75a1 _509a57b4 _1fb9d90e c68f8bf6 _8c75067a" data-webtasks-id="3ea21a2e-598a-4d43"><div data-testid="task-detail-editor-container" class="task-detail-editor-container _2a3b75a1 a83fb2f5" data-webtasks-id="02d11776-5f77-42a7"><div class="_2a3b75a1 _509a57b4 e5a9206f _4a93668a a83fb2f5" data-webtasks-id="3cba26e5-9d36-4220"><button type="button" class="task_checkbox priority_1 disabled" role="checkbox" aria-checked="false" aria-label="Checkbox for Wash dishes and utensils." disabled="" data-webtasks-id="b65e9143-a18f-4b19"><span class="task_checkbox__circle" data-webtasks-id="97d8eee7-14e6-4155"></span><svg width="24" height="24" data-webtasks-id="14ade83b-109b-430a"><path fill="currentColor" d="M11.23 13.7l-2.15-2a.55.55 0 0 0-.74-.01l.03-.03a.46.46 0 0 0 0 .68L11.24 15l5.4-5.01a.45.45 0 0 0 0-.68l.02.03a.55.55 0 0 0-.73 0l-4.7 4.35z" data-webtasks-id="66e73e0a-30d2-40f4"></path></svg><span class="task_checkbox__border" data-webtasks-id="0f775ab8-d949-4e88"></span></button><div class="_2a3b75a1 cd4c8183 _4a93668a a83fb2f5" data-webtasks-id="fd31d729-9aa5-4e37"><form class="task_editor focus-marker-enabled-within" data-webtasks-id="9fd83263-805a-4740"><div class="task_editor__editing_area" data-webtasks-id="4030e209-2b02-458c"><div class="task_editor__input_fields" data-webtasks-id="9c1339aa-a61c-4177"><div class="task_editor__content_field no-focus-marker task_editor__content_field--large-text" data-webtasks-id="809b6a1e-26cd-47d0"><div class="_2a3b75a1 _509a57b4 _1fb9d90e _4a93668a" data-webtasks-id="3a2ffedc-1cc6-4b38"><div class="e3d32437 _2a3b75a1" data-webtasks-id="9320c9f3-7323-4f4a"><div class="kr2Srm5 no-focus-marker task_editor__content_field--semibold" data-webtasks-id="50b5f52a-fc09-4387"><div contenteditable="true" data-typist-editor="true" data-rich-text="true" role="textbox" aria-readonly="false" aria-multiline="true" aria-label="Task name" translate="no" class="ProseMirror ProseMirror-focused" tabindex="0" data-webtasks-id="93a4e6bc-4ba7-45d7"><p data-webtasks-id="ef22640b-8a44-4f11">Wash dishes and utensils.</p></div></div></div></div></div><div class="_2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="044b805f-a892-49ee"><div class="task_editor__description_field_icon _2a3b75a1" data-webtasks-id="da091a18-e69c-4c1d"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" data-webtasks-id="1c3d3459-72f3-48f2"><path d="M12.5 16a.5.5 0 010 1h-5a.5.5 0 010-1h5zm3.864-4c.351 0 .636.224.636.5 0 .245-.225.45-.522.492l-.114.008H7.636C7.285 13 7 12.776 7 12.5c0-.245.225-.45.522-.492L7.636 12h8.728zm0-4c.351 0 .636.224.636.5 0 .245-.225.45-.522.492L16.364 9H7.636C7.285 9 7 8.776 7 8.5c0-.245.225-.45.522-.492L7.636 8h8.728z" fill="currentColor" data-webtasks-id="06a4ad7e-ab79-456c"></path></svg></div><div class="_2a3b75a1 _509a57b4 _1fb9d90e _4a93668a" data-webtasks-id="b74882f7-ef98-47e8"><div class="e3d32437 _2a3b75a1" data-webtasks-id="8a3a0ccb-ca2a-4a95"><div class="kr2Srm5 task_editor__description_field no-focus-marker task_editor__description_field--empty" data-webtasks-id="bef21422-ded5-4a8a"><div contenteditable="true" data-typist-editor="true" data-rich-text="true" role="textbox" aria-readonly="false" aria-multiline="true" aria-label="Description" translate="no" class="ProseMirror" tabindex="0" data-webtasks-id="ab21a49a-d8dd-4615"><p data-placeholder="Description" class="is-empty is-editor-empty" data-webtasks-id="461c63de-9584-4019"><br class="ProseMirror-trailingBreak" data-webtasks-id="a092a57c-4b7a-4969"></p></div></div></div></div></div></div></div><div class="task_editor__footer _2a3b75a1 _509a57b4 d3449da6 e5a9206f _904ef8fe _8c75067a" data-webtasks-id="5497476c-55cb-4710"><div data-testid="task-editor-action-buttons" class="task_editor__footer__action-buttons _2a3b75a1 _509a57b4 e5a9206f _3692f9c2 _50ba6b6b _985b733f c68f8bf6" data-webtasks-id="be0bab6d-1b2d-4315"><button aria-label="Cancel" type="button" aria-disabled="false" class="_8313bd46 _54d56775 _5e45d59f _2a3b75a1 _56a651f6" data-webtasks-id="548c70d6-aca3-4080"><span class="_0051d171 _2a3b75a1 f973eed0 f6342c26" data-webtasks-id="be6d5f68-d8a7-44d8">Cancel</span></button><button data-testid="task-editor-submit-button" aria-label="Save" type="submit" aria-disabled="false" class="_8313bd46 _7a4dbd5f _5e45d59f _2a3b75a1 _56a651f6" data-webtasks-id="68e94d58-452c-483e"><span class="_0051d171 _2a3b75a1 f973eed0 f6342c26" data-webtasks-id="dedbe964-90d7-43e3">Save</span></button></div></div></form></div></div></div></div><div class="_2a3b75a1" data-webtasks-id="b78be981-c317-46cf"><div class="rhBN4zt _2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="7118625a-260d-4506"><div class="_2a3b75a1 _96003c07" data-webtasks-id="b975d6c4-b4f9-4414"><button type="button" aria-disabled="false" class="_8313bd46 f169a390 _8b7f1a82 _2a3b75a1 _56a651f6" data-webtasks-id="f478ad89-d52a-476d"><div aria-hidden="true" class="a44d4350 _2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="87ab5230-c353-4759"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="84203546-8417-4d6b"><path fill-rule="evenodd" clip-rule="evenodd" d="M12 6a.462.462 0 00-.461.462v5.077H6.462a.462.462 0 100 .922h5.077v5.077a.461.461 0 10.922 0v-5.077h5.077a.461.461 0 100-.922h-5.077V6.462A.462.462 0 0012 6z" fill="currentColor" data-webtasks-id="d495cc9e-c082-450d"></path></svg></div><span class="_0051d171 _2a3b75a1 f973eed0 f6342c26" data-webtasks-id="77bb209f-b232-480f">Add sub-task</span></button></div></div></div><div class="Qt2esjE _2a3b75a1 _4e9ab24b fbd4ce29" data-webtasks-id="966c0f31-7ade-4901"><div data-webtasks-id="653cc153-e77b-406b"></div><div data-webtasks-id="444e4872-6c77-4a1f"><div class="xtmWYbJ _2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="f8e87eee-da5b-42ce"><div class="_2a3b75a1 _297575f4" data-webtasks-id="55c88bc7-0318-44b4"><div class="+syWHcL AGpOHKn _2a3b75a1" data-webtasks-id="d5046df5-0bab-4e05"><img src="https://dcff1xvirvpfp.cloudfront.net/e0bb2b38dfa4453db86eeebe2f5f504b_small.jpg" alt="webtasks.navigator" data-webtasks-id="04dba0bb-18a9-4e06"></div></div><div class="_2a3b75a1 _509a57b4 _1fb9d90e _8c75067a" data-webtasks-id="a43771e9-290b-482b"><button type="button" data-testid="open-comment-editor-button" data-webtasks-id="f9762acc-671c-4ab1">Comment</button></div></div></div></div></div></div><div class="_2a3b75a1 d5d0d34a" data-webtasks-id="f7b1a202-804a-41ca"><div data-testid="task-details-sidebar" class="vDN8Sum _2a3b75a1 _509a57b4 _1d226e27 f0941ead b75f86cd _078feb3c _1fb9d90e _904ef8fe _10a2f952 a83fb2f5 _4eb1d749" data-webtasks-id="caa83475-6c0e-4bf8"><div class="IGdnSy+ _2a3b75a1 _509a57b4 ad0ccf15 d70b3c17 _1fb9d90e c68f8bf6 _8c75067a" data-webtasks-id="f2c8203d-2514-4ba1"><div role="group" aria-label="Project" class="_2a3b75a1" data-webtasks-id="76a5e62f-f352-4b5a"><div aria-hidden="true" class="oHQRp5h a83bd4e0 _6a3e5ade _2a3b75a1" data-webtasks-id="89037ddb-ae32-45cb">Project</div><div class="yy6rPNZ" data-webtasks-id="74961cf6-547c-4872"><div class="_2a3b75a1 ae9d1115 _96003c07" data-webtasks-id="c27def96-57e6-4c67"><button aria-label="Select a project" aria-owns="dropdown-select-5-popup" aria-controls="dropdown-select-5-popup" aria-expanded="false" aria-haspopup="listbox" type="button" aria-disabled="true" class="_9KUWmzz _8313bd46 f169a390 _8b7f1a82 _43792df1 _2a3b75a1 _8c75067a" data-webtasks-id="c8e14fe6-aaab-4299"><div aria-hidden="true" class="a44d4350 _2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="91be5744-75b0-496f"><svg width="16" height="16" viewBox="0 0 16 16" class="project_icon project_icon_inbox" data-webtasks-id="e79f3251-f929-44d2"><g fill="currentColor" data-webtasks-id="2c552e73-1760-40ba"><path d="M13.5 9.5V12a1.5 1.5 0 01-1.5 1.5H4A1.5 1.5 0 012.5 12V9.5h3.75a1.75 1.75 0 003.5 0h3.75z" opacity="0.1" data-webtasks-id="217e6fe4-67d9-4dd9"></path><path d="M10.491 2a2 2 0 011.923 1.45l1.509 5.28a2 2 0 01.077.55V12a2 2 0 01-2 2H4a2 2 0 01-2-2V9.28a2 2 0 01.077-.55l1.509-5.28A2 2 0 015.509 2h4.982zm0 1H5.51a1 1 0 00-.962.725l-1.509 5.28A1 1 0 003 9.28V12a1 1 0 001 1h8a1 1 0 001-1V9.28a1 1 0 00-.038-.275l-1.51-5.28a1 1 0 00-.96-.725zM6.25 9a.5.5 0 01.5.5 1.25 1.25 0 002.5 0 .5.5 0 01.5-.5h1.75a.5.5 0 110 1h-1.306a2.25 2.25 0 01-4.388 0H4.5a.5.5 0 010-1z" data-webtasks-id="195b6324-c1b5-49c3"></path></g></svg></div><span class="_0051d171 _2a3b75a1 fff8bff0 f6342c26 _8c75067a" data-webtasks-id="e69723c6-ed6e-4cd4"><div class="Iz3tZqW" data-webtasks-id="1b164bca-224b-4bb7"><span class="z3lsAU6" data-webtasks-id="a4fde5b9-f598-4983">Inbox</span><div class="VimA8D5" data-webtasks-id="6bc246bb-276b-422f">/</div><span class="z3lsAU6" data-webtasks-id="55eea699-c89d-4da1">Clean the kitchen</span></div></span><div aria-hidden="true" class="_073e1aa4 _2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="f0370304-6652-4ee2"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" data-webtasks-id="9e3ec90a-c315-4a6e"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M16 10l-4 4-4-4" fill="none" fill-rule="evenodd" data-webtasks-id="510019b3-cb9b-46ed"></path></svg></div></button></div></div></div><hr class="_03b05b70 _2a3b75a1" data-webtasks-id="901cd782-3f79-4273"><div role="group" aria-label="Due date" class="_2a3b75a1" data-webtasks-id="3ca85f38-3593-497d"><div aria-hidden="true" class="oHQRp5h a83bd4e0 _6a3e5ade _2a3b75a1" data-webtasks-id="87b1d225-5a4a-45a0">Due date</div><div class="yy6rPNZ" data-webtasks-id="331bd97f-366d-4d1d"><div class="Ya1xiF2 _2a3b75a1 _9015266f ae9d1115 _96003c07" data-webtasks-id="b00518d1-c6f2-4613"><button aria-expanded="false" type="button" aria-disabled="true" tabindex="0" class="_8313bd46 f169a390 _8b7f1a82 _43792df1 _2a3b75a1 _8c75067a" data-webtasks-id="2844a533-a669-4ab3"><div aria-hidden="true" class="a44d4350 _2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="92163f49-5a0d-42de"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" class="task-due-date-button date_tom" data-webtasks-id="7fe3f822-aafc-4781"><path fill-rule="evenodd" clip-rule="evenodd" d="M12 2H4a2 2 0 00-2 2v8a2 2 0 002 2h8a2 2 0 002-2V4a2 2 0 00-2-2zM3 4a1 1 0 011-1h8a1 1 0 011 1v8a1 1 0 01-1 1H4a1 1 0 01-1-1V4zm8.5 6.75a.75.75 0 11-1.5 0 .75.75 0 011.5 0zM4.5 5a.5.5 0 000 1h7a.5.5 0 000-1h-7z" fill="currentColor" data-webtasks-id="576322e5-c89c-441b"></path></svg></div><span class="_0051d171 _2a3b75a1 fff8bff0 f6342c26 _8c75067a" data-webtasks-id="c61d0e61-c42a-460d">Tomorrow</span></button><button aria-label="No Date" type="button" aria-disabled="false" tabindex="0" class="wIZ6xT5 _8313bd46 f169a390 _8b7f1a82 _8644eccb _2a3b75a1" data-webtasks-id="16968581-bf83-4288"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" aria-hidden="true" data-webtasks-id="9990821b-646a-46f6"><path d="M8.854 8.146L12 11.293l3.146-3.147a.502.502 0 01.708.708L12.707 12l3.147 3.146a.502.502 0 01-.708.708L12 12.707l-3.146 3.147a.502.502 0 01-.708-.708L11.293 12 8.146 8.854a.502.502 0 01.708-.708z" fill="currentColor" fill-rule="nonzero" data-webtasks-id="a94e1f8c-cef0-496a"></path></svg></button></div></div></div><hr class="_03b05b70 _2a3b75a1" data-webtasks-id="4d78ba55-e4e1-455e"><div role="group" aria-label="Priority" class="_2a3b75a1" data-webtasks-id="52bd5430-2b3e-49ed"><div aria-hidden="true" class="oHQRp5h a83bd4e0 _6a3e5ade _2a3b75a1" data-webtasks-id="678090fd-6b9d-4f68">Priority</div><div class="yy6rPNZ" data-webtasks-id="80658827-e884-4f0f"><div class="_2a3b75a1 ae9d1115 _96003c07" data-webtasks-id="2fa3d593-c538-4ed4"><button aria-owns="dropdown-select-6-popup" aria-controls="dropdown-select-6-popup" aria-expanded="false" aria-haspopup="listbox" type="button" aria-disabled="true" class="_9KUWmzz _8313bd46 f169a390 _8b7f1a82 _43792df1 _2a3b75a1 _8c75067a" data-webtasks-id="5289a7a1-829a-44e5"><div aria-hidden="true" class="a44d4350 _2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="6cc376cc-af5a-44f5"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" class="Gw1i-E3" data-icon-name="priority-icon" data-priority="4" data-webtasks-id="5c2cc620-f433-4565"><path fill-rule="evenodd" clip-rule="evenodd" d="M2 3a.5.5 0 01.276-.447C3.025 2.179 4.096 2 5.5 2c.901 0 1.485.135 2.658.526C9.235 2.885 9.735 3 10.5 3c1.263 0 2.192-.155 2.776-.447A.5.5 0 0114 3v6.5a.5.5 0 01-.276.447c-.749.375-1.82.553-3.224.553-.901 0-1.485-.135-2.658-.526C6.765 9.615 6.265 9.5 5.5 9.5c-1.08 0-1.915.113-2.5.329V13.5a.5.5 0 01-1 0V3zm1 5.779v-5.45C3.585 3.113 4.42 3 5.5 3c.765 0 1.265.115 2.342.474C9.015 3.865 9.599 4 10.5 4c1.002 0 1.834-.09 2.5-.279v5.45c-.585.216-1.42.329-2.5.329-.765 0-1.265-.115-2.342-.474C6.985 8.635 6.401 8.5 5.5 8.5c-1.001 0-1.834.09-2.5.279z" fill="currentColor" data-webtasks-id="9bd8cca8-6b5d-4e24"></path></svg></div><span class="_0051d171 _2a3b75a1 fff8bff0 f6342c26 _8c75067a" data-webtasks-id="98e4999f-fae6-4705">P4</span><div aria-hidden="true" class="_073e1aa4 _2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="0a0f0d9c-d7f0-469e"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" data-webtasks-id="b5fe7193-78de-4997"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M16 10l-4 4-4-4" fill="none" fill-rule="evenodd" data-webtasks-id="06c58855-6f05-45f7"></path></svg></div></button></div></div></div><hr class="_03b05b70 _2a3b75a1" data-webtasks-id="aecb45f9-8499-4e8e"><div class="_2a3b75a1 _509a57b4 _1fb9d90e _2580a74b _8c75067a" data-webtasks-id="636ac09a-4b77-4d75"><div class="_2a3b75a1 ae9d1115 _96003c07" data-webtasks-id="7e6e8edf-02fa-490e"><button aria-owns="dropdown-select-7-popup" aria-controls="dropdown-select-7-popup" aria-expanded="false" aria-haspopup="listbox" type="button" aria-disabled="true" class="_8313bd46 f169a390 _8b7f1a82 _43792df1 _2a3b75a1 _8c75067a" data-webtasks-id="e6d1bccf-c934-443c"><span class="_0051d171 _2a3b75a1 fff8bff0 f6342c26 _8c75067a" data-webtasks-id="61dbed84-ef63-4500">Labels</span><div aria-hidden="true" class="_073e1aa4 _2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="e7f5ebb4-a8c6-4511"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="c394d0e4-4d31-4ba0"><path fill-rule="evenodd" clip-rule="evenodd" d="M12 6a.462.462 0 00-.461.462v5.077H6.462a.462.462 0 100 .922h5.077v5.077a.461.461 0 10.922 0v-5.077h5.077a.461.461 0 100-.922h-5.077V6.462A.462.462 0 0012 6z" fill="currentColor" data-webtasks-id="b2b60b00-a322-4275"></path></svg></div></button></div></div><hr class="_03b05b70 _2a3b75a1" data-webtasks-id="d189abe7-446f-4ac9"><div class="_2a3b75a1" data-webtasks-id="8e9e8e13-47db-406e"><div data-webtasks-id="a466f72c-26d7-4a47"><div class="_2a3b75a1 ae9d1115 _96003c07" data-webtasks-id="c7b30cdc-d1d0-4fc6"><button tabindex="0" type="button" aria-disabled="true" class="_8313bd46 f169a390 _8b7f1a82 _43792df1 _2a3b75a1 _8c75067a" data-webtasks-id="6fab4e3b-e5fc-499c"><span class="_0051d171 _2a3b75a1 fff8bff0 f6342c26 _8c75067a" data-webtasks-id="3bf6d308-69e2-4b22"><div class="_2a3b75a1 _509a57b4 e5a9206f _50ba6b6b _2580a74b" data-webtasks-id="56f794be-fb70-4a1d"><div class="oHQRp5h a83bd4e0 _6a3e5ade _2a3b75a1" data-webtasks-id="acbe6a40-8e6b-4213">Reminders</div><div class="_2a3b75a1 _509a57b4 e5a9206f _50ba6b6b" data-webtasks-id="e4a87c75-2b03-4b7e"><span class="_7957de66 a6d2daa2 _2a3b75a1 _4a786bb9" data-webtasks-id="e97a5f42-2c6e-4416">Pro</span></div></div></span><div aria-hidden="true" class="_073e1aa4 _2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="ccba8437-1a25-4c98"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="e743ddd7-0834-4035"><path fill="currentColor" fill-rule="evenodd" clip-rule="evenodd" d="M15 6.995V9H9V6.995C9 5.895 9.9 5 11.01 5h1.988C14.102 5 15 5.897 15 6.995zM8 9V6.995A3.003 3.003 0 0111.01 4h1.988A3.002 3.002 0 0116 6.995V9h.994C18.102 9 19 9.887 19 11v6c0 1.105-.897 2-2.006 2H7.006A1.998 1.998 0 015 17v-6c0-1.105.897-2 2.006-2H8zm-2 2v6c0 .556.446 1 1.006 1h9.988c.557 0 1.006-.448 1.006-1v-6c0-.556-.446-1-1.006-1H7.006C6.449 10 6 10.448 6 11zm4 3a2 2 0 104 0 2 2 0 00-4 0zm2 1a1 1 0 100-2 1 1 0 000 2z" data-webtasks-id="d3171542-db4f-40f0"></path></svg></div></button></div></div></div><hr class="_03b05b70 _2a3b75a1" data-webtasks-id="027f8714-0a8e-4fa0"><div data-item-actions-root="" data-item-id="7016195072" data-item-content="Wash dishes and utensils." data-item-project-id="2315339881" data-item-project-name="Inbox" data-webtasks-id="bbb2d0db-376c-486f"></div></div></div></div></div></div></div><div data-focus-guard="true" tabindex="0" data-webtasks-id="19b7303c-b812-4860" style="width: 1px; height: 0px; padding: 0px; overflow: hidden; position: fixed; top: 1px; left: 1px;"></div></div></div></div><div data-tippy-root="" id="tippy-5" data-webtasks-id="5477c018-f5de-44bc" style="z-index: 10006; visibility: hidden; position: absolute; inset: auto auto 0px 0px; margin: 0px; transform: translate(335px, -559px);"><div class="tippy-box" data-state="hidden" tabindex="-1" data-animation="fade" role="tooltip" data-placement="top" data-webtasks-id="3426787a-0496-4dfa" style="max-width: 350px; transition-duration: 150ms;"><div class="tippy-content" data-state="hidden" style="transition-duration: 150ms;" data-webtasks-id="ad706b6b-1f77-4b97"><div data-webtasks-id="0799d34a-18fc-4484"><div data-testid="formattingToolbarPopover" class="eQEgPsq" data-webtasks-id="b1dba0ce-9d12-4b57"><button aria-label="Bold" aria-pressed="false" tabindex="0" type="button" aria-disabled="false" class="_8313bd46 _907a61ca _5e45d59f _8644eccb _2a3b75a1" data-webtasks-id="a4f40c8c-172e-4d78"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="e28694f8-710a-467c"><path d="M8.573 18h3.958c2.561 0 4.117-1.297 4.117-3.41 0-1.588-1.14-2.76-2.77-2.918v-.067c1.231-.2 2.188-1.322 2.188-2.611C16.066 7.173 14.66 6 12.48 6H8.573C7.907 6 7.5 6.416 7.5 7.114v9.772c0 .698.407 1.114 1.073 1.114zm1.073-6.944V7.672h2.295c1.28 0 2.004.59 2.004 1.638 0 1.114-.84 1.746-2.337 1.746H9.646zm0 5.272v-3.75h2.303c1.647 0 2.511.64 2.511 1.863 0 1.23-.84 1.887-2.42 1.887H9.646z" fill="currentColor" data-webtasks-id="73c3b530-d09c-4e84"></path></svg></button><button aria-label="Italic" aria-pressed="false" tabindex="0" type="button" aria-disabled="false" class="_8313bd46 _907a61ca _5e45d59f _8644eccb _2a3b75a1" data-webtasks-id="2df7de52-832b-4eaa"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="56308bb6-8820-4a2d"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.5 6.5A.5.5 0 0111 6h5a.5.5 0 010 1h-1.717l-3 10H13a.5.5 0 110 1H8a.5.5 0 010-1h1.717l3-10H11a.5.5 0 01-.5-.5z" fill="currentColor" data-webtasks-id="9c28d883-59a8-4b1f"></path></svg></button><button aria-label="Code" aria-pressed="false" tabindex="0" type="button" aria-disabled="false" class="_8313bd46 _907a61ca _5e45d59f _8644eccb _2a3b75a1" data-webtasks-id="e3dd47aa-d428-4bef"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="b5e5e1ed-69d8-4a48"><path fill-rule="evenodd" clip-rule="evenodd" d="M13.987 5.612a.5.5 0 00-.974-.224l-3 13a.5.5 0 00.974.224l3-13zM8.354 8.146a.5.5 0 010 .708L5.207 12l3.147 3.146a.5.5 0 11-.708.707l-3.5-3.5a.5.5 0 010-.707l3.5-3.5a.5.5 0 01.708 0zm7.292 7.707a.5.5 0 010-.707L18.793 12l-3.147-3.146a.5.5 0 01.708-.708l3.5 3.5a.5.5 0 010 .707l-3.5 3.5a.5.5 0 01-.708 0z" fill="currentColor" data-webtasks-id="3d336659-5ac2-4b98"></path></svg></button><div class="RlqfWUT _2a3b75a1" data-webtasks-id="e5dd773b-8024-493a"><button aria-label="Add link" aria-pressed="false" tabindex="0" type="button" aria-disabled="false" class="_7z-i0ld _8313bd46 _907a61ca _5e45d59f _2a3b75a1 _56a651f6" data-webtasks-id="6f3b1e6c-1836-4add"><div aria-hidden="true" class="a44d4350 _2a3b75a1 _509a57b4 e5a9206f" data-webtasks-id="9e44055a-b74f-4bbb"><svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg" data-webtasks-id="6f7ae673-9789-4f84"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.096 13.046l-.707-.707-1.768 1.768a3 3 0 104.243 4.242l3.535-3.535a3 3 0 000-4.243l-.707.707a2 2 0 010 2.829l-3.535 3.535a2 2 0 11-2.829-2.828l1.768-1.768zm7.425-1.768l.707.707 1.768-1.768a3 3 0 10-4.243-4.242L10.217 9.51a3 3 0 000 4.243l.708-.707a2 2 0 010-2.829l3.535-3.535a2 2 0 112.83 2.828l-1.768 1.768z" data-webtasks-id="76f6d935-7d0f-4fb7"></path></svg></div><span class="_0051d171 _2a3b75a1 f973eed0 f6342c26" data-webtasks-id="4bfe2970-196e-44f6">Link</span></button></div></div></div></div><div class="tippy-arrow" style="position: absolute; left: 0px; transform: translate(83px, 0px);" data-webtasks-id="7e798418-bd88-4e28"></div></div></div></body>