edbrowse-dev - development list for edbrowse
 help / color / mirror / Atom feed
* [edbrowse-dev] Abort from within duktape when visiting https://www.digicatapult.org.uk/careers
@ 2019-12-07 17:28 Adam Thompson
  2019-12-07 22:14 ` Karl Dahlke
  0 siblings, 1 reply; 6+ messages in thread
From: Adam Thompson @ 2019-12-07 17:28 UTC (permalink / raw)
  To: edbrowse-dev

Hi all,

As per the subject really.  This blew up with both my older compiled version
of duktape and the version from Debian sid.  I'd give a full backtrace but
I'm lacking a duktape with debug symbols (how do I get this) and thus the
interesting part disappears (see below for what I have):

b https://www.digicatapult.org.uk/careers
[New Thread 0x7ffff6c73700 (LWP 293666)]
[Thread 0x7ffff6c73700 (LWP 293666) exited]
119328
[New Thread 0x7ffff6c73700 (LWP 293667)]
[Thread 0x7ffff6c73700 (LWP 293667) exited]
[New Thread 0x7ffff6c73700 (LWP 293668)]
[Thread 0x7ffff6c73700 (LWP 293668) exited]
[New Thread 0x7ffff6c73700 (LWP 293669)]
[New Thread 0x7ffff61c1700 (LWP 293670)]
[New Thread 0x7ffff59c0700 (LWP 293671)]
[New Thread 0x7ffff51bf700 (LWP 293672)]
[Thread 0x7ffff51bf700 (LWP 293672) exited]
[Thread 0x7ffff6c73700 (LWP 293669) exited]
[Thread 0x7ffff61c1700 (LWP 293670) exited]
[Thread 0x7ffff59c0700 (LWP 293671) exited]

Thread 1 "edbrowse" received signal SIGABRT, Aborted.
__GI_raise (sig=sig@entry=6) at ../sysdeps/unix/sysv/linux/raise.c:50
50      ../sysdeps/unix/sysv/linux/raise.c: No such file or directory.
(gdb) bt
#0  __GI_raise (sig=sig@entry=6) at ../sysdeps/unix/sysv/linux/raise.c:50
#1  0x00007ffff7a22535 in __GI_abort () at abort.c:79
#2 0x00007ffff7d2ccf6 in ?? () from
/usr/lib/x86_64-linux-gnu/libduktape.so.204
#3 0x00007ffff7d35649 in duk_fatal_raw () from
/usr/lib/x86_64-linux-gnu/libduktape.so.204
#4 0x00007ffff7d4849b in ?? () from
/usr/lib/x86_64-linux-gnu/libduktape.so.204
#5 0x00007ffff7d39929 in ?? () from
/usr/lib/x86_64-linux-gnu/libduktape.so.204
#6 0x00007ffff7d2ce16 in ?? () from
/usr/lib/x86_64-linux-gnu/libduktape.so.204
#7 0x00007ffff7d369fb in ?? () from
/usr/lib/x86_64-linux-gnu/libduktape.so.204
#8 0x00007ffff7d36a8c in ?? () from
/usr/lib/x86_64-linux-gnu/libduktape.so.204
#9 0x00005555555d6494 in set_property_string_nat (parent=0x555555ac8268,
name=0x5555555d9e3d "readyState", value=0x5555555d9e34 "complete") at
jseng-duk.c:1839
#10 0x00005555555ae57a in set_property_string (obj=0x555555ac8268,
name=0x5555555d9e3d "readyState", value=0x5555555d9e34 "complete") at
ebjs.c:416
#11 0x000055555559d452 in htmlParse (buf=0x555555d267e0 "", remote=1) at
html.c:926
#12 0x000055555558dd95 in browseCurrentBuffer () at buffers.c:6757
#13 0x000055555558ce61 in runCommand (line=0x555555bc6c12
"https://www.digicatapult.org.uk/careers") at buffers.c:6383
#14 0x000055555558d6f4 in edbrowseCommand (line=0x555555bc6c10 "b
https://www.digicatapult.org.uk/careers", script=0 '\000') at buffers.c:6573
#15 0x0000555555578db2 in inputForever (ptr=0x0) at main.c:904
#16 0x0000555555578d3d in main (argc=0, argv=0x7fffffffea30) at main.c:890
(gdb)

Sorry for the second post in an hour and for neither of them actually
containing a full fix.

Cheers,
Adam.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [edbrowse-dev] Abort from within duktape when visiting https://www.digicatapult.org.uk/careers
  2019-12-07 17:28 [edbrowse-dev] Abort from within duktape when visiting https://www.digicatapult.org.uk/careers Adam Thompson
@ 2019-12-07 22:14 ` Karl Dahlke
  2019-12-08 13:53   ` Adam Thompson
  0 siblings, 1 reply; 6+ messages in thread
From: Karl Dahlke @ 2019-12-07 22:14 UTC (permalink / raw)
  To: edbrowse-dev

I'll look at this in one of my insomnia moments.

Such is usually caused by a bad reference or other js runtime error in an unprotected context.
The last time such happened I had to write a protected layer around a call, see jseng-duk.c line 1644.
But of course that might not be what is happening here.

db5
Sometimes shows us going out to make a low level js call but it doesn't return.

Karl Dahlke

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [edbrowse-dev] Abort from within duktape when visiting https://www.digicatapult.org.uk/careers
  2019-12-07 22:14 ` Karl Dahlke
@ 2019-12-08 13:53   ` Adam Thompson
  2019-12-08 15:26     ` [edbrowse-dev] Abort from within duktape when visiting Karl Dahlke
  0 siblings, 1 reply; 6+ messages in thread
From: Adam Thompson @ 2019-12-08 13:53 UTC (permalink / raw)
  To: Karl Dahlke; +Cc: edbrowse-dev

[-- Attachment #1: Type: text/plain, Size: 845 bytes --]

On Sat, Dec 07, 2019 at 05:14:26PM -0500, Karl Dahlke wrote:
> I'll look at this in one of my insomnia moments.
> 
> Such is usually caused by a bad reference or other js runtime error in an unprotected context.
> The last time such happened I had to write a protected layer around a call, see jseng-duk.c line 1644.
> But of course that might not be what is happening here.

Thanks.

> db5
> Sometimes shows us going out to make a low level js call but it doesn't return.

Turns out the original URI is a bunch of redirects and the site's home page has
the same issue so simply browsing to https://www.digicatapult.org.uk/ is
sufficient to reproduce the issue.

I've attached the db5 output in case it's useful but from looking at it it
just seems like it attempts to run:
> set readyState=complete

and then the browser's gone.

Cheers,
Adam.

[-- Attachment #2: digicatapult.org.uk-dbg.log --]
[-- Type: text/plain, Size: 385071 bytes --]

* b https://www.digicatapult.org.uk/
curl>
GET / HTTP/2
Host: www.digicatapult.org.uk
user-agent: edbrowse/3.7.6
accept: */*
accept-encoding: deflate, gzip, br
referer: https://www.google.com/search?ie=ISO-8859-1&hl=en-GB&source=hp&biw=&bih=&q=digital%20catapult%20uk&btnG=Google%20Search&iflsig=AAP1E1EAAAAAXe0M0HP3joXOMxxYYrcarAMzipfz80Eb&gbv=1
accept-language: en-gb

curl<
HTTP/2 200 
date: Sun, 08 Dec 2019 13:47:12 GMT
content-type: text/html; charset=UTF-8
content text/html; charset=utf-8
set-cookie: __cfduid=dbb3e0d3fcf235459c3962cb1589479151575812831; expires=Tue, 07-Jan-20 13:47:11 GMT; path=/; domain=.digicatapult.org.uk; HttpOnly; Secure
cache-control: public, max-age=0, must-revalidate
age: 141615
vary: Accept-Encoding
x-nf-request-id: 3664f40c-efc9-4f99-9e8c-6dec93cfaadd-623949
cf-cache-status: DYNAMIC
expect-ct: max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
server: cloudflare
cf-ray: 541f3097c91ce654-LHR
content-encoding: br

http code 200
text type is ascii
84116
setting of communication channels for javascript
> create context for session 1
create js context 0
< ok
> set window=0x55e3cfd7ae78
< ok
> script:
< ok
> script:
< ok
> get navigator
< 0x55e3d02e1f68
> set userLanguage=english
< ok
> set language=english
< ok
> set appVersion=3.7.6
< ok
> set vendorSub=3.7.6
< ok
> set userAgent=edbrowse/3.7.6
< ok
> set oscpu=Linux
< ok
> set platform=x86_64
< ok
> get plugins
< 0x55e3d014aff8
> get mimeTypes
< 0x55e3d02e1dc8
> set [0]=(null)
< ok
> set [0]=(null)
< ok
> set enabledPlugin=0x55e3cfed82a8
< ok
> set type=audio
< ok
> set audio=0x55e3cff0b598
< ok
> set description=streaming audio
< ok
> set suffixes=rm,ra,ram,ogg,mp3,mp4,m3u,m3u8,flac,wav,voc,au
< ok
> set description=streaming audio
< ok
> set filename=mpv %i
< ok
> set name=mpv
< ok
> set [1]=(null)
< ok
> set [1]=(null)
< ok
> set enabledPlugin=0x55e3cff0b0c8
< ok
> set type=sounds
< ok
> set sounds=0x55e3cfed8438
< ok
> set description=bbc sounds player
< ok
> set suffixes=
< ok
> set description=bbc sounds player
< ok
> set filename=mpv %i
< ok
> set name=mpv
< ok
> set [2]=(null)
< ok
> set [2]=(null)
< ok
> set enabledPlugin=0x55e3cff0b458
< ok
> set type=pdf
< ok
> set pdf=0x55e3cff55f58
< ok
> set description=pdf file
< ok
> set suffixes=pdf
< ok
> set description=pdf file
< ok
> set filename=pdftohtml -i -noframes %i %o >/dev/null
< ok
> set name=pdftohtml
< ok
> set [3]=(null)
< ok
> set [3]=(null)
< ok
> set enabledPlugin=0x55e3cff55a38
< ok
> set type=Word doc
< ok
> set Word doc=0x55e3cff573b8
< ok
> set description=Microsoft Word document
< ok
> set suffixes=doc,docx
< ok
> set description=Microsoft Word document
< ok
> set filename=pandoc -t markdown %i
< ok
> set name=pandoc
< ok
> get history
< 0x55e3d014b218
> set current=https://www.digicatapult.org.uk/
< ok
> set referrer=long
< ok
> set URL=https://www.digicatapult.org.uk/
< ok
> set location=https://www.digicatapult.org.uk/
< ok
> set location=https://www.digicatapult.org.uk/
< ok
> script:
< ok
> set domain=www.digicatapult.org.uk
< ok
line 615 column 28049 - Warning: missing </label> before <div>
line 615 column 28105 - Warning: inserting implicit <label>
line 615 column 28121 - Warning: inserting implicit <label>
line 615 column 28322 - Warning: missing </label> before <div>
line 615 column 28378 - Warning: inserting implicit <label>
line 615 column 28393 - Warning: inserting implicit <label>
line 615 column 28594 - Warning: missing </label> before <div>
line 615 column 28650 - Warning: inserting implicit <label>
line 615 column 28661 - Warning: inserting implicit <label>
line 615 column 28852 - Warning: missing </label> before <div>
line 615 column 28908 - Warning: inserting implicit <label>
line 615 column 28918 - Warning: inserting implicit <label>
line 615 column 29107 - Warning: missing </label> before <div>
line 615 column 29163 - Warning: inserting implicit <label>
line 615 column 29176 - Warning: inserting implicit <label>
line 615 column 29376 - Warning: missing </label> before <div>
line 615 column 29432 - Warning: inserting implicit <label>
line 615 column 29455 - Warning: inserting implicit <label>
line 615 column 30248 - Warning: missing </label> before <div>
line 615 column 30304 - Warning: inserting implicit <label>
line 615 column 30348 - Warning: inserting implicit <label>
line 615 column 31102 - Warning: missing </button> before <div>
line 615 column 31231 - Warning: inserting implicit <button>
line 615 column 31231 - Warning: missing </button> before <div>
line 615 column 31303 - Warning: inserting implicit <button>
line 615 column 31324 - Warning: discarding unexpected </button>
line 615 column 837 - Warning: <div> proprietary attribute "height"
line 615 column 23906 - Warning: <svg> proprietary attribute "kind"
line 615 column 23906 - Warning: <svg> proprietary attribute "fill"
line 615 column 24160 - Warning: <svg> proprietary attribute "kind"
line 615 column 24160 - Warning: <svg> proprietary attribute "fill"
line 615 column 25355 - Warning: <svg> proprietary attribute "kind"
line 615 column 25355 - Warning: <svg> proprietary attribute "fill"
line 615 column 25609 - Warning: <svg> proprietary attribute "kind"
line 615 column 25609 - Warning: <svg> proprietary attribute "fill"
line 615 column 26804 - Warning: <svg> proprietary attribute "kind"
line 615 column 26804 - Warning: <svg> proprietary attribute "fill"
line 615 column 27058 - Warning: <svg> proprietary attribute "kind"
line 615 column 27058 - Warning: <svg> proprietary attribute "fill"
Node(0): Root {
Node(1): DOCTYPE {
}
Node(1): html {
@lang = en-GB
Node(2): head {
Node(3): meta {
@name = generator
@content = HTML Tidy for HTML5 for Linux version 5.6.0
}
Node(3): meta {
@charset = utf-8
@class = next-head
}
Node(3): meta {
@name = viewport
@content = width=device-width, initial-scale=1
}
Node(3): link {
@rel = dns-prefetch
@href = //images.ctfassets.net
}
Node(3): link {
@rel = apple-touch-icon
@sizes = 180x180
@href = /apple-touch-icon.png
}
Node(3): link {
@rel = icon
@type = image/png
@sizes = 32x32
@href = /favicon-32x32.png
}
Node(3): link {
@rel = icon
@type = image/png
@sizes = 16x16
@href = /favicon-16x16.png
}
Node(3): link {
@rel = manifest
@href = /site.webmanifest
}
Node(3): link {
@rel = mask-icon
@href = /safari-pinned-tab.svg
@color = #5bbad5
}
Node(3): link {
@rel = shortcut icon
@type = image/png
@href = https://images.ctfassets.net/nubxhjiwc091/10Uk6dWAbege0oWS6qiAiy/e256c79ff38f93e3cbbe7a148ac4330b/icon-fs8.png
}
Node(3): meta {
@name = msapplication-TileColor
@content = #da532c
}
Node(3): meta {
@name = theme-color
@content = #f78484
}
Node(3): link {
@href = https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i|Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i
@rel = stylesheet
}
Node(3): link {
@href = https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css
@rel = stylesheet
}
Node(3): script {
@src = https://cdnjs.cloudflare.com/ajax/libs/event-source-polyfill/0.0.9/eventsource.min.js
@type = 0c62581de827c5336e74d77e-text/javascript
}
Node(3): style {
Node(4): Text {
Text: html {
  font-size: 16px;
  line-height: 30px;
}
body {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  color: #7d7d7d;
  font-size: 1rem;
  line-height: 1.875rem;
  margin: auto;
  letter-spacing: 0.2px;
}
h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 3.375rem;
  line-height: 3.75rem;
  /* margin-top: 1.875rem; */
  margin-top: 0;
  margin-bottom: 3.75rem;
}
h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 2.25rem;
  line-height: 3.75rem;
  /* margin-top: 1.875rem; */
  margin-top: 0;
  margin-bottom: 1.875rem;
}
h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.875rem;
  /* margin-top: 1.875rem; */
  margin-top: 0;
  margin-bottom: 0rem;
}
h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.875rem;
  /* margin-top: 1.875rem; */
  margin-top: 0;
  margin-bottom: 0rem;
}
h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.875rem;
  margin-top: 0rem;
  margin-bottom: 0rem;
}

ul,
li {
  font-family: inherit;
  list-style: none;
  padding: 0;
}

p,
ul,
ol,
pre,
table,
blockquote {
  margin: 0 0 1.875rem;
}
ul ul,
ol ol,
ul ol,
ol ul {
  margin-top: 0rem;
  margin-bottom: 0rem;
}

/* Let's make sure all's aligned */
hr {
  border: 1px solid;
  margin: -1px 0;
}
a,
b,
i,
strong,
em,
small,
code {
  line-height: inherit;
}
sub,
sup {
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}

button {
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

}
}
Node(3): style {
Node(4): Text {
Text: html * {
  box-sizing: border-box;
}

ul,
li {
  list-style: none;
  padding: 0;
}

a {
  color: inherit;
}

p > a {
  color: #8d8d8d;
}

h1 a {
  color: #595959 !important;
  text-decoration: underline;
  font-weight: 500 !important;
}

body.noScroll {
  overflow: hidden !important;
}

.homeLock {
  max-height: 100vh;
  overflow: hidden !important;
}

.loader {
  display: none;
}

.homeLock .heroWrapper {
  pointer-events: none;
  opacity: 0.5;
}

.homeLock .loader {
  display: block;
}

#overlay {
  transition: width 0.5s, left 0.5s !important;
  height: 100vh;
  width: 550px;
  position: fixed;
  overflow: hidden;
  z-index: 100001;
  opacity: 1;
}

#overlay.fadeOut {
  transition: opacity 0.3s !important;
  opacity: 0;
}

#overlay.expanded {
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  transition: width 0.75s, left 0.75s !important;
  opacity: 100% !important;
}

#overlay.expanded.fully {
  background: white;
}

#overlay:not(.expanded) #overlay-logo,
#overlay #heroText,
#overlay #sidebar {
  visibility: hidden;
}
/*
#overlay.expanded.partial #page-wrapper {
  width: 100%
} */

#overlay.expanded #overlay-logo,
#overlay.expanded #heroText,
#overlay #sidebar {
  visibility: visible;
}

#overlay:not(.expanded) #page-wrapper {
  width: 100%;
}

.alice-carousel {
  padding: 0;
  height: 100%;
}

.alice-carousel > div {
  height: 100%;
  display: flex;
}

.alice-carousel__wrapper {
  border: none;
}

.alice-carousel__stage-item > * {
  width: 100%;
  height: 100%;
}

.dc-tabs {
}

.dc-tabs__tab-list {
  list-style-type: none;
}

.dc-tabs__tab {
  cursor: pointer;
}

.dc-tabs__tab:last-child {
}

.dc-tabs__tab:hover {
}

.dc-tabs__tab--selected {
}

.dc-tabs__tab--selected:hover {
}

.dc-tabs__panel {
}

.dc-tabs__panel[class*='--selected'] {
  width: 100%;
}

/* @keyframes fade-and-slide-in {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0%);
  }
} */

}
}
Node(3): style {
Node(4): Text {
Text: .alice-carousel .animated {
  animation-fill-mode: both;
}

.alice-carousel .animated-out {
  z-index: 1;
}

.alice-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.alice-carousel {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  padding: 60px;
  margin: auto;
}

.alice-carousel__wrapper {
  position: relative;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  overflow: hidden;
  border: solid 1px rgba(70, 87, 152, 0.3);
}

.alice-carousel__stage {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  box-sizing: border-box;
}
.alice-carousel__stage-item {
  width: 100%;
  height: 100%;
  position: relative;
  display: inline-block;
  vertical-align: top;
  white-space: normal;
  line-height: 0;
}
.alice-carousel__stage-item * {
  line-height: initial;
}
.alice-carousel__stage-item.__cloned {
  opacity: 0;
  visibility: hidden;
}
.alice-carousel__stage:after {
  content: '.';
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.alice-carousel__prev-btn,
.alice-carousel__next-btn {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
}

.alice-carousel__prev-btn-item,
.alice-carousel__next-btn-item {
  display: inline-block;
  position: absolute;
  width: 42px;
  height: 42px;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #6e7ebc;
  cursor: pointer;
  font-size: 1.9em;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #6e7ebc;
  transition: 0.3s ease;
}
.alice-carousel__prev-btn-item:before,
.alice-carousel__next-btn-item:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.alice-carousel__prev-btn-item:hover,
.alice-carousel__next-btn-item:hover {
  color: darkred;
  border: 1px solid darkred;
}
.alice-carousel__prev-btn-item.__inactive,
.alice-carousel__next-btn-item.__inactive {
  opacity: 0.4;
}

.alice-carousel__prev-btn-item {
  left: 0;
}
.alice-carousel__prev-btn-item:after {
  content: '\02039';
}

.alice-carousel__next-btn-item {
  right: 0;
}
.alice-carousel__next-btn-item:after {
  content: '\0203A';
}

.alice-carousel__play-btn {
  display: inline-block;
  position: absolute;
  bottom: 90px;
  left: 80px;
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}
.alice-carousel__play-btn:hover {
  cursor: pointer;
}

.alice-carousel__play-btn-item {
  cursor: pointer;
  position: absolute;
  top: 50%;
  background: transparent;
  border: 0;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 32px;
  height: 30px;
  outline: none;
}
.alice-carousel__play-btn-item::before,
.alice-carousel__play-btn-item::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 8px 0 8px 15px;
  border-left-color: #fff;
  width: 0;
  height: 0;
  transition: all 0.3s linear;
}
.alice-carousel__play-btn-item::before {
  height: 16px;
}
.alice-carousel__play-btn-item::after {
  left: 15px;
  top: 8px;
}
.alice-carousel__play-btn-item.__pause::before,
.alice-carousel__play-btn-item.__pause::after {
  border-width: 0 0 0 10px;
  height: 30px;
}
.alice-carousel__play-btn-item.__pause::after {
  left: 18px;
  top: 0;
}

.alice-carousel__dots {
  position: absolute;
  display: inline-block;
  margin: auto;
  padding: 0;
  bottom: 20px;
  left: 50%;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.alice-carousel__dots-item {
  display: inline-block;
  width: 8px;
  height: 8px;
  cursor: pointer;
  border-radius: 50%;
  background-color: #e0e4fb;
}
.alice-carousel__dots-item:not(:last-child) {
  margin-right: 15px;
}
.alice-carousel__dots-item:hover,
.alice-carousel__dots-item.__active {
  background-color: #6e7ebc;
}

}
}
Node(3): style {
Node(4): Text {
Text: .alice-carousel {
  padding: 0;
  height: 100%;
}

.alice-carousel > div {
  height: 100%;
  display: flex;
}

.alice-carousel__wrapper {
  border: none;
}

.alice-carousel__stage-item > div > div {
  width: 100% !important;
}

}
}
Node(3): style {
@data-styled = htXNHG iWzmGk euRyVK kRlJxr rdKsO gDTBjH liBCIH iHZvIS gQPweM eVjpRB dXeItm chOKFa kKpnGY eETOGe qVWeg ewpPjU gJSRsQ jkbOON kehqLl kWMsch cQFjYN hSrXCb diSNyZ iZiUsS gdomTm hXYpnq krUWsi dgRcAo jlGcWn kduHWJ kDyowv dDQSwU RrPmk yfIEc hswzFx gYWdPx gmKtiL ejweiH bXNkCx dsJzKI hTbjbR gZCvEB erCrZX jrKzYk eRnCKi gOmppy grFHop gRTVgP kUiCmg jmTbXb jYDRDn aSuBf hkjLTn
@data-styled-version = 4.2.0
Node(4): Text {
Text: /* sc-component-id: sc-bdVaJa */
.iHZvIS{box-sizing:border-box;}.gQPweM{box-sizing:border-box;width:100%;} @media screen and (min-width:40em){.gQPweM{width:100%;}}
/* sc-component-id: sc-bwzfXH */
.liBCIH{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;}
/* sc-component-id: DefaultLoading__Wrapper-hsd7gk-0 */
.rdKsO{position:relative;height:100vh;width:100vw;}
/* sc-component-id: DefaultLoading__Loader-hsd7gk-1 */
.gDTBjH{position:absolute;top:50%;left:50%;margin-left:-16px;margin-top:-16px;} .gDTBjH img{width:32px;}
/* sc-component-id: Layout__Logo-ijd58f-0 */
.htXNHG{position:absolute;z-index:100;width:160px;top:10px;left:20px;} @media (min-width:40em){.htXNHG{width:202px;}}
/* sc-component-id: Layout__PageWrapper-ijd58f-2 */
.iWzmGk{background:white;overflow:hidden;} @media (min-width:40em){.iWzmGk{width:93.75%;}}
/* sc-component-id: OverflowSlideIn__Overflow-t0o2hv-0 */
.gdomTm{overflow:hidden;}
/* sc-component-id: Buttons__SquareButtonOuter-sc-1jsl4jv-1 */
.jYDRDn{overflow:hidden;position:relative;} .jYDRDn:hover .square-inner{color:#ffffff;} .jYDRDn:hover .square-inner:before{-webkit-transition:-webkit-transform 0.7s cubic-bezier(0.165,0.84,0.44,1);-webkit-transition:transform 0.7s cubic-bezier(0.165,0.84,0.44,1);transition:transform 0.7s cubic-bezier(0.165,0.84,0.44,1);-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);opacity:1;} .jYDRDn:hover .square-inner:after{-webkit-transition:none;transition:none;-webkit-transform:translateZ(0);-ms-transform:translateZ(0);transform:translateZ(0);opacity:0;}
/* sc-component-id: Buttons__SquareButtonInner-sc-1jsl4jv-2 */
.aSuBf{background:none;font-family:'Montserrat',sans-serif;color:#ffffff;border:3px solid #ffffff;padding:0.9375rem;text-transform:uppercase;-webkit-letter-spacing:1px;-moz-letter-spacing:1px;-ms-letter-spacing:1px;letter-spacing:1px;font-size:1rem;font-weight:500;line-height:1.875;display:inline-block;text-align:center;cursor:pointer;display:block;} .aSuBf:disabled{pointer-events:none;opacity:0.4;} .aSuBf:before,.aSuBf:after{content:'';top:3px;left:0;right:0;bottom:-3px;position:absolute;pointer-events:none;z-index:-1;} .aSuBf:before{content:'';background:#ffffff;height:3.75rem;width:100%;-webkit-transform:translate3d(0,100%,0);-ms-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);opacity:0;} .aSuBf:after{content:'';background:#ffffff;height:3.75rem;width:100%;-webkit-transition:-webkit-transform 0.8s cubic-bezier(0.165,0.84,0.44,1);-webkit-transition:transform 0.8s cubic-bezier(0.165,0.84,0.44,1);transition:transform 0.8s cubic-bezier(0.165,0.84,0.44,1);-webkit-transform:translate3d(0,-100%,0);-ms-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);opacity:1;}
/* sc-component-id: CustomCarousel__CustomCarouselWrapper-j259si-0 */
.kduHWJ{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;} @media (min-width:40em){.kduHWJ{-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;}}
/* sc-component-id: CustomCarousel__ImageBox-j259si-1 */
.kDyowv{width:100vw;background:#efefef;} @media (min-width:40em){.kDyowv{width:43.75vw;}} @media (min-width:40em){.kDyowv{-webkit-order:3;-ms-flex-order:3;order:3;}}.dDQSwU{width:100vw;background:#efefef;} @media (min-width:40em){.dDQSwU{width:43.75vw;}} @media (min-width:40em){.dDQSwU{-webkit-order:0;-ms-flex-order:0;order:0;}}
/* sc-component-id: CustomCarousel__TextBox-j259si-2 */
.ejweiH{width:100vw;padding-left:10vw;padding-right:10vw;} @media (min-width:40em){.ejweiH{width:50vw;}} @media (min-width:40em){.ejweiH{padding-left:3.125vw;}} @media (min-width:40em){.ejweiH{padding-right:3.125vw;}}
/* sc-component-id: CustomCarousel__CarouselControlsWrapper-j259si-3 */
.RrPmk{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;left:0;width:100vw;padding-left:0vw;} @media (min-width:40em){.RrPmk{position:absolute;}} @media (min-width:40em){.RrPmk{z-index:100;}} @media (min-width:40em){.RrPmk{width:93.75vw;}} @media (min-width:40em){.RrPmk{padding-left:40.625vw;}}.yfIEc{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;left:0;width:100vw;padding-left:0vw;} @media (min-width:40em){.yfIEc{position:absolute;}} @media (min-width:40em){.yfIEc{z-index:100;}} @media (min-width:40em){.yfIEc{width:93.75vw;}} @media (min-width:40em){.yfIEc{padding-left:28.125vw;}}
/* sc-component-id: CustomCarousel__CarouselCounter-j259si-4 */
.hswzFx{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#efefef;width:50vw;} @media (min-width:40em){.hswzFx{width:9.375vw;}} @media (min-width:40em){.hswzFx{-webkit-order:0;-ms-flex-order:0;order:0;}}.gYWdPx{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#efefef;width:50vw;} @media (min-width:40em){.gYWdPx{width:9.375vw;}} @media (min-width:40em){.gYWdPx{-webkit-order:3;-ms-flex-order:3;order:3;}}
/* sc-component-id: CustomCarousel__CarouselButton-j259si-5 */
.gmKtiL{background-color:#ffffff;outline:none;border:none;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:25vw;height:3.75rem;cursor:pointer;} @media (min-width:40em){.gmKtiL{width:7.8125vw;}} @media(min-width:40em){.gmKtiL{height:3.75rem;}}
/* sc-component-id: Video__VideoEl-sc-10jpcip-0 */
.hSrXCb{background:#000;position:relative;height:100%;width:auto;overflow:hidden;}
/* sc-component-id: Quote__TextBox-sc-1ubt7du-1 */
.iZiUsS{padding-left:10vw;padding-right:10vw;display:inline-block;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:left;-webkit-justify-content:left;-ms-flex-pack:left;justify-content:left;} @media (min-width:40em){.iZiUsS{padding-left:6.25vw;}} @media (min-width:40em){.iZiUsS{padding-right:6.25vw;}}
/* sc-component-id: Quote__AuthorRole-sc-1ubt7du-2 */
.dgRcAo{font-size:0.75rem;font-family:'Roboto',sans-serif;font-weight:400;margin:0;line-height:1rem;margin-bottom:20px;}
/* sc-component-id: Quote__Author-sc-1ubt7du-3 */
.krUWsi{font-style:normal;font-weight:500;line-height:2.125;font-family:'Montserrat',sans-serif;color:#f78484;}
/* sc-component-id: Quote__QuoteText-sc-1ubt7du-4 */
.hXYpnq{position:relative;font-weight:500;font-size:1rem;font-family:'Montserrat',sans-serif;color:#272a2b;line-height:1.41;margin-bottom:1rem;} @media (min-width:65em){.hXYpnq{font-size:2rem;}} .hXYpnq:before{content:'_';display:block;color:#f78484;}
/* sc-component-id: VideoQuote__VideoQuoteEl-sc-1k1ajpm-0 */
.kWMsch{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;} @media (min-width:40em){.kWMsch{-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;}}
/* sc-component-id: VideoQuote__ImageBox-sc-1k1ajpm-1 */
.cQFjYN{padding-left:0;padding-right:0;margin-right:0;width:100vw;height:56.25vw;display:inline-block;} @media (min-width:40em){.cQFjYN{width:50vw;}} @media (min-width:40em){.cQFjYN{height:26.3671875vw;}}
/* sc-component-id: VideoQuote__Center-sc-1k1ajpm-2 */
.diSNyZ{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;width:100vw;} @media (min-width:40em){.diSNyZ{width:43.75vw;}}
/* sc-component-id: BigText__BigTextContainer-e80o4v-0 */
.jkbOON{background-color:#efefef;color:#272a2b;padding-top:1.875rem;padding-bottom:1.875rem;padding-left:10vw;padding-right:10vw;} @media(min-width:40em){.jkbOON{padding-top:3.75rem;}} @media(min-width:40em){.jkbOON{padding-bottom:3.75rem;}} @media (min-width:40em){.jkbOON{padding-left:6.25vw;}} @media (min-width:40em){.jkbOON{padding-right:6.25vw;}}
/* sc-component-id: BigText__Message-e80o4v-1 */
.kehqLl{font-weight:300;font-family:'Montserrat',sans-serif;} @media (min-width:40em){.kehqLl{font-size:2rem;}} @media (min-width:40em){.kehqLl{line-height:1.41;}} .kehqLl:before{content:'_';display:block;color:#f78484;}
/* sc-component-id: elements__Label-sc-1nn2de2-1 */
.gOmppy{position:relative;} .gOmppy div{font-size:1rem;line-height:1.56;min-height:2.25rem;}
/* sc-component-id: elements__Input-sc-1nn2de2-2 */
.grFHop{height:3.75rem;line-height:1;width:100%;color:#272a2b;box-sizing:border-box;padding:0;padding-left:10vw;padding-right:10vw;text-align:left;font-family:'Roboto',sans-serif;} @media(min-width:40em){.grFHop{height:3.75rem;}} @media (min-width:40em){.grFHop{padding-left:3.125vw;}} @media (min-width:40em){.grFHop{padding-right:3.125vw;}}
/* sc-component-id: elements__Select-sc-1nn2de2-3 */
.gRTVgP{background-color:#ffffff;height:3.75rem;line-height:1;width:100%;color:#272a2b;box-sizing:border-box;padding:0;padding-left:0vw;padding-right:0vw;text-align:left;border-radius:0;font-family:'Roboto',sans-serif;} @media(min-width:40em){.gRTVgP{height:3.75rem;}} @media (min-width:40em){.gRTVgP{padding-left:3.125vw;}} @media (min-width:40em){.gRTVgP{padding-right:3.125vw;}}
/* sc-component-id: SalesforceForm__PrivacyLink-n4o3c4-0 */
.hkjLTn{margin-top:2rem;} .hkjLTn a{-webkit-text-decoration:underline;text-decoration:underline;}
/* sc-component-id: SalesforceForm__FormContainer-n4o3c4-4 */
.bXNkCx{padding-top:0;background-color:#272a2b;color:#ffffff;padding-bottom:1.875rem;padding-left:10vw;padding-right:10vw;} @media(min-width:40em){.bXNkCx{padding-bottom:1.875rem;}} @media (min-width:40em){.bXNkCx{padding-left:6.25vw;}} @media (min-width:40em){.bXNkCx{padding-right:6.25vw;}}
/* sc-component-id: SalesforceForm__Heading-n4o3c4-6 */
.hTbjbR{-webkit-flex:1 1 auto;-ms-flex:1 1 auto;flex:1 1 auto;padding-right:0vw;} @media (min-width:40em){.hTbjbR{padding-right:3.125vw;}}
/* sc-component-id: SalesforceForm__ButtonContainer-n4o3c4-7 */
.kUiCmg{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;margin-bottom:1.875rem;margin-top:1.875rem;} @media(min-width:40em){.kUiCmg{margin-bottom:1.875rem;}} @media(min-width:40em){.kUiCmg{margin-top:1.875rem;}}
/* sc-component-id: SalesforceForm__Button-n4o3c4-8 */
.jmTbXb{background:none;} .jmTbXb:disabled div{pointer-events:none;opacity:0.4;}
/* sc-component-id: SalesforceForm__Title-n4o3c4-9 */
.gZCvEB{font-size:2rem;line-height:1.41;} .gZCvEB:before{content:'_';display:block;}
/* sc-component-id: SalesforceForm__Description-n4o3c4-10 */
.erCrZX{font-family:'Montserrat',sans-serif;}
/* sc-component-id: SalesforceForm__Fieldset-n4o3c4-11 */
.jrKzYk{border:0;padding:0;display:grid;grid-template-columns:1fr;} @media (min-width:40em){.jrKzYk{grid-template-columns:1fr 1fr;}} @media (min-width:52em){.jrKzYk{grid-template-columns:1fr 1fr 1fr;}}
/* sc-component-id: SalesforceForm__DCField-n4o3c4-12 */
.eRnCKi{margin-bottom:1rem;margin-right:0vw;} @media (min-width:40em){.eRnCKi{margin-right:3.125vw;}}
/* sc-component-id: HeroSlider__PaneImage-sc-1poa05v-0 */
.gJSRsQ{object-fit:cover;object-position:50% 50%;font-family:'object-fit: cover; object-position: 50% 50%;';height:100vh;width:100%;vertical-align:top;}
/* sc-component-id: HeroSlider__Container-sc-1poa05v-2 */
.dXeItm{height:100vh;-webkit-overflow-scrolling:touch;white-space:nowrap;bottom:0;font-family:'Montserrat',sans-serif;}
/* sc-component-id: HeroSlider__Wrapper-sc-1poa05v-3 */
.eVjpRB{height:0px;width:100vw;position:relative;min-height:100vh;}
/* sc-component-id: HeroSlider__ProjectPane-sc-1poa05v-5 */
.chOKFa{height:100vh;width:80vw;display:inline-block;vertical-align:top;white-space:normal;position:relative;cursor:pointer;} @media (min-width:40em){.chOKFa{width:550px;}} .chOKFa .projectSubtitle{max-height:0px;overflow:hidden;-webkit-transition:max-height 0.5s;-webkit-transition:max-height 0.5s;transition:max-height 0.5s;} .chOKFa:hover .projectSubtitle{max-height:100vh;-webkit-transition:max-height 2s;-webkit-transition:max-height 2s;transition:max-height 2s;bottom:32px;}
/* sc-component-id: HeroSlider__ProjectInfo-sc-1poa05v-6 */
.kKpnGY{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;padding:0px 32px;color:white;position:absolute;height:320px;bottom:32px;}
/* sc-component-id: HeroSlider__ProjectTitle-sc-1poa05v-7 */
.eETOGe{font-size:1.25em;font-weight:500;line-height:2.4rem;margin-bottom:24px;} @media (min-width:40em){.eETOGe{font-size:2em;}}
/* sc-component-id: HeroSlider__ProjectSubtitle-sc-1poa05v-8 */
.qVWeg{font-size:1.2rem;height:auto;-webkit-transition:max-height 0s;-webkit-transition:max-height 0s;transition:max-height 0s;}
/* sc-component-id: HeroSlider__ProjectName-sc-1poa05v-9 */
.ewpPjU{font-size:1rem;margin-top:24px;font-weight:500;}
/* sc-component-id: pages__Loader-sc-1d1etnk-0 */
.kRlJxr{position:absolute;top:50%;left:50%;margin-left:-16px;margin-top:-16px;z-index:1;} .kRlJxr img{width:32px;}
/* sc-component-id: pages__HomeLock-sc-1d1etnk-1 */
.euRyVK{background:white;position:absolute;top:0;left:0;right:0;bottom:0;z-index:10;}
}
}
Node(3): script {
@type = 0c62581de827c5336e74d77e-text/javascript
Node(4): Text {
Text: window.CONTEXT = "production";
window.COMMIT_REF = "3ee42203bc6da69cba3ae9bbae0b787be2b6a7cd";
window.CAREERS_ENDPOINT = "https://careers-api.digicatapult.org.uk";
window.CF_GRAPHQL_ENDPOINT = "https://graphql.digicatapult.org.uk/graphql";
window.FUNCTIONS_ENDPOINT = "/.netlify/functions";
window.SENTRY_DSN_PUBLIC = "https://93d192e63dac48c8bd62e490919e49b1@sentry.io/1246477";
window.SF_CAPTCHA_SITE_KEY = "";
window.GA_TAG_ID = "UA-40698553-3";
window.GA_TAG2_ID = undefined;
}
}
Node(3): script {
@async = (null)
@src = https://www.googletagmanager.com/gtag/js?id=UA-40698553-3
@type = 0c62581de827c5336e74d77e-text/javascript
}
Node(3): script {
@type = 0c62581de827c5336e74d77e-text/javascript
Node(4): Text {
Text:     window.dataLayer = window.dataLayer || [];
    function gtag(){dataLayer.push(arguments);}
    gtag('js', new Date());

    gtag('config', 'UA-40698553-3');
  
}
}
Node(3): link {
@rel = stylesheet
@type = text/css
@href = //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.css
}
Node(3): script {
@data-cfasync = false
@src = //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.js
}
Node(3): meta {
@name = viewport
@content = width=device-width,minimum-scale=1,initial-scale=1
@class = next-head
}
Node(3): title {
@class = next-head
Node(4): Text {
Text: Digital Catapult - Home
}
}
Node(3): meta {
@name = description
@content = Digital Catapult is the UK's leading agency for the early adoption of advanced digital technologies. Through innovation programmes and facilities, we drive productivity and growth for UK companies.
@class = next-head
}
Node(3): meta {
@property = twitter:card
@content = summary_large_image
@class = next-head
}
Node(3): meta {
@property = twitter:site
@content = @DigiCatapult
@class = next-head
}
Node(3): meta {
@property = og:description
@content = Digital Catapult is the UK's leading agency for the early adoption of advanced digital technologies. Through innovation programmes and facilities, we drive productivity and growth for UK companies.
@class = next-head
}
Node(3): meta {
@property = og:title
@content = Digital Catapult - Home
@class = next-head
}
Node(3): meta {
@property = og:type
@content = website
@class = next-head
}
Node(3): meta {
@property = og:url
@content = https://www.digicatapult.org.uk/
@class = next-head
}
Node(3): meta {
@property = og:site_name
@content = Digital Catapult
@class = next-head
}
Node(3): meta {
@property = og:image:width
@content = 400
@class = next-head
}
Node(3): meta {
@property = og:image:height
@content = 400
@class = next-head
}
Node(3): meta {
@property = og:image
@content = //images.ctfassets.net/nubxhjiwc091/1W7LYP0mGc0SES4IYcCAe/35c39f9b7750ad2e2b3e8c4b50a528aa/Cyber101_Secondaryimage2.jpg?fit=fill&w=400&h=400
@class = next-head
}
Node(3): meta {
@property = twitter:image
@content = //images.ctfassets.net/nubxhjiwc091/1W7LYP0mGc0SES4IYcCAe/35c39f9b7750ad2e2b3e8c4b50a528aa/Cyber101_Secondaryimage2.jpg?fit=fill&w=400&h=400
@class = next-head
}
Node(3): meta {
@name = thumbnail
@content = //images.ctfassets.net/nubxhjiwc091/1W7LYP0mGc0SES4IYcCAe/35c39f9b7750ad2e2b3e8c4b50a528aa/Cyber101_Secondaryimage2.jpg?fit=fill&w=400&h=400
@class = next-head
}
Node(3): meta {
@property = twitter:card
@content = summary
@class = next-head
}
Node(3): link {
@rel = canonical
@href = https://www.digicatapult.org.uk/
@class = next-head
}
Node(3): link {
@rel = preload
@href = /_next/static/cysEpD-NYBSOKxwiDygVm/pages/index.js
@as = script
}
Node(3): link {
@rel = preload
@href = /_next/static/cysEpD-NYBSOKxwiDygVm/pages/_app.js
@as = script
}
Node(3): link {
@rel = preload
@href = /_next/static/runtime/webpack-a79426b5e11f0ba5879d.js
@as = script
}
Node(3): link {
@rel = preload
@href = /_next/static/chunks/commons.be31d678bec17af41e66.js
@as = script
}
Node(3): link {
@rel = preload
@href = /_next/static/runtime/main-5da8112411d890a8cc6b.js
@as = script
}
Node(3): meta {
@name = google-site-verification
@content = GGTTvHgWcVKAQ3mrGg0jco9ExHFoWko6ZT3HAl_n5hs
}
Node(3): script {
@type = 0c62581de827c5336e74d77e-text/javascript
Node(4): Text {
Text:     (function(h,o,t,j,a,r){
        h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
        h._hjSettings={hjid:1132329,hjsv:6};
        a=o.getElementsByTagName('head')[0];
        r=o.createElement('script');r.async=1;
        r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
        a.appendChild(r);
    })(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');

}
}
}
Node(2): body {
Node(3): div {
@id = __next
Node(4): div {
@class = homeLock pages__HomeLock-sc-1d1etnk-1 euRyVK
Node(5): div {
@class = loader pages__Loader-sc-1d1etnk-0 kRlJxr
Node(6): img {
@alt = Loading...
@src = https://images.ctfassets.net/nubxhjiwc091/52ZwZT9NOEw244SIkq6ssQ/543d7de316cfad540668a30458f69b0f/loader.gif
}
}
Node(5): div {
Node(6): a {
@role = link
@tabindex = 0
@href = /
Node(7): img {
@alt = Digital Catapult
@src = /static/logo.svg
@class = Layout__Logo-ijd58f-0 htXNHG
}
}
Node(6): div {
@id = page-wrapper
@class = Layout__PageWrapper-ijd58f-2 iWzmGk
Node(7): div {
@class = DefaultLoading__Wrapper-hsd7gk-0 rdKsO
Node(8): div {
@class = DefaultLoading__Loader-hsd7gk-1 gDTBjH
Node(9): img {
@alt = Loading...
@src = https://images.ctfassets.net/nubxhjiwc091/52ZwZT9NOEw244SIkq6ssQ/543d7de316cfad540668a30458f69b0f/loader.gif
}
}
}
Node(7): div {
Node(8): div {
@class = sc-bwzfXH liBCIH sc-bdVaJa iHZvIS
Node(9): div {
@class = sc-bdVaJa gQPweM
Node(10): div {
@class = heroWrapper HeroSlider__Wrapper-sc-1poa05v-3 eVjpRB
@height = 0
Node(11): div {
@style = width:auto;position:absolute;top:auto;transform:translate(0px);overflow:hidden
@class = HeroSlider__Container-sc-1poa05v-2 dXeItm
Node(12): div {
@id = project_digital-catapults-platinum-awards-winners-announced
@class = HeroSlider__ProjectPane-sc-1poa05v-5 chOKFa
Node(13): div {
@class = projectInfo HeroSlider__ProjectInfo-sc-1poa05v-6 kKpnGY
Node(14): div {
@class = HeroSlider__ProjectTitle-sc-1poa05v-7 eETOGe
Node(15): Text {
Text: 90 Digital Catapult companies raise £130m in twelve months
}
}
Node(14): div {
@class = projectSubtitle HeroSlider__ProjectSubtitle-sc-1poa05v-8 qVWeg
Node(15): Text {
Text: Digital Catapult’s Platinum Awards winners announced
}
}
Node(14): div {
@class = HeroSlider__ProjectName-sc-1poa05v-9 ewpPjU
Node(15): Text {
Text: Press
}
}
}
Node(13): img {
@alt = Digital Catapult’s Platinum Awards winners announced
@src = //images.ctfassets.net/nubxhjiwc091/3HyLeWLWlOUOwjhMGC8GZl/bd6e195a4942a79e3c7b8e3d12ef8596/Platinum_2019_Winners_All_Web_1800x1200px.jpg?fm=jpg&fl=progressive&w=500
@srcset = //images.ctfassets.net/nubxhjiwc091/3HyLeWLWlOUOwjhMGC8GZl/bd6e195a4942a79e3c7b8e3d12ef8596/Platinum_2019_Winners_All_Web_1800x1200px.jpg?fm=jpg&fl=progressive&w=412 412w,//images.ctfassets.net/nubxhjiwc091/3HyLeWLWlOUOwjhMGC8GZl/bd6e195a4942a79e3c7b8e3d12ef8596/Platinum_2019_Winners_All_Web_1800x1200px.jpg?fm=jpg&fl=progressive&w=824 824w, //images.ctfassets.net/nubxhjiwc091/3HyLeWLWlOUOwjhMGC8GZl/bd6e195a4942a79e3c7b8e3d12ef8596/Platinum_2019_Winners_All_Web_1800x1200px.jpg?fm=jpg&fl=progressive&w=600 600w,//images.ctfassets.net/nubxhjiwc091/3HyLeWLWlOUOwjhMGC8GZl/bd6e195a4942a79e3c7b8e3d12ef8596/Platinum_2019_Winners_All_Web_1800x1200px.jpg?fm=jpg&fl=progressive&w=1200 1200w, //images.ctfassets.net/nubxhjiwc091/3HyLeWLWlOUOwjhMGC8GZl/bd6e195a4942a79e3c7b8e3d12ef8596/Platinum_2019_Winners_All_Web_1800x1200px.jpg?fm=jpg&fl=progressive&w=780 780w,//images.ctfassets.net/nubxhjiwc091/3HyLeWLWlOUOwjhMGC8GZl/bd6e195a4942a79e3c7b8e3d12ef8596/Platinum_2019_Winners_All_Web_1800x1200px.jpg?fm=jpg&fl=progressive&w=1560 1560w, //images.ctfassets.net/nubxhjiwc091/3HyLeWLWlOUOwjhMGC8GZl/bd6e195a4942a79e3c7b8e3d12ef8596/Platinum_2019_Winners_All_Web_1800x1200px.jpg?fm=jpg&fl=progressive&w=960 960w,//images.ctfassets.net/nubxhjiwc091/3HyLeWLWlOUOwjhMGC8GZl/bd6e195a4942a79e3c7b8e3d12ef8596/Platinum_2019_Winners_All_Web_1800x1200px.jpg?fm=jpg&fl=progressive&w=1920 1920w, //images.ctfassets.net/nubxhjiwc091/3HyLeWLWlOUOwjhMGC8GZl/bd6e195a4942a79e3c7b8e3d12ef8596/Platinum_2019_Winners_All_Web_1800x1200px.jpg?fm=jpg&fl=progressive&w=1140 1140w,//images.ctfassets.net/nubxhjiwc091/3HyLeWLWlOUOwjhMGC8GZl/bd6e195a4942a79e3c7b8e3d12ef8596/Platinum_2019_Winners_All_Web_1800x1200px.jpg?fm=jpg&fl=progressive&w=2280 2280w, //images.ctfassets.net/nubxhjiwc091/3HyLeWLWlOUOwjhMGC8GZl/bd6e195a4942a79e3c7b8e3d12ef8596/Platinum_2019_Winners_All_Web_1800x1200px.jpg?fm=jpg&fl=progressive&w=1320 1320w,//images.ctfassets.net/nubxhjiwc091/3HyLeWLWlOUOwjhMGC8GZl/bd6e195a4942a79e3c7b8e3d12ef8596/Platinum_2019_Winners_All_Web_1800x1200px.jpg?fm=jpg&fl=progressive&w=2640 2640w, //images.ctfassets.net/nubxhjiwc091/3HyLeWLWlOUOwjhMGC8GZl/bd6e195a4942a79e3c7b8e3d12ef8596/Platinum_2019_Winners_All_Web_1800x1200px.jpg?fm=jpg&fl=progressive&w=1440 1440w,//images.ctfassets.net/nubxhjiwc091/3HyLeWLWlOUOwjhMGC8GZl/bd6e195a4942a79e3c7b8e3d12ef8596/Platinum_2019_Winners_All_Web_1800x1200px.jpg?fm=jpg&fl=progressive&w=2880 2880w, //images.ctfassets.net/nubxhjiwc091/3HyLeWLWlOUOwjhMGC8GZl/bd6e195a4942a79e3c7b8e3d12ef8596/Platinum_2019_Winners_All_Web_1800x1200px.jpg?fm=jpg&fl=progressive&w=1800 1800w,//images.ctfassets.net/nubxhjiwc091/3HyLeWLWlOUOwjhMGC8GZl/bd6e195a4942a79e3c7b8e3d12ef8596/Platinum_2019_Winners_All_Web_1800x1200px.jpg?fm=jpg&fl=progressive&w=3600 3600w
@class = HeroSlider__PaneImage-sc-1poa05v-0 gJSRsQ
}
}
Node(12): div {
@id = project_digital-catapult-annual-engagement-and-impact-report
@class = HeroSlider__ProjectPane-sc-1poa05v-5 chOKFa
Node(13): div {
@class = projectInfo HeroSlider__ProjectInfo-sc-1poa05v-6 kKpnGY
Node(14): div {
@class = HeroSlider__ProjectTitle-sc-1poa05v-7 eETOGe
Node(15): Text {
Text: Digital Catapult Annual Engagement & Impact Report
}
}
Node(14): div {
@class = projectSubtitle HeroSlider__ProjectSubtitle-sc-1poa05v-8 qVWeg
Node(15): Text {
Text: Highlights and overview of Digital Catapult’s successes in 2018-2019
}
}
Node(14): div {
@class = HeroSlider__ProjectName-sc-1poa05v-9 ewpPjU
Node(15): Text {
Text: Press
}
}
}
Node(13): img {
@alt = Digital Catapult Annual Engagement & Impact Report
@src = //images.ctfassets.net/nubxhjiwc091/5S2chX7UWrQRqnWyKp5F0B/882ac58ad3a1a095eaeb590b96a6c40b/virtual-reality-headset.jpg?fm=jpg&fl=progressive&w=500
@srcset = //images.ctfassets.net/nubxhjiwc091/5S2chX7UWrQRqnWyKp5F0B/882ac58ad3a1a095eaeb590b96a6c40b/virtual-reality-headset.jpg?fm=jpg&fl=progressive&w=412 412w,//images.ctfassets.net/nubxhjiwc091/5S2chX7UWrQRqnWyKp5F0B/882ac58ad3a1a095eaeb590b96a6c40b/virtual-reality-headset.jpg?fm=jpg&fl=progressive&w=824 824w, //images.ctfassets.net/nubxhjiwc091/5S2chX7UWrQRqnWyKp5F0B/882ac58ad3a1a095eaeb590b96a6c40b/virtual-reality-headset.jpg?fm=jpg&fl=progressive&w=600 600w,//images.ctfassets.net/nubxhjiwc091/5S2chX7UWrQRqnWyKp5F0B/882ac58ad3a1a095eaeb590b96a6c40b/virtual-reality-headset.jpg?fm=jpg&fl=progressive&w=1200 1200w, //images.ctfassets.net/nubxhjiwc091/5S2chX7UWrQRqnWyKp5F0B/882ac58ad3a1a095eaeb590b96a6c40b/virtual-reality-headset.jpg?fm=jpg&fl=progressive&w=780 780w,//images.ctfassets.net/nubxhjiwc091/5S2chX7UWrQRqnWyKp5F0B/882ac58ad3a1a095eaeb590b96a6c40b/virtual-reality-headset.jpg?fm=jpg&fl=progressive&w=1560 1560w, //images.ctfassets.net/nubxhjiwc091/5S2chX7UWrQRqnWyKp5F0B/882ac58ad3a1a095eaeb590b96a6c40b/virtual-reality-headset.jpg?fm=jpg&fl=progressive&w=960 960w,//images.ctfassets.net/nubxhjiwc091/5S2chX7UWrQRqnWyKp5F0B/882ac58ad3a1a095eaeb590b96a6c40b/virtual-reality-headset.jpg?fm=jpg&fl=progressive&w=1920 1920w, //images.ctfassets.net/nubxhjiwc091/5S2chX7UWrQRqnWyKp5F0B/882ac58ad3a1a095eaeb590b96a6c40b/virtual-reality-headset.jpg?fm=jpg&fl=progressive&w=1140 1140w,//images.ctfassets.net/nubxhjiwc091/5S2chX7UWrQRqnWyKp5F0B/882ac58ad3a1a095eaeb590b96a6c40b/virtual-reality-headset.jpg?fm=jpg&fl=progressive&w=2280 2280w, //images.ctfassets.net/nubxhjiwc091/5S2chX7UWrQRqnWyKp5F0B/882ac58ad3a1a095eaeb590b96a6c40b/virtual-reality-headset.jpg?fm=jpg&fl=progressive&w=1320 1320w,//images.ctfassets.net/nubxhjiwc091/5S2chX7UWrQRqnWyKp5F0B/882ac58ad3a1a095eaeb590b96a6c40b/virtual-reality-headset.jpg?fm=jpg&fl=progressive&w=2640 2640w, //images.ctfassets.net/nubxhjiwc091/5S2chX7UWrQRqnWyKp5F0B/882ac58ad3a1a095eaeb590b96a6c40b/virtual-reality-headset.jpg?fm=jpg&fl=progressive&w=1440 1440w,//images.ctfassets.net/nubxhjiwc091/5S2chX7UWrQRqnWyKp5F0B/882ac58ad3a1a095eaeb590b96a6c40b/virtual-reality-headset.jpg?fm=jpg&fl=progressive&w=2880 2880w, //images.ctfassets.net/nubxhjiwc091/5S2chX7UWrQRqnWyKp5F0B/882ac58ad3a1a095eaeb590b96a6c40b/virtual-reality-headset.jpg?fm=jpg&fl=progressive&w=1800 1800w,//images.ctfassets.net/nubxhjiwc091/5S2chX7UWrQRqnWyKp5F0B/882ac58ad3a1a095eaeb590b96a6c40b/virtual-reality-headset.jpg?fm=jpg&fl=progressive&w=3600 3600w
@class = HeroSlider__PaneImage-sc-1poa05v-0 gJSRsQ
}
}
Node(12): div {
@id = project_machine-intelligence-garage
@class = HeroSlider__ProjectPane-sc-1poa05v-5 chOKFa
Node(13): div {
@class = projectInfo HeroSlider__ProjectInfo-sc-1poa05v-6 kKpnGY
Node(14): div {
@class = HeroSlider__ProjectTitle-sc-1poa05v-7 eETOGe
Node(15): Text {
Text: Machines for Machine Intelligence
}
}
Node(14): div {
@class = projectSubtitle HeroSlider__ProjectSubtitle-sc-1poa05v-8 qVWeg
Node(15): Text {
Text: Providing the tools and expertise to turn potential into reality
}
}
Node(14): div {
@class = HeroSlider__ProjectName-sc-1poa05v-9 ewpPjU
Node(15): Text {
Text: Machine Intelligence Garage
}
}
}
Node(13): img {
@alt = Machine Intelligence Garage
@src = //images.ctfassets.net/nubxhjiwc091/4YTNe7BtDi4U2k2yuK6eoG/b6903bba6b9a0585ffe783d5b6a02fe6/DC_Hero-images_MIGarage.jpg?fm=jpg&fl=progressive&w=500
@srcset = //images.ctfassets.net/nubxhjiwc091/4YTNe7BtDi4U2k2yuK6eoG/b6903bba6b9a0585ffe783d5b6a02fe6/DC_Hero-images_MIGarage.jpg?fm=jpg&fl=progressive&w=412 412w,//images.ctfassets.net/nubxhjiwc091/4YTNe7BtDi4U2k2yuK6eoG/b6903bba6b9a0585ffe783d5b6a02fe6/DC_Hero-images_MIGarage.jpg?fm=jpg&fl=progressive&w=824 824w, //images.ctfassets.net/nubxhjiwc091/4YTNe7BtDi4U2k2yuK6eoG/b6903bba6b9a0585ffe783d5b6a02fe6/DC_Hero-images_MIGarage.jpg?fm=jpg&fl=progressive&w=600 600w,//images.ctfassets.net/nubxhjiwc091/4YTNe7BtDi4U2k2yuK6eoG/b6903bba6b9a0585ffe783d5b6a02fe6/DC_Hero-images_MIGarage.jpg?fm=jpg&fl=progressive&w=1200 1200w, //images.ctfassets.net/nubxhjiwc091/4YTNe7BtDi4U2k2yuK6eoG/b6903bba6b9a0585ffe783d5b6a02fe6/DC_Hero-images_MIGarage.jpg?fm=jpg&fl=progressive&w=780 780w,//images.ctfassets.net/nubxhjiwc091/4YTNe7BtDi4U2k2yuK6eoG/b6903bba6b9a0585ffe783d5b6a02fe6/DC_Hero-images_MIGarage.jpg?fm=jpg&fl=progressive&w=1560 1560w, //images.ctfassets.net/nubxhjiwc091/4YTNe7BtDi4U2k2yuK6eoG/b6903bba6b9a0585ffe783d5b6a02fe6/DC_Hero-images_MIGarage.jpg?fm=jpg&fl=progressive&w=960 960w,//images.ctfassets.net/nubxhjiwc091/4YTNe7BtDi4U2k2yuK6eoG/b6903bba6b9a0585ffe783d5b6a02fe6/DC_Hero-images_MIGarage.jpg?fm=jpg&fl=progressive&w=1920 1920w, //images.ctfassets.net/nubxhjiwc091/4YTNe7BtDi4U2k2yuK6eoG/b6903bba6b9a0585ffe783d5b6a02fe6/DC_Hero-images_MIGarage.jpg?fm=jpg&fl=progressive&w=1140 1140w,//images.ctfassets.net/nubxhjiwc091/4YTNe7BtDi4U2k2yuK6eoG/b6903bba6b9a0585ffe783d5b6a02fe6/DC_Hero-images_MIGarage.jpg?fm=jpg&fl=progressive&w=2280 2280w, //images.ctfassets.net/nubxhjiwc091/4YTNe7BtDi4U2k2yuK6eoG/b6903bba6b9a0585ffe783d5b6a02fe6/DC_Hero-images_MIGarage.jpg?fm=jpg&fl=progressive&w=1320 1320w,//images.ctfassets.net/nubxhjiwc091/4YTNe7BtDi4U2k2yuK6eoG/b6903bba6b9a0585ffe783d5b6a02fe6/DC_Hero-images_MIGarage.jpg?fm=jpg&fl=progressive&w=2640 2640w, //images.ctfassets.net/nubxhjiwc091/4YTNe7BtDi4U2k2yuK6eoG/b6903bba6b9a0585ffe783d5b6a02fe6/DC_Hero-images_MIGarage.jpg?fm=jpg&fl=progressive&w=1440 1440w,//images.ctfassets.net/nubxhjiwc091/4YTNe7BtDi4U2k2yuK6eoG/b6903bba6b9a0585ffe783d5b6a02fe6/DC_Hero-images_MIGarage.jpg?fm=jpg&fl=progressive&w=2880 2880w, //images.ctfassets.net/nubxhjiwc091/4YTNe7BtDi4U2k2yuK6eoG/b6903bba6b9a0585ffe783d5b6a02fe6/DC_Hero-images_MIGarage.jpg?fm=jpg&fl=progressive&w=1800 1800w,//images.ctfassets.net/nubxhjiwc091/4YTNe7BtDi4U2k2yuK6eoG/b6903bba6b9a0585ffe783d5b6a02fe6/DC_Hero-images_MIGarage.jpg?fm=jpg&fl=progressive&w=3600 3600w
@class = HeroSlider__PaneImage-sc-1poa05v-0 gJSRsQ
}
}
Node(12): div {
@id = project_augmentor
@class = HeroSlider__ProjectPane-sc-1poa05v-5 chOKFa
Node(13): div {
@class = projectInfo HeroSlider__ProjectInfo-sc-1poa05v-6 kKpnGY
Node(14): div {
@class = HeroSlider__ProjectTitle-sc-1poa05v-7 eETOGe
Node(15): Text {
Text: Discovering next generation VR and AR companies
}
}
Node(14): div {
@class = projectSubtitle HeroSlider__ProjectSubtitle-sc-1poa05v-8 qVWeg
Node(15): Text {
Text: Supporting early stage businesses developing innovative and commercially-focused augmented reality and virtual reality products
}
}
Node(14): div {
@class = HeroSlider__ProjectName-sc-1poa05v-9 ewpPjU
Node(15): Text {
Text: Augmentor
}
}
}
Node(13): img {
@alt = Augmentor
@src = //images.ctfassets.net/nubxhjiwc091/587wZ5TGSAQssWWo6eiUKw/ad49d1b6af37d92c6b17778e31029458/augmentor.co.uk-4755930362875012.jpg?fm=jpg&fl=progressive&w=500
@srcset = //images.ctfassets.net/nubxhjiwc091/587wZ5TGSAQssWWo6eiUKw/ad49d1b6af37d92c6b17778e31029458/augmentor.co.uk-4755930362875012.jpg?fm=jpg&fl=progressive&w=412 412w,//images.ctfassets.net/nubxhjiwc091/587wZ5TGSAQssWWo6eiUKw/ad49d1b6af37d92c6b17778e31029458/augmentor.co.uk-4755930362875012.jpg?fm=jpg&fl=progressive&w=824 824w, //images.ctfassets.net/nubxhjiwc091/587wZ5TGSAQssWWo6eiUKw/ad49d1b6af37d92c6b17778e31029458/augmentor.co.uk-4755930362875012.jpg?fm=jpg&fl=progressive&w=600 600w,//images.ctfassets.net/nubxhjiwc091/587wZ5TGSAQssWWo6eiUKw/ad49d1b6af37d92c6b17778e31029458/augmentor.co.uk-4755930362875012.jpg?fm=jpg&fl=progressive&w=1200 1200w, //images.ctfassets.net/nubxhjiwc091/587wZ5TGSAQssWWo6eiUKw/ad49d1b6af37d92c6b17778e31029458/augmentor.co.uk-4755930362875012.jpg?fm=jpg&fl=progressive&w=780 780w,//images.ctfassets.net/nubxhjiwc091/587wZ5TGSAQssWWo6eiUKw/ad49d1b6af37d92c6b17778e31029458/augmentor.co.uk-4755930362875012.jpg?fm=jpg&fl=progressive&w=1560 1560w, //images.ctfassets.net/nubxhjiwc091/587wZ5TGSAQssWWo6eiUKw/ad49d1b6af37d92c6b17778e31029458/augmentor.co.uk-4755930362875012.jpg?fm=jpg&fl=progressive&w=960 960w,//images.ctfassets.net/nubxhjiwc091/587wZ5TGSAQssWWo6eiUKw/ad49d1b6af37d92c6b17778e31029458/augmentor.co.uk-4755930362875012.jpg?fm=jpg&fl=progressive&w=1920 1920w, //images.ctfassets.net/nubxhjiwc091/587wZ5TGSAQssWWo6eiUKw/ad49d1b6af37d92c6b17778e31029458/augmentor.co.uk-4755930362875012.jpg?fm=jpg&fl=progressive&w=1140 1140w,//images.ctfassets.net/nubxhjiwc091/587wZ5TGSAQssWWo6eiUKw/ad49d1b6af37d92c6b17778e31029458/augmentor.co.uk-4755930362875012.jpg?fm=jpg&fl=progressive&w=2280 2280w, //images.ctfassets.net/nubxhjiwc091/587wZ5TGSAQssWWo6eiUKw/ad49d1b6af37d92c6b17778e31029458/augmentor.co.uk-4755930362875012.jpg?fm=jpg&fl=progressive&w=1320 1320w,//images.ctfassets.net/nubxhjiwc091/587wZ5TGSAQssWWo6eiUKw/ad49d1b6af37d92c6b17778e31029458/augmentor.co.uk-4755930362875012.jpg?fm=jpg&fl=progressive&w=2640 2640w, //images.ctfassets.net/nubxhjiwc091/587wZ5TGSAQssWWo6eiUKw/ad49d1b6af37d92c6b17778e31029458/augmentor.co.uk-4755930362875012.jpg?fm=jpg&fl=progressive&w=1440 1440w,//images.ctfassets.net/nubxhjiwc091/587wZ5TGSAQssWWo6eiUKw/ad49d1b6af37d92c6b17778e31029458/augmentor.co.uk-4755930362875012.jpg?fm=jpg&fl=progressive&w=2880 2880w, //images.ctfassets.net/nubxhjiwc091/587wZ5TGSAQssWWo6eiUKw/ad49d1b6af37d92c6b17778e31029458/augmentor.co.uk-4755930362875012.jpg?fm=jpg&fl=progressive&w=1800 1800w,//images.ctfassets.net/nubxhjiwc091/587wZ5TGSAQssWWo6eiUKw/ad49d1b6af37d92c6b17778e31029458/augmentor.co.uk-4755930362875012.jpg?fm=jpg&fl=progressive&w=3600 3600w
@class = HeroSlider__PaneImage-sc-1poa05v-0 gJSRsQ
}
}
Node(12): div {
@id = project_immersive-labs
@class = HeroSlider__ProjectPane-sc-1poa05v-5 chOKFa
Node(13): div {
@class = projectInfo HeroSlider__ProjectInfo-sc-1poa05v-6 kKpnGY
Node(14): div {
@class = HeroSlider__ProjectTitle-sc-1poa05v-7 eETOGe
Node(15): Text {
Text: Discover the potential of immersive technologies
}
}
Node(14): div {
@class = projectSubtitle HeroSlider__ProjectSubtitle-sc-1poa05v-8 qVWeg
Node(15): Text {
Text: A network of cutting edge innovation facilities – the ideal spaces for learning, testing and showcasing VR and AR solutions
}
}
Node(14): div {
@class = HeroSlider__ProjectName-sc-1poa05v-9 ewpPjU
Node(15): Text {
Text: Immersive Labs
}
}
}
Node(13): img {
@alt = Immersive Labs
@src = //images.ctfassets.net/nubxhjiwc091/4UFMNhs4Njkx0VEw37svYQ/43c9c80baaf28d547ef4e8810a8b6d5c/IL2.png?fm=jpg&fl=progressive&w=500
@srcset = //images.ctfassets.net/nubxhjiwc091/4UFMNhs4Njkx0VEw37svYQ/43c9c80baaf28d547ef4e8810a8b6d5c/IL2.png?fm=jpg&fl=progressive&w=412 412w,//images.ctfassets.net/nubxhjiwc091/4UFMNhs4Njkx0VEw37svYQ/43c9c80baaf28d547ef4e8810a8b6d5c/IL2.png?fm=jpg&fl=progressive&w=824 824w, //images.ctfassets.net/nubxhjiwc091/4UFMNhs4Njkx0VEw37svYQ/43c9c80baaf28d547ef4e8810a8b6d5c/IL2.png?fm=jpg&fl=progressive&w=600 600w,//images.ctfassets.net/nubxhjiwc091/4UFMNhs4Njkx0VEw37svYQ/43c9c80baaf28d547ef4e8810a8b6d5c/IL2.png?fm=jpg&fl=progressive&w=1200 1200w, //images.ctfassets.net/nubxhjiwc091/4UFMNhs4Njkx0VEw37svYQ/43c9c80baaf28d547ef4e8810a8b6d5c/IL2.png?fm=jpg&fl=progressive&w=780 780w,//images.ctfassets.net/nubxhjiwc091/4UFMNhs4Njkx0VEw37svYQ/43c9c80baaf28d547ef4e8810a8b6d5c/IL2.png?fm=jpg&fl=progressive&w=1560 1560w, //images.ctfassets.net/nubxhjiwc091/4UFMNhs4Njkx0VEw37svYQ/43c9c80baaf28d547ef4e8810a8b6d5c/IL2.png?fm=jpg&fl=progressive&w=960 960w,//images.ctfassets.net/nubxhjiwc091/4UFMNhs4Njkx0VEw37svYQ/43c9c80baaf28d547ef4e8810a8b6d5c/IL2.png?fm=jpg&fl=progressive&w=1920 1920w, //images.ctfassets.net/nubxhjiwc091/4UFMNhs4Njkx0VEw37svYQ/43c9c80baaf28d547ef4e8810a8b6d5c/IL2.png?fm=jpg&fl=progressive&w=1140 1140w,//images.ctfassets.net/nubxhjiwc091/4UFMNhs4Njkx0VEw37svYQ/43c9c80baaf28d547ef4e8810a8b6d5c/IL2.png?fm=jpg&fl=progressive&w=2280 2280w, //images.ctfassets.net/nubxhjiwc091/4UFMNhs4Njkx0VEw37svYQ/43c9c80baaf28d547ef4e8810a8b6d5c/IL2.png?fm=jpg&fl=progressive&w=1320 1320w,//images.ctfassets.net/nubxhjiwc091/4UFMNhs4Njkx0VEw37svYQ/43c9c80baaf28d547ef4e8810a8b6d5c/IL2.png?fm=jpg&fl=progressive&w=2640 2640w, //images.ctfassets.net/nubxhjiwc091/4UFMNhs4Njkx0VEw37svYQ/43c9c80baaf28d547ef4e8810a8b6d5c/IL2.png?fm=jpg&fl=progressive&w=1440 1440w,//images.ctfassets.net/nubxhjiwc091/4UFMNhs4Njkx0VEw37svYQ/43c9c80baaf28d547ef4e8810a8b6d5c/IL2.png?fm=jpg&fl=progressive&w=2880 2880w, //images.ctfassets.net/nubxhjiwc091/4UFMNhs4Njkx0VEw37svYQ/43c9c80baaf28d547ef4e8810a8b6d5c/IL2.png?fm=jpg&fl=progressive&w=1800 1800w,//images.ctfassets.net/nubxhjiwc091/4UFMNhs4Njkx0VEw37svYQ/43c9c80baaf28d547ef4e8810a8b6d5c/IL2.png?fm=jpg&fl=progressive&w=3600 3600w
@class = HeroSlider__PaneImage-sc-1poa05v-0 gJSRsQ
}
}
Node(12): div {
@id = project_future-networks-lab
@class = HeroSlider__ProjectPane-sc-1poa05v-5 chOKFa
Node(13): div {
@class = projectInfo HeroSlider__ProjectInfo-sc-1poa05v-6 kKpnGY
Node(14): div {
@class = HeroSlider__ProjectTitle-sc-1poa05v-7 eETOGe
Node(15): Text {
Text: Discover the potential of future networks technologies
}
}
Node(14): div {
@class = projectSubtitle HeroSlider__ProjectSubtitle-sc-1poa05v-8 qVWeg
Node(15): Text {
Text: A unique facility that is fast forwarding adoption of future networks technologies to deliver value to industry
}
}
Node(14): div {
@class = HeroSlider__ProjectName-sc-1poa05v-9 ewpPjU
Node(15): Text {
Text: Future Networks Lab
}
}
}
Node(13): img {
@alt = Future Networks Lab
@src = //images.ctfassets.net/nubxhjiwc091/4RPkEiryh2CCAEKSCkEW6G/5e290977b5a0346f4338c1ac211e2929/Future_Networks_Lab_HERO1.png?fm=jpg&fl=progressive&w=500
@srcset = //images.ctfassets.net/nubxhjiwc091/4RPkEiryh2CCAEKSCkEW6G/5e290977b5a0346f4338c1ac211e2929/Future_Networks_Lab_HERO1.png?fm=jpg&fl=progressive&w=412 412w,//images.ctfassets.net/nubxhjiwc091/4RPkEiryh2CCAEKSCkEW6G/5e290977b5a0346f4338c1ac211e2929/Future_Networks_Lab_HERO1.png?fm=jpg&fl=progressive&w=824 824w, //images.ctfassets.net/nubxhjiwc091/4RPkEiryh2CCAEKSCkEW6G/5e290977b5a0346f4338c1ac211e2929/Future_Networks_Lab_HERO1.png?fm=jpg&fl=progressive&w=600 600w,//images.ctfassets.net/nubxhjiwc091/4RPkEiryh2CCAEKSCkEW6G/5e290977b5a0346f4338c1ac211e2929/Future_Networks_Lab_HERO1.png?fm=jpg&fl=progressive&w=1200 1200w, //images.ctfassets.net/nubxhjiwc091/4RPkEiryh2CCAEKSCkEW6G/5e290977b5a0346f4338c1ac211e2929/Future_Networks_Lab_HERO1.png?fm=jpg&fl=progressive&w=780 780w,//images.ctfassets.net/nubxhjiwc091/4RPkEiryh2CCAEKSCkEW6G/5e290977b5a0346f4338c1ac211e2929/Future_Networks_Lab_HERO1.png?fm=jpg&fl=progressive&w=1560 1560w, //images.ctfassets.net/nubxhjiwc091/4RPkEiryh2CCAEKSCkEW6G/5e290977b5a0346f4338c1ac211e2929/Future_Networks_Lab_HERO1.png?fm=jpg&fl=progressive&w=960 960w,//images.ctfassets.net/nubxhjiwc091/4RPkEiryh2CCAEKSCkEW6G/5e290977b5a0346f4338c1ac211e2929/Future_Networks_Lab_HERO1.png?fm=jpg&fl=progressive&w=1920 1920w, //images.ctfassets.net/nubxhjiwc091/4RPkEiryh2CCAEKSCkEW6G/5e290977b5a0346f4338c1ac211e2929/Future_Networks_Lab_HERO1.png?fm=jpg&fl=progressive&w=1140 1140w,//images.ctfassets.net/nubxhjiwc091/4RPkEiryh2CCAEKSCkEW6G/5e290977b5a0346f4338c1ac211e2929/Future_Networks_Lab_HERO1.png?fm=jpg&fl=progressive&w=2280 2280w, //images.ctfassets.net/nubxhjiwc091/4RPkEiryh2CCAEKSCkEW6G/5e290977b5a0346f4338c1ac211e2929/Future_Networks_Lab_HERO1.png?fm=jpg&fl=progressive&w=1320 1320w,//images.ctfassets.net/nubxhjiwc091/4RPkEiryh2CCAEKSCkEW6G/5e290977b5a0346f4338c1ac211e2929/Future_Networks_Lab_HERO1.png?fm=jpg&fl=progressive&w=2640 2640w, //images.ctfassets.net/nubxhjiwc091/4RPkEiryh2CCAEKSCkEW6G/5e290977b5a0346f4338c1ac211e2929/Future_Networks_Lab_HERO1.png?fm=jpg&fl=progressive&w=1440 1440w,//images.ctfassets.net/nubxhjiwc091/4RPkEiryh2CCAEKSCkEW6G/5e290977b5a0346f4338c1ac211e2929/Future_Networks_Lab_HERO1.png?fm=jpg&fl=progressive&w=2880 2880w, //images.ctfassets.net/nubxhjiwc091/4RPkEiryh2CCAEKSCkEW6G/5e290977b5a0346f4338c1ac211e2929/Future_Networks_Lab_HERO1.png?fm=jpg&fl=progressive&w=1800 1800w,//images.ctfassets.net/nubxhjiwc091/4RPkEiryh2CCAEKSCkEW6G/5e290977b5a0346f4338c1ac211e2929/Future_Networks_Lab_HERO1.png?fm=jpg&fl=progressive&w=3600 3600w
@class = HeroSlider__PaneImage-sc-1poa05v-0 gJSRsQ
}
}
}
}
}
}
Node(8): div {
@class = sc-bwzfXH liBCIH sc-bdVaJa iHZvIS
Node(9): div {
@class = sc-bdVaJa gQPweM
Node(10): section {
@class = BigText__BigTextContainer-e80o4v-0 jkbOON
Node(11): p {
@class = BigText__Message-e80o4v-1 kehqLl
Node(12): Text {
Text: Digital Catapult is the UK's leading advanced digital technology innovation centre. We drive early adoption, making UK businesses more competitive and productive, to help grow the UK economy.
}
}
}
}
}
Node(8): div {
@class = sc-bwzfXH liBCIH sc-bdVaJa iHZvIS
Node(9): div {
@class = sc-bdVaJa gQPweM
Node(10): div {
@class = VideoQuote__VideoQuoteEl-sc-1k1ajpm-0 kWMsch
Node(11): div {
@class = VideoQuote__ImageBox-sc-1k1ajpm-1 cQFjYN
Node(12): div {
@class = Video__VideoEl-sc-10jpcip-0 hSrXCb
Node(13): div {
@style = width:auto;height:100%
Node(14): div {
@style = width:100%;height:100%
Node(15): div {
}
}
}
}
}
Node(11): div {
@class = VideoQuote__Center-sc-1k1ajpm-2 diSNyZ
Node(12): div {
Node(13): div {
@class = Quote__TextBox-sc-1ubt7du-1 iZiUsS
Node(14): div {
Node(15): div {
@class = OverflowSlideIn__Overflow-t0o2hv-0 gdomTm
Node(16): div {
@style = transform:translateX(-100%);transition-property:transform;transition-duration:500ms;transition-delay:0ms;transition-timing-function:ease-in-out
Node(17): blockquote {
@class = Quote__QuoteText-sc-1ubt7du-4 hXYpnq
Node(18): Text {
Text: Digital Catapult’s mission is to accelerate early adoption of advanced digital technologies.
}
}
Node(17): a {
@role = link
@tabindex = 0
@href = /team/jeremy-silver/
Node(18): cite {
@class = Quote__Author-sc-1ubt7du-3 krUWsi
Node(19): Text {
Text: Dr Jeremy Silver
}
}
}
Node(17): p {
@class = Quote__AuthorRole-sc-1ubt7du-2 dgRcAo
Node(18): Text {
Text: CEO, Digital Catapult
}
}
}
}
}
}
}
}
}
}
}
Node(8): div {
Node(9): div {
@class = sc-bwzfXH liBCIH sc-bdVaJa iHZvIS
Node(10): div {
@class = sc-bdVaJa gQPweM
Node(11): section {
@class = ContentCarousel__ContentCarouselEl-sc-1a3ddk1-0 jlGcWn
Node(12): div {
@class = CustomCarousel__CustomCarouselWrapper-j259si-0 kduHWJ
Node(13): div {
@class = CustomCarousel__ImageBox-j259si-1 kDyowv
Node(14): div {
@class = alice-carousel
Node(15): div {
Node(16): div {
@class = alice-carousel__wrapper
Node(17): ul {
@style = transition:transform 0ms ease-out;transform:translate3d(undefinedpx, 0, 0)
@class = alice-carousel__stage
}
}
}
}
}
Node(13): div {
@class = CustomCarousel__CarouselControlsWrapper-j259si-3 RrPmk
Node(14): div {
@class = CustomCarousel__CarouselCounter-j259si-4 hswzFx
Node(15): Text {
Text: 1/5
}
}
Node(14): button {
@aria-label = go left
@class = CustomCarousel__CarouselButton-j259si-5 gmKtiL
Node(15): svg {
@kind = LeftChevron
@height = 32
@width = 32
@fill = #000
@viewbox = 0 0 100 100
Node(16): path {
@d = M65.2 15.5l6.4 6.4-28.8 28.8 28.8 28.8-6.4 6.4L30 50.7z
}
}
}
Node(14): button {
@aria-label = go right
@class = CustomCarousel__CarouselButton-j259si-5 gmKtiL
Node(15): svg {
@kind = RightChevron
@height = 32
@width = 32
@fill = #000
@viewbox = 0 0 100 100
Node(16): path {
@d = M40.2 85.9l-6.3-6.4 28.8-28.8-28.8-28.8 6.3-6.4 35.2 35.2z
}
}
}
}
Node(13): div {
@class = CustomCarousel__TextBox-j259si-2 ejweiH
Node(14): div {
@class = alice-carousel
Node(15): div {
Node(16): div {
@class = alice-carousel__wrapper
Node(17): ul {
@style = transition:transform 0ms ease-out;transform:translate3d(undefinedpx, 0, 0)
@class = alice-carousel__stage
}
}
}
}
}
}
}
}
}
}
Node(8): div {
Node(9): div {
@class = sc-bwzfXH liBCIH sc-bdVaJa iHZvIS
Node(10): div {
@class = sc-bdVaJa gQPweM
Node(11): section {
@class = ContentCarousel__ContentCarouselEl-sc-1a3ddk1-0 jlGcWn
Node(12): div {
@class = CustomCarousel__CustomCarouselWrapper-j259si-0 kduHWJ
Node(13): div {
@class = CustomCarousel__ImageBox-j259si-1 dDQSwU
Node(14): div {
@class = alice-carousel
Node(15): div {
Node(16): div {
@class = alice-carousel__wrapper
Node(17): ul {
@style = transition:transform 0ms ease-out;transform:translate3d(undefinedpx, 0, 0)
@class = alice-carousel__stage
}
}
}
}
}
Node(13): div {
@class = CustomCarousel__CarouselControlsWrapper-j259si-3 yfIEc
Node(14): div {
@class = CustomCarousel__CarouselCounter-j259si-4 gYWdPx
Node(15): Text {
Text: 1/3
}
}
Node(14): button {
@aria-label = go left
@class = CustomCarousel__CarouselButton-j259si-5 gmKtiL
Node(15): svg {
@kind = LeftChevron
@height = 32
@width = 32
@fill = #000
@viewbox = 0 0 100 100
Node(16): path {
@d = M65.2 15.5l6.4 6.4-28.8 28.8 28.8 28.8-6.4 6.4L30 50.7z
}
}
}
Node(14): button {
@aria-label = go right
@class = CustomCarousel__CarouselButton-j259si-5 gmKtiL
Node(15): svg {
@kind = RightChevron
@height = 32
@width = 32
@fill = #000
@viewbox = 0 0 100 100
Node(16): path {
@d = M40.2 85.9l-6.3-6.4 28.8-28.8-28.8-28.8 6.3-6.4 35.2 35.2z
}
}
}
}
Node(13): div {
@class = CustomCarousel__TextBox-j259si-2 ejweiH
Node(14): div {
@class = alice-carousel
Node(15): div {
Node(16): div {
@class = alice-carousel__wrapper
Node(17): ul {
@style = transition:transform 0ms ease-out;transform:translate3d(undefinedpx, 0, 0)
@class = alice-carousel__stage
}
}
}
}
}
}
}
}
}
}
Node(8): div {
Node(9): div {
@class = sc-bwzfXH liBCIH sc-bdVaJa iHZvIS
Node(10): div {
@class = sc-bdVaJa gQPweM
Node(11): section {
@class = ContentCarousel__ContentCarouselEl-sc-1a3ddk1-0 jlGcWn
Node(12): div {
@class = CustomCarousel__CustomCarouselWrapper-j259si-0 kduHWJ
Node(13): div {
@class = CustomCarousel__ImageBox-j259si-1 kDyowv
Node(14): div {
@class = alice-carousel
Node(15): div {
Node(16): div {
@class = alice-carousel__wrapper
Node(17): ul {
@style = transition:transform 0ms ease-out;transform:translate3d(undefinedpx, 0, 0)
@class = alice-carousel__stage
}
}
}
}
}
Node(13): div {
@class = CustomCarousel__CarouselControlsWrapper-j259si-3 RrPmk
Node(14): div {
@class = CustomCarousel__CarouselCounter-j259si-4 hswzFx
Node(15): Text {
Text: 1/4
}
}
Node(14): button {
@aria-label = go left
@class = CustomCarousel__CarouselButton-j259si-5 gmKtiL
Node(15): svg {
@kind = LeftChevron
@height = 32
@width = 32
@fill = #000
@viewbox = 0 0 100 100
Node(16): path {
@d = M65.2 15.5l6.4 6.4-28.8 28.8 28.8 28.8-6.4 6.4L30 50.7z
}
}
}
Node(14): button {
@aria-label = go right
@class = CustomCarousel__CarouselButton-j259si-5 gmKtiL
Node(15): svg {
@kind = RightChevron
@height = 32
@width = 32
@fill = #000
@viewbox = 0 0 100 100
Node(16): path {
@d = M40.2 85.9l-6.3-6.4 28.8-28.8-28.8-28.8 6.3-6.4 35.2 35.2z
}
}
}
}
Node(13): div {
@class = CustomCarousel__TextBox-j259si-2 ejweiH
Node(14): div {
@class = alice-carousel
Node(15): div {
Node(16): div {
@class = alice-carousel__wrapper
Node(17): ul {
@style = transition:transform 0ms ease-out;transform:translate3d(undefinedpx, 0, 0)
@class = alice-carousel__stage
}
}
}
}
}
}
}
}
}
}
Node(8): section {
@class = SalesforceForm__FormContainer-n4o3c4-4 bXNkCx
Node(9): form {
Node(10): div {
@class = SalesforceForm__Top-n4o3c4-5 dsJzKI
Node(11): div {
@class = SalesforceForm__Heading-n4o3c4-6 hTbjbR
Node(12): h2 {
@class = SalesforceForm__Title-n4o3c4-9 gZCvEB
Node(13): Text {
Text: Don’t miss out
}
}
Node(12): p {
@class = SalesforceForm__Description-n4o3c4-10 erCrZX
Node(13): Text {
Text: Sign up to our monthly newsletter for all the latest activities across Digital Catapult
}
}
}
}
Node(10): div {
@class = SalesforceForm__Fieldset-n4o3c4-11 jrKzYk
Node(11): div {
@class = SalesforceForm__DCField-n4o3c4-12 eRnCKi
Node(12): label {
@class = elements__Label-sc-1nn2de2-1 gOmppy
}
Node(12): div {
Node(13): label {
@class = elements__Label-sc-1nn2de2-1 gOmppy
Node(14): Text {
Text: First Name
}
}
}
Node(12): label {
@class = elements__Label-sc-1nn2de2-1 gOmppy
Node(13): input {
@type = text
@autocomplete = given-name
@maxlength = 80
@name = first_name
@value = (null)
@class = elements__Input-sc-1nn2de2-2 grFHop
}
}
}
Node(11): div {
@class = SalesforceForm__DCField-n4o3c4-12 eRnCKi
Node(12): label {
@class = elements__Label-sc-1nn2de2-1 gOmppy
}
Node(12): div {
Node(13): label {
@class = elements__Label-sc-1nn2de2-1 gOmppy
Node(14): Text {
Text: Last Name
}
}
}
Node(12): label {
@class = elements__Label-sc-1nn2de2-1 gOmppy
Node(13): input {
@type = text
@autocomplete = family-name
@maxlength = 80
@name = last_name
@value = (null)
@class = elements__Input-sc-1nn2de2-2 grFHop
}
}
}
Node(11): div {
@class = SalesforceForm__DCField-n4o3c4-12 eRnCKi
Node(12): label {
@class = elements__Label-sc-1nn2de2-1 gOmppy
}
Node(12): div {
Node(13): label {
@class = elements__Label-sc-1nn2de2-1 gOmppy
Node(14): Text {
Text: Email
}
}
}
Node(12): label {
@class = elements__Label-sc-1nn2de2-1 gOmppy
Node(13): input {
@type = text
@autocomplete = email
@maxlength = 80
@name = email
@value = (null)
@class = elements__Input-sc-1nn2de2-2 grFHop
}
}
}
Node(11): div {
@class = SalesforceForm__DCField-n4o3c4-12 eRnCKi
Node(12): label {
@class = elements__Label-sc-1nn2de2-1 gOmppy
}
Node(12): div {
Node(13): label {
@class = elements__Label-sc-1nn2de2-1 gOmppy
Node(14): Text {
Text: Role
}
}
}
Node(12): label {
@class = elements__Label-sc-1nn2de2-1 gOmppy
Node(13): input {
@type = text
@autocomplete = off
@maxlength = 80
@name = title
@value = (null)
@class = elements__Input-sc-1nn2de2-2 grFHop
}
}
}
Node(11): div {
@class = SalesforceForm__DCField-n4o3c4-12 eRnCKi
Node(12): label {
@class = elements__Label-sc-1nn2de2-1 gOmppy
}
Node(12): div {
Node(13): label {
@class = elements__Label-sc-1nn2de2-1 gOmppy
Node(14): Text {
Text: Company
}
}
}
Node(12): label {
@class = elements__Label-sc-1nn2de2-1 gOmppy
Node(13): input {
@type = text
@autocomplete = organization
@maxlength = 80
@name = company
@value = (null)
@class = elements__Input-sc-1nn2de2-2 grFHop
}
}
}
Node(11): div {
@class = SalesforceForm__DCField-n4o3c4-12 eRnCKi
Node(12): label {
@class = elements__Label-sc-1nn2de2-1 gOmppy
}
Node(12): div {
Node(13): label {
@class = elements__Label-sc-1nn2de2-1 gOmppy
Node(14): Text {
Text: Organisation Type
}
}
}
Node(12): label {
@class = elements__Label-sc-1nn2de2-1 gOmppy
Node(13): select {
@name = 00N0X00000DUulx
@class = elements__Select-sc-1nn2de2-3 gRTVgP
Node(14): option {
@selected = (null)
@value = (null)
Node(15): Text {
Text: Please select...
}
}
Node(14): option {
@value = Startup
Node(15): Text {
Text: Startup
}
}
Node(14): option {
@value = Scaleup
Node(15): Text {
Text: Scaleup
}
}
Node(14): option {
@value = Small or medium enterprise
Node(15): Text {
Text: Small or medium enterprise
}
}
Node(14): option {
@value = Large corporate
Node(15): Text {
Text: Large corporate
}
}
Node(14): option {
@value = Academic
Node(15): Text {
Text: Academic
}
}
Node(14): option {
@value = Research organisation
Node(15): Text {
Text: Research organisation
}
}
Node(14): option {
@value = Public sector
Node(15): Text {
Text: Public sector
}
}
Node(14): option {
@value = Not for profit
Node(15): Text {
Text: Not for profit
}
}
Node(14): option {
@value = Individual/entrepreneur
Node(15): Text {
Text: Individual/entrepreneur
}
}
Node(14): option {
@value = Press/media
Node(15): Text {
Text: Press/media
}
}
Node(14): option {
@value = Other
Node(15): Text {
Text: Other
}
}
}
}
}
Node(11): div {
@class = SalesforceForm__DCField-n4o3c4-12 eRnCKi
Node(12): label {
@class = elements__Label-sc-1nn2de2-1 gOmppy
}
Node(12): div {
Node(13): label {
@class = elements__Label-sc-1nn2de2-1 gOmppy
Node(14): Text {
Text: Which of the below areas interest you?
}
}
}
Node(12): label {
@class = elements__Label-sc-1nn2de2-1 gOmppy
Node(13): select {
@multiple = (null)
@name = 00N0X00000DUulw
@class = elements__Select-sc-1nn2de2-3 gRTVgP
Node(14): option {
@value = Future Networks (5G, LPWAN, IoT)
Node(15): Text {
Text: Future Networks (5G, LPWAN, IoT)
}
}
Node(14): option {
@value = Immersive (VR, AR and haptics)
Node(15): Text {
Text: Immersive (VR, AR and haptics)
}
}
Node(14): option {
@value = Artificial Intelligence (AI and machine learning)
Node(15): Text {
Text: Artificial Intelligence (AI and machine learning)
}
}
Node(14): option {
@value = Blockchain
Node(15): Text {
Text: Blockchain
}
}
Node(14): option {
@value = Cyber security
Node(15): Text {
Text: Cyber security
}
}
Node(14): option {
@value = Manufacturing
Node(15): Text {
Text: Manufacturing
}
}
Node(14): option {
@value = Creative industries
Node(15): Text {
Text: Creative industries
}
}
Node(14): option {
@value = None of the above
Node(15): Text {
Text: None of the above
}
}
}
}
}
}
Node(10): div {
@class = SalesforceForm__ButtonContainer-n4o3c4-7 kUiCmg
Node(11): button {
@type = submit
@class = SalesforceForm__Button-n4o3c4-8 jmTbXb
}
Node(11): div {
@class = Buttons__SquareButtonOuter-sc-1jsl4jv-1 jYDRDn
Node(12): button {
@type = submit
@class = SalesforceForm__Button-n4o3c4-8 jmTbXb
}
Node(12): div {
@class = square-inner Buttons__SquareButtonInner-sc-1jsl4jv-2 aSuBf
Node(13): button {
@type = submit
@class = SalesforceForm__Button-n4o3c4-8 jmTbXb
Node(14): Text {
Text: Subscribe
}
}
}
}
Node(11): div {
@class = SalesforceForm__PrivacyLink-n4o3c4-0 hkjLTn
Node(12): span {
Node(13): Text {
Text: Find out how we use your application and this data in our
}
}
Node(12): Text {
Text:  
}
Node(12): a {
@role = link
@tabindex = 0
@href = /privacy-policy/
Node(13): Text {
Text: privacy policy
}
}
Node(12): Text {
Text: .
}
}
}
}
}
}
Node(7): div {
@class = DefaultLoading__Wrapper-hsd7gk-0 rdKsO
Node(8): div {
@class = DefaultLoading__Loader-hsd7gk-1 gDTBjH
Node(9): img {
@alt = Loading...
@src = https://images.ctfassets.net/nubxhjiwc091/52ZwZT9NOEw244SIkq6ssQ/543d7de316cfad540668a30458f69b0f/loader.gif
}
}
}
}
}
}
}
Node(3): script {
@id = __NEXT_DATA__
@type = application/json
Node(4): Text {
Text: {"dataManager":"[]","props":{"pageProps":{"serverState":{"apollo":{"data":{"EntrySys:1n1E36udPai22YG8m08028":{"id":"1n1E36udPai22YG8m08028","__typename":"EntrySys"},"ROOT_QUERY.homePages.0":{"sys":{"type":"id","generated":false,"id":"EntrySys:1n1E36udPai22YG8m08028","typename":"EntrySys"},"pageName":"Home","featuredImage":{"type":"id","generated":true,"id":"$ROOT_QUERY.homePages.0.featuredImage","typename":"Asset"},"seoDescription":"Digital Catapult is the UK's leading agency for the early adoption of advanced digital technologies. Through innovation programmes and facilities, we drive productivity and growth for UK companies.","headerTitle":"Unlocking digital growth in the UK economy","headerText":"Digital Catapult is the UK's leading advanced digital technology innovation centre. We drive early adoption, making UK businesses more competitive and productive, to help grow the UK economy.","videoURL":"https://www.youtube.com/watch?v=leiykWCywM4","videoCaption":"Digital Catapult’s mission is to accelerate early adoption of advanced digital technologies.","videoQuoteAuthor":{"type":"id","generated":true,"id":"$ROOT_QUERY.homePages.0.videoQuoteAuthor","typename":"Person"},"newsletterForm":{"type":"id","generated":true,"id":"$ROOT_QUERY.homePages.0.newsletterForm","typename":"Form"},"technologiesIntro":"We specialise on the three technology programmes where we can make the most impact. These are: future networks, artificial intelligence and immersive. We also explore the areas that have the potential to be a future focus for UK industry as broad enabling technologies necessary for many of our projects. Learn more about these technologies \u003e","technologiesCoverImage":{"type":"id","generated":true,"id":"$ROOT_QUERY.homePages.0.technologiesCoverImage","typename":"Asset"},"technologies":[{"type":"id","generated":true,"id":"ROOT_QUERY.homePages.0.technologies.0","typename":"Technology"},{"type":"id","generated":true,"id":"ROOT_QUERY.homePages.0.technologies.1","typename":"Technology"},{"type":"id","generated":true,"id":"ROOT_QUERY.homePages.0.technologies.2","typename":"Technology"},{"type":"id","generated":true,"id":"ROOT_QUERY.homePages.0.technologies.3","typename":"Technology"}],"industriesIntro":"Advanced digital technologies only reach their potential if they are applied to industry. We focus on the two sectors where we can create the most value: manufacturing and the creative industries.","industriesCoverImage":{"type":"id","generated":true,"id":"$ROOT_QUERY.homePages.0.industriesCoverImage","typename":"Asset"},"industries":[{"type":"id","generated":true,"id":"ROOT_QUERY.homePages.0.industries.0","typename":"Industry"},{"type":"id","generated":true,"id":"ROOT_QUERY.homePages.0.industries.1","typename":"Industry"}],"whoWeWorkWithIntro":"Digital Catapult is passionate about bridging the gap between small businesses, corporations and academia. Depending on who you are and what you do, there are a range of ways you can get involved.","whoWeWorkWithCoverImage":{"type":"id","generated":true,"id":"$ROOT_QUERY.homePages.0.whoWeWorkWithCoverImage","typename":"Asset"},"weWorkWithPages":[{"type":"id","generated":true,"id":"ROOT_QUERY.homePages.0.weWorkWithPages.0","typename":"WeWorkWith"},{"type":"id","generated":true,"id":"ROOT_QUERY.homePages.0.weWorkWithPages.1","typename":"WeWorkWith"},{"type":"id","generated":true,"id":"ROOT_QUERY.homePages.0.weWorkWithPages.2","typename":"WeWorkWith"}],"merryGoRound":[{"type":"id","generated":true,"id":"ROOT_QUERY.homePages.0.merryGoRound.0","typename":"NewsroomItem"},{"type":"id","generated":true,"id":"ROOT_QUERY.homePages.0.merryGoRound.1","typename":"NewsroomItem"},{"type":"id","generated":true,"id":"ROOT_QUERY.homePages.0.merryGoRound.2","typename":"Project"},{"type":"id","generated":true,"id":"ROOT_QUERY.homePages.0.merryGoRound.3","typename":"Project"},{"type":"id","generated":true,"id":"ROOT_QUERY.homePages.0.merryGoRound.4","typename":"Project"},{"type":"id","generated":true,"id":"ROOT_QUERY.homePages.0.merryGoRound.5","typename":"Project"}],"__typename":"HomePage"},"$ROOT_QUERY.homePages.0.featuredImage":{"url":"//images.ctfassets.net/nubxhjiwc091/1W7LYP0mGc0SES4IYcCAe/35c39f9b7750ad2e2b3e8c4b50a528aa/Cyber101_Secondaryimage2.jpg","title":"Cyber101 Secondaryimage2","description":null,"__typename":"Asset"},"$ROOT_QUERY.homePages.0.videoQuoteAuthor":{"firstName":"Dr Jeremy","surname":"Silver","jobTitle":"CEO","slug":"jeremy-silver","company":{"type":"id","generated":true,"id":"$ROOT_QUERY.homePages.0.videoQuoteAuthor.company","typename":"Company"},"__typename":"Person"},"$ROOT_QUERY.homePages.0.videoQuoteAuthor.company":{"name":"Digital Catapult","__typename":"Company"},"$ROOT_QUERY.homePages.0.newsletterForm":{"title":"Don’t miss out","description":"Sign up to our monthly newsletter for all the latest activities across Digital Catapult ","fields":"[{\"name\":\"first_name\",\"type\":\"text\",\"label\":\"First Name\",\"required\":true},{\"name\":\"last_name\",\"type\":\"text\",\"label\":\"Last Name\",\"required\":true},{\"name\":\"email\",\"type\":\"email\",\"label\":\"Email\",\"required\":true},{\"name\":\"title\",\"type\":\"text\",\"label\":\"Role\",\"required\":true},{\"name\":\"company\",\"type\":\"text\",\"label\":\"Company\",\"required\":true},{\"name\":\"00N0X00000DUulx\",\"type\":\"select\",\"label\":\"Organisation Type\",\"values\":[\"Startup\",\"Scaleup\",\"Small or medium enterprise\",\"Large corporate\",\"Academic\",\"Research organisation\",\"Public sector\",\"Not for profit\",\"Individual/entrepreneur\",\"Press/media\",\"Other\"],\"multiple\":false,\"required\":false},{\"name\":\"00N0X00000DUulw\",\"type\":\"select\",\"label\":\"Which of the below areas interest you?\",\"values\":[\"Future Networks (5G, LPWAN, IoT)\",\"Immersive (VR, AR and haptics)\",\"Artificial Intelligence (AI and machine learning)\",\"Blockchain\",\"Cyber security\",\"Manufacturing\",\"Creative industries\",\"None of the above\"],\"multiple\":true,\"required\":false}]","openCallTypeC":"Open Call","webIdC":"a2gb0000000opk7","leadCentreC":null,"leadSource":"Newsletter","buttonText":"Subscribe","captcha":false,"__typename":"Form"},"$ROOT_QUERY.homePages.0.technologiesCoverImage":{"title":"Technologies","url":"//images.ctfassets.net/nubxhjiwc091/2L7ol24KzK42Ec6WuskAa4/230af69f2514d60b3c9ad67124ccf85e/Technologies_v2.png","description":"Technology programmes cover image","__typename":"Asset"},"EntrySys:4iB2bJCLdmOOWciOOukk0o":{"id":"4iB2bJCLdmOOWciOOukk0o","__typename":"EntrySys"},"ROOT_QUERY.homePages.0.technologies.0":{"sys":{"type":"id","generated":false,"id":"EntrySys:4iB2bJCLdmOOWciOOukk0o","typename":"EntrySys"},"slug":"immersive","name":"Immersive","shortDescription":"Digital Catapult offers facilities such as Dimension and the Immersive Labs and runs innovation programmes including Augmentor and CreativeXR. This provides unrivalled access to the latest developments in virtual and augmented reality and supports the development of a strong immersive ecosystem in the UK. ","featuredImage":{"type":"id","generated":true,"id":"$ROOT_QUERY.homePages.0.technologies.0.featuredImage","typename":"Asset"},"__typename":"Technology"},"$ROOT_QUERY.homePages.0.technologies.0.featuredImage":{"title":"DC Hero-images Immersive3","url":"//images.ctfassets.net/nubxhjiwc091/4x8Si2WzZKwwIyCSYgGAY/526cb8e87135497d67fe40decbd3b0be/DC_Hero-images_Immersive3.jpg","description":null,"__typename":"Asset"},"EntrySys:68y5HADDbykOUIsMkcsy0y":{"id":"68y5HADDbykOUIsMkcsy0y","__typename":"EntrySys"},"ROOT_QUERY.homePages.0.technologies.1":{"sys":{"type":"id","generated":false,"id":"EntrySys:68y5HADDbykOUIsMkcsy0y","typename":"EntrySys"},"slug":"artificial-intelligence","name":"Artificial intelligence","shortDescription":"Digital Catapult is opening up the power of AI technologies in four ways: providing access to compute power expertise, offering experimentation space, supporting corporations to accelerate AI adoption and working with policymakers and academics to ensure the UK takes the lead in transparent and ethical AI applications.","featuredImage":{"type":"id","generated":true,"id":"$ROOT_QUERY.homePages.0.technologies.1.featuredImage","typename":"Asset"},"__typename":"Technology"},"$ROOT_QUERY.homePages.0.technologies.1.featuredImage":{"title":"DC Hero-images ai v2","url":"//images.ctfassets.net/nubxhjiwc091/EpiagWx5n2Gi82omWMUqO/63b4505191bf5b3e96f72f787329dff0/DC_Hero-images_ai_v2.jpg","description":null,"__typename":"Asset"},"EntrySys:455njnTm1yAoQYeQAMciUM":{"id":"455njnTm1yAoQYeQAMciUM","__typename":"EntrySys"},"ROOT_QUERY.homePages.0.technologies.2":{"sys":{"type":"id","generated":false,"id":"EntrySys:455njnTm1yAoQYeQAMciUM","typename":"EntrySys"},"slug":"future-networks","name":"Future networks","shortDescription":"Digital technologies such as the Internet of Things (IoT) demand secure and reliable connectivity that uses less power at a lower cost. We provide much needed testbed facilities and innovation programmes to help businesses explore, test and innovate using future network technologies including 5G and low power wide area networks (LPWAN).","featuredImage":{"type":"id","generated":true,"id":"$ROOT_QUERY.homePages.0.technologies.2.featuredImage","typename":"Asset"},"__typename":"Technology"},"$ROOT_QUERY.homePages.0.technologies.2.featuredImage":{"title":"DC Hero FutureNetwork","url":"//images.ctfassets.net/nubxhjiwc091/4FoDbFBfLWUkaoum44kaQi/d4f27d4f373994ab445fb9412decd326/DC_Hero_FutureNetwork.jpg","description":null,"__typename":"Asset"},"EntrySys:15m8TpebbyKkOYSyUE0KO0":{"id":"15m8TpebbyKkOYSyUE0KO0","__typename":"EntrySys"},"ROOT_QUERY.homePages.0.technologies.3":{"sys":{"type":"id","generated":false,"id":"EntrySys:15m8TpebbyKkOYSyUE0KO0","typename":"EntrySys"},"slug":"future-focus","name":"Future focus","shortDescription":"Digital Catapult also has future scoping and experimentation activities which explore underpinning technologies such as cyber security and new directions like distributed ledgers, blockchain and smart contracts.","featuredImage":{"type":"id","generated":true,"id":"$ROOT_QUERY.homePages.0.technologies.3.featuredImage","typename":"Asset"},"__typename":"Technology"},"$ROOT_QUERY.homePages.0.technologies.3.featuredImage":{"title":"DC Hero Future","url":"//images.ctfassets.net/nubxhjiwc091/43DxLaYvQssyGWgiwqgom4/226de7b7e1598174d676b55b26d21ceb/DC_Hero_Future.jpg","description":null,"__typename":"Asset"},"$ROOT_QUERY.homePages.0.industriesCoverImage":{"title":"Industries","url":"//images.ctfassets.net/nubxhjiwc091/1dRywVPm5gICSK2WqMkCk0/445b2bae969d28e81bc65cca8750b50b/Industries_v2.png","description":"Industry focus cover image","__typename":"Asset"},"EntrySys:WIwCV6CrUOEEU0kI26w4Q":{"id":"WIwCV6CrUOEEU0kI26w4Q","__typename":"EntrySys"},"ROOT_QUERY.homePages.0.industries.0":{"sys":{"type":"id","generated":false,"id":"EntrySys:WIwCV6CrUOEEU0kI26w4Q","typename":"EntrySys"},"slug":"creative","name":"Creative industries","shortDescription":"The UK's creative industries are world leading. Digital Catapult is helping the sector to create new markets, invest in technology R\u0026D and begin using advanced digital technologies such as virtual, augmented and mixed reality systems, as well as blockchain, smart contracts, 5G and AI.","featuredImage":{"type":"id","generated":true,"id":"$ROOT_QUERY.homePages.0.industries.0.featuredImage","typename":"Asset"},"__typename":"Industry"},"$ROOT_QUERY.homePages.0.industries.0.featuredImage":{"title":"DC Hero creativeIndustries7","url":"//images.ctfassets.net/nubxhjiwc091/4oRFG6o6li6iAIiwmWW2IA/e9b2a3de893b9106891de6a743c2320f/DC_Hero_creativeIndustries7.jpg","description":null,"__typename":"Asset"},"EntrySys:2e6zZ9FWHWCeKaiGyG0Uks":{"id":"2e6zZ9FWHWCeKaiGyG0Uks","__typename":"EntrySys"},"ROOT_QUERY.homePages.0.industries.1":{"sys":{"type":"id","generated":false,"id":"EntrySys:2e6zZ9FWHWCeKaiGyG0Uks","typename":"EntrySys"},"slug":"manufacturing","name":"Manufacturing ","shortDescription":"The early adoption of advanced digital technologies has the potential to grow UK manufacturing, creating jobs and increasing productivity. In line with the UK Government’s Made Smarter Review, Digital Catapult is helping shape the vision for the future of UK manufacturing, creating trailblazers and demonstrating the value that these technologies can bring to the sector.","featuredImage":{"type":"id","generated":true,"id":"$ROOT_QUERY.homePages.0.industries.1.featuredImage","typename":"Asset"},"__typename":"Industry"},"$ROOT_QUERY.homePages.0.industries.1.featuredImage":{"title":"DC RR","url":"//images.ctfassets.net/nubxhjiwc091/4ehwZfjWIweSMsA6Is0A6u/6136289fdb0671306722c761928c96f2/DC_RR.jpg","description":null,"__typename":"Asset"},"$ROOT_QUERY.homePages.0.whoWeWorkWithCoverImage":{"title":"Who we work with","url":"//images.ctfassets.net/nubxhjiwc091/5WAGaL235eC0cy4C4qy0gW/4ea30a107272016aa9c6760fa2f6cca9/Clients.png","description":"Who we work with cover image","__typename":"Asset"},"EntrySys:2V3nMmfVwQ0KooKQC6CO6A":{"id":"2V3nMmfVwQ0KooKQC6CO6A","__typename":"EntrySys"},"ROOT_QUERY.homePages.0.weWorkWithPages.0":{"sys":{"type":"id","generated":false,"id":"EntrySys:2V3nMmfVwQ0KooKQC6CO6A","typename":"EntrySys"},"slug":"businesses","audience":"Businesses","shortDescription":"Digital Catapult works with businesses of all sizes to increase the adoption of advanced digital technologies.","headerImage":{"type":"id","generated":true,"id":"$ROOT_QUERY.homePages.0.weWorkWithPages.0.headerImage","typename":"Asset"},"__typename":"WeWorkWith"},"$ROOT_QUERY.homePages.0.weWorkWithPages.0.headerImage":{"title":"DC Hero-images Business","url":"//images.ctfassets.net/nubxhjiwc091/3IlA8Vz1pm2S8KgiCIuYGS/5c5b364ff10a21dc89eef43c99cb9d3c/DC_Hero-images_Business.jpg","description":null,"__typename":"Asset"},"EntrySys:1DFqXvapQQumkgcEiumuA2":{"id":"1DFqXvapQQumkgcEiumuA2","__typename":"EntrySys"},"ROOT_QUERY.homePages.0.weWorkWithPages.1":{"sys":{"type":"id","generated":false,"id":"EntrySys:1DFqXvapQQumkgcEiumuA2","typename":"EntrySys"},"slug":"investors-accelerators","audience":"Investors and accelerators","shortDescription":"Digital Catapult introduces the investment community to talented technologists and early-stage businesses that are developing advanced technology solutions with commercial potential within the manufacturing and creative industries.","headerImage":{"type":"id","generated":true,"id":"$ROOT_QUERY.homePages.0.weWorkWithPages.1.headerImage","typename":"Asset"},"__typename":"WeWorkWith"},"$ROOT_QUERY.homePages.0.weWorkWithPages.1.headerImage":{"title":"32441803218 c24d40abae k","url":"//images.ctfassets.net/nubxhjiwc091/6MfZjWBCqEjjoyn1bcGVXj/88277582e4b258d821cf192f18433c19/32441803218_c24d40abae_k.jpg","description":null,"__typename":"Asset"},"EntrySys:1dyNDW3FOIEkmw4Yus2WGO":{"id":"1dyNDW3FOIEkmw4Yus2WGO","__typename":"EntrySys"},"ROOT_QUERY.homePages.0.weWorkWithPages.2":{"sys":{"type":"id","generated":false,"id":"EntrySys:1dyNDW3FOIEkmw4Yus2WGO","typename":"EntrySys"},"slug":"academic","audience":"Research and academia","shortDescription":"Accelerating the adoption of advanced digital technologies emerging from research by bringing academics and researchers together with industry and startups.","headerImage":{"type":"id","generated":true,"id":"$ROOT_QUERY.homePages.0.weWorkWithPages.2.headerImage","typename":"Asset"},"__typename":"WeWorkWith"},"$ROOT_QUERY.homePages.0.weWorkWithPages.2.headerImage":{"title":"DC Hero research2","url":"//images.ctfassets.net/nubxhjiwc091/2VaO2qB10AYECcw8KgiSK4/bc08aec2d31d4115762325de9e02ee7e/DC_Hero_research2.jpg","description":null,"__typename":"Asset"},"ROOT_QUERY.homePages.0.merryGoRound.0":{"__typename":"NewsroomItem","sys":{"type":"id","generated":false,"id":"EntrySys:77D32oo9b8h68OTb4aDu9W","typename":"EntrySys"},"slug":"digital-catapults-platinum-awards-winners-announced","type":"press","title":"Digital Catapult’s Platinum Awards winners announced","heroDescription":"90 Digital Catapult companies raise £130m in twelve months","featuredImage":{"type":"id","generated":true,"id":"$ROOT_QUERY.homePages.0.merryGoRound.0.featuredImage","typename":"Asset"},"subtitle":"Digital Catapult’s Platinum Awards winners announced  ","seoDescription":"Digital Catapult, announces the winners of its inaugural Platinum Awards, a prestigious initiative recognising and celebrating the most innovative advanced digital technology startups and scaleups the country has to offer. ","technology":null},"EntrySys:77D32oo9b8h68OTb4aDu9W":{"id":"77D32oo9b8h68OTb4aDu9W","__typename":"EntrySys"},"$ROOT_QUERY.homePages.0.merryGoRound.0.featuredImage":{"title":"Platinum awards","url":"//images.ctfassets.net/nubxhjiwc091/3HyLeWLWlOUOwjhMGC8GZl/bd6e195a4942a79e3c7b8e3d12ef8596/Platinum_2019_Winners_All_Web_1800x1200px.jpg","description":null,"__typename":"Asset"},"ROOT_QUERY.homePages.0.merryGoRound.1":{"__typename":"NewsroomItem","sys":{"type":"id","generated":false,"id":"EntrySys:3f4XNbBsgnNa4RgW3Jgxwk","typename":"EntrySys"},"slug":"digital-catapult-annual-engagement-and-impact-report","type":"press","title":"Digital Catapult Annual Engagement \u0026 Impact Report","heroDescription":"Digital Catapult Annual Engagement \u0026 Impact Report","featuredImage":{"type":"id","generated":true,"id":"$ROOT_QUERY.homePages.0.merryGoRound.1.featuredImage","typename":"Asset"},"subtitle":"Highlights and overview of Digital Catapult’s successes in 2018-2019","seoDescription":"In the Annual Engagement \u0026 Impact Report 2018-2019, Digital Catapult shares an overview of its work over the past year and some of the main highlights and impact from increasing the adoption of advanced digital technologies in the UK. ","technology":null},"EntrySys:3f4XNbBsgnNa4RgW3Jgxwk":{"id":"3f4XNbBsgnNa4RgW3Jgxwk","__typename":"EntrySys"},"$ROOT_QUERY.homePages.0.merryGoRound.1.featuredImage":{"title":"annual report","url":"//images.ctfassets.net/nubxhjiwc091/5S2chX7UWrQRqnWyKp5F0B/882ac58ad3a1a095eaeb590b96a6c40b/virtual-reality-headset.jpg","description":null,"__typename":"Asset"},"ROOT_QUERY.homePages.0.merryGoRound.2":{"__typename":"Project","sys":{"type":"id","generated":false,"id":"EntrySys:5NeP4aA2yW0ME8qSCYQk4W","typename":"EntrySys"},"slug":"machine-intelligence-garage","title":"Machine Intelligence Garage","heroDescription":"Machines for Machine Intelligence","featuredImage":{"type":"id","generated":true,"id":"$ROOT_QUERY.homePages.0.merryGoRound.2.featuredImage","typename":"Asset"},"subtitle":"Providing the tools and expertise to turn potential into reality","technology":{"type":"id","generated":true,"id":"$ROOT_QUERY.homePages.0.merryGoRound.2.technology","typename":"Technology"}},"EntrySys:5NeP4aA2yW0ME8qSCYQk4W":{"id":"5NeP4aA2yW0ME8qSCYQk4W","__typename":"EntrySys"},"$ROOT_QUERY.homePages.0.merryGoRound.2.featuredImage":{"title":"DC Hero-images MIGarage","url":"//images.ctfassets.net/nubxhjiwc091/4YTNe7BtDi4U2k2yuK6eoG/b6903bba6b9a0585ffe783d5b6a02fe6/DC_Hero-images_MIGarage.jpg","description":null,"__typename":"Asset"},"$ROOT_QUERY.homePages.0.merryGoRound.2.technology":{"sys":{"type":"id","generated":false,"id":"EntrySys:68y5HADDbykOUIsMkcsy0y","typename":"EntrySys"},"slug":"artificial-intelligence","name":"Artificial intelligence","highlightColour":"#6b799f","__typename":"Technology"},"ROOT_QUERY.homePages.0.merryGoRound.3":{"__typename":"Project","sys":{"type":"id","generated":false,"id":"EntrySys:6DxoXqQgdaEYmg6w8OGMIQ","typename":"EntrySys"},"slug":"augmentor","title":"Augmentor","heroDescription":"Discovering next generation VR and AR companies","featuredImage":{"type":"id","generated":true,"id":"$ROOT_QUERY.homePages.0.merryGoRound.3.featuredImage","typename":"Asset"},"subtitle":"Supporting early stage businesses developing innovative and commercially-focused augmented reality and virtual reality products","technology":{"type":"id","generated":true,"id":"$ROOT_QUERY.homePages.0.merryGoRound.3.technology","typename":"Technology"}},"EntrySys:6DxoXqQgdaEYmg6w8OGMIQ":{"id":"6DxoXqQgdaEYmg6w8OGMIQ","__typename":"EntrySys"},"$ROOT_QUERY.homePages.0.merryGoRound.3.featuredImage":{"title":"augmentor.co.uk-4755930362875012","url":"//images.ctfassets.net/nubxhjiwc091/587wZ5TGSAQssWWo6eiUKw/ad49d1b6af37d92c6b17778e31029458/augmentor.co.uk-4755930362875012.jpg","description":null,"__typename":"Asset"},"$ROOT_QUERY.homePages.0.merryGoRound.3.technology":{"sys":{"type":"id","generated":false,"id":"EntrySys:4iB2bJCLdmOOWciOOukk0o","typename":"EntrySys"},"slug":"immersive","name":"Immersive","highlightColour":"#7dd3c2","__typename":"Technology"},"ROOT_QUERY.homePages.0.merryGoRound.4":{"__typename":"Project","sys":{"type":"id","generated":false,"id":"EntrySys:7bXt2ndaqAM8U8YMO6csOw","typename":"EntrySys"},"slug":"immersive-labs","title":"Immersive Labs","heroDescription":"Discover the potential of immersive technologies","featuredImage":{"type":"id","generated":true,"id":"$ROOT_QUERY.homePages.0.merryGoRound.4.featuredImage","typename":"Asset"},"subtitle":"A network of cutting edge innovation facilities – the ideal spaces for learning, testing and showcasing VR and AR solutions","technology":{"type":"id","generated":true,"id":"$ROOT_QUERY.homePages.0.merryGoRound.4.technology","typename":"Technology"}},"EntrySys:7bXt2ndaqAM8U8YMO6csOw":{"id":"7bXt2ndaqAM8U8YMO6csOw","__typename":"EntrySys"},"$ROOT_QUERY.homePages.0.merryGoRound.4.featuredImage":{"title":"Immersive Lab","url":"//images.ctfassets.net/nubxhjiwc091/4UFMNhs4Njkx0VEw37svYQ/43c9c80baaf28d547ef4e8810a8b6d5c/IL2.png","description":null,"__typename":"Asset"},"$ROOT_QUERY.homePages.0.merryGoRound.4.technology":{"sys":{"type":"id","generated":false,"id":"EntrySys:4iB2bJCLdmOOWciOOukk0o","typename":"EntrySys"},"slug":"immersive","name":"Immersive","highlightColour":"#7dd3c2","__typename":"Technology"},"ROOT_QUERY.homePages.0.merryGoRound.5":{"__typename":"Project","sys":{"type":"id","generated":false,"id":"EntrySys:42cNGN6fCg62g0yYsSS8Eu","typename":"EntrySys"},"slug":"future-networks-lab","title":"Future Networks Lab","heroDescription":"Discover the potential of future networks technologies","featuredImage":{"type":"id","generated":true,"id":"$ROOT_QUERY.homePages.0.merryGoRound.5.featuredImage","typename":"Asset"},"subtitle":"A unique facility that is fast forwarding adoption of future networks technologies to deliver value to industry","technology":{"type":"id","generated":true,"id":"$ROOT_QUERY.homePages.0.merryGoRound.5.technology","typename":"Technology"}},"EntrySys:42cNGN6fCg62g0yYsSS8Eu":{"id":"42cNGN6fCg62g0yYsSS8Eu","__typename":"EntrySys"},"$ROOT_QUERY.homePages.0.merryGoRound.5.featuredImage":{"title":"Future Networks Lab HERO1","url":"//images.ctfassets.net/nubxhjiwc091/4RPkEiryh2CCAEKSCkEW6G/5e290977b5a0346f4338c1ac211e2929/Future_Networks_Lab_HERO1.png","description":null,"__typename":"Asset"},"$ROOT_QUERY.homePages.0.merryGoRound.5.technology":{"sys":{"type":"id","generated":false,"id":"EntrySys:455njnTm1yAoQYeQAMciUM","typename":"EntrySys"},"slug":"future-networks","name":"Future networks","highlightColour":"#00d1ff","__typename":"Technology"},"ROOT_QUERY":{"homePages":[{"type":"id","generated":true,"id":"ROOT_QUERY.homePages.0","typename":"HomePage"}]}}}}}},"page":"/","query":{},"buildId":"cysEpD-NYBSOKxwiDygVm","dynamicBuildId":false,"nextExport":true}
}
}
Node(3): script {
@async = (null)
@id = __NEXT_PAGE__/
@src = /_next/static/cysEpD-NYBSOKxwiDygVm/pages/index.js
@type = 0c62581de827c5336e74d77e-text/javascript
}
Node(3): script {
@async = (null)
@id = __NEXT_PAGE__/_app
@src = /_next/static/cysEpD-NYBSOKxwiDygVm/pages/_app.js
@type = 0c62581de827c5336e74d77e-text/javascript
}
Node(3): script {
@src = /_next/static/runtime/webpack-a79426b5e11f0ba5879d.js
@async = (null)
@type = 0c62581de827c5336e74d77e-text/javascript
}
Node(3): script {
@src = /_next/static/chunks/commons.be31d678bec17af41e66.js
@async = (null)
@type = 0c62581de827c5336e74d77e-text/javascript
}
Node(3): script {
@src = /_next/static/runtime/main-5da8112411d890a8cc6b.js
@async = (null)
@type = 0c62581de827c5336e74d77e-text/javascript
}
Node(3): script {
@src = https://ajax.cloudflare.com/cdn-cgi/scripts/7089c43e/cloudflare-static/rocket-loader.min.js
@data-cf-settings = 0c62581de827c5336e74d77e-|49
@defer = (null)
}
}
}
}
warning, created node section reverts to generic
warning, created node section reverts to generic
warning, created node section reverts to generic
warning, created node svg reverts to generic
warning, created node path reverts to generic
warning, created node path reverts to generic
warning, created node svg reverts to generic
warning, created node svg reverts to generic
warning, created node path reverts to generic
warning, created node path reverts to generic
warning, created node svg reverts to generic
warning, created node section reverts to generic
warning, created node section reverts to generic
warning, created node svg reverts to generic
warning, created node path reverts to generic
warning, created node path reverts to generic
warning, created node svg reverts to generic
warning, created node svg reverts to generic
warning, created node path reverts to generic
warning, created node path reverts to generic
warning, created node svg reverts to generic
warning, created node section reverts to generic
warning, created node section reverts to generic
warning, created node svg reverts to generic
warning, created node path reverts to generic
warning, created node path reverts to generic
warning, created node svg reverts to generic
warning, created node svg reverts to generic
warning, created node path reverts to generic
warning, created node path reverts to generic
warning, created node svg reverts to generic
warning, created node section reverts to generic
warning, created node section reverts to generic
512 tags, 0 dead
warning, created node section reverts to generic
@@tree of nodes
root {
html 0 {
head 1 {
meta 2 {
}
meta 4 {
}
meta 6 {
}
resolve(https://www.digicatapult.org.uk/|//images.ctfassets.net)
= https://images.ctfassets.net
link 8 {
}
resolve(https://www.digicatapult.org.uk/|/apple-touch-icon.png)
= https://www.digicatapult.org.uk/apple-touch-icon.png
link 10 {
}
resolve(https://www.digicatapult.org.uk/|/favicon-32x32.png)
= https://www.digicatapult.org.uk/favicon-32x32.png
link 12 {
}
resolve(https://www.digicatapult.org.uk/|/favicon-16x16.png)
= https://www.digicatapult.org.uk/favicon-16x16.png
link 14 {
}
resolve(https://www.digicatapult.org.uk/|/site.webmanifest)
= https://www.digicatapult.org.uk/site.webmanifest
link 16 {
}
resolve(https://www.digicatapult.org.uk/|/safari-pinned-tab.svg)
= https://www.digicatapult.org.uk/safari-pinned-tab.svg
link 18 {
}
resolve(https://www.digicatapult.org.uk/|https://images.ctfassets.net/nubxhjiwc091/10Uk6dWAbege0oWS6qiAiy/e256c79ff38f93e3cbbe7a148ac4330b/icon-fs8.png)
= https://images.ctfassets.net/nubxhjiwc091/10Uk6dWAbege0oWS6qiAiy/e256c79ff38f93e3cbbe7a148ac4330b/icon-fs8.png
link 20 {
}
meta 22 {
}
meta 24 {
}
resolve(https://www.digicatapult.org.uk/|https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i|Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i)
= https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i|Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i
link 26 {
}
resolve(https://www.digicatapult.org.uk/|https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css)
= https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css
link 28 {
}
resolve(https://www.digicatapult.org.uk/|https://cdnjs.cloudflare.com/ajax/libs/event-source-polyfill/0.0.9/eventsource.min.js)
= https://cdnjs.cloudflare.com/ajax/libs/event-source-polyfill/0.0.9/eventsource.min.js
script 30 {
}
style 32 {
text 33 {
}
}
style 36 {
text 37 {
}
}
style 40 {
text 41 {
}
}
style 44 {
text 45 {
}
}
style 48 {
text 49 {
}
}
script 52 {
text 53 {
}
}
resolve(https://www.digicatapult.org.uk/|https://www.googletagmanager.com/gtag/js?id=UA-40698553-3)
= https://www.googletagmanager.com/gtag/js?id=UA-40698553-3
script 56 {
}
script 58 {
text 59 {
}
}
resolve(https://www.digicatapult.org.uk/|//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.css)
= https://cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.css
link 62 {
}
resolve(https://www.digicatapult.org.uk/|//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.js)
= https://cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.js
script 64 {
}
meta 66 {
}
title 68 {
text 69 {
}
}
meta 72 {
}
meta 74 {
}
meta 76 {
}
meta 78 {
}
meta 80 {
}
meta 82 {
}
meta 84 {
}
meta 86 {
}
meta 88 {
}
meta 90 {
}
meta 92 {
}
meta 94 {
}
meta 96 {
}
meta 98 {
}
resolve(https://www.digicatapult.org.uk/|https://www.digicatapult.org.uk/)
= https://www.digicatapult.org.uk/
link 100 {
}
resolve(https://www.digicatapult.org.uk/|/_next/static/cysEpD-NYBSOKxwiDygVm/pages/index.js)
= https://www.digicatapult.org.uk/_next/static/cysEpD-NYBSOKxwiDygVm/pages/index.js
link 102 {
}
resolve(https://www.digicatapult.org.uk/|/_next/static/cysEpD-NYBSOKxwiDygVm/pages/_app.js)
= https://www.digicatapult.org.uk/_next/static/cysEpD-NYBSOKxwiDygVm/pages/_app.js
link 104 {
}
resolve(https://www.digicatapult.org.uk/|/_next/static/runtime/webpack-a79426b5e11f0ba5879d.js)
= https://www.digicatapult.org.uk/_next/static/runtime/webpack-a79426b5e11f0ba5879d.js
link 106 {
}
resolve(https://www.digicatapult.org.uk/|/_next/static/chunks/commons.be31d678bec17af41e66.js)
= https://www.digicatapult.org.uk/_next/static/chunks/commons.be31d678bec17af41e66.js
link 108 {
}
resolve(https://www.digicatapult.org.uk/|/_next/static/runtime/main-5da8112411d890a8cc6b.js)
= https://www.digicatapult.org.uk/_next/static/runtime/main-5da8112411d890a8cc6b.js
link 110 {
}
meta 112 {
}
script 114 {
text 115 {
}
}
}
body 119 {
div 120 {
div 121 {
div 122 {
resolve(https://www.digicatapult.org.uk/|https://images.ctfassets.net/nubxhjiwc091/52ZwZT9NOEw244SIkq6ssQ/543d7de316cfad540668a30458f69b0f/loader.gif)
= https://images.ctfassets.net/nubxhjiwc091/52ZwZT9NOEw244SIkq6ssQ/543d7de316cfad540668a30458f69b0f/loader.gif
img 123 {
}
}
div 126 {
resolve(https://www.digicatapult.org.uk/|/)
= https://www.digicatapult.org.uk/
a 127 {
resolve(https://www.digicatapult.org.uk/|/static/logo.svg)
= https://www.digicatapult.org.uk/static/logo.svg
img 128 {
}
}
div 131 {
div 132 {
div 133 {
resolve(https://www.digicatapult.org.uk/|https://images.ctfassets.net/nubxhjiwc091/52ZwZT9NOEw244SIkq6ssQ/543d7de316cfad540668a30458f69b0f/loader.gif)
= https://images.ctfassets.net/nubxhjiwc091/52ZwZT9NOEw244SIkq6ssQ/543d7de316cfad540668a30458f69b0f/loader.gif
img 134 {
}
}
}
div 138 {
div 139 {
div 140 {
div 141 {
div 142 {
div 143 {
div 144 {
div 145 {
text 146 {
}
}
div 149 {
text 150 {
}
}
div 153 {
text 154 {
}
}
}
resolve(https://www.digicatapult.org.uk/|//images.ctfassets.net/nubxhjiwc091/3HyLeWLWlOUOwjhMGC8GZl/bd6e195a4942a79e3c7b8e3d12ef8596/Platinum_2019_Winners_All_Web_1800x1200px.jpg?fm=jpg&fl=progressive&w=500)
= https://images.ctfassets.net/nubxhjiwc091/3HyLeWLWlOUOwjhMGC8GZl/bd6e195a4942a79e3c7b8e3d12ef8596/Platinum_2019_Winners_All_Web_1800x1200px.jpg?fm=jpg&fl=progressive&w=500
img 158 {
}
}
div 161 {
div 162 {
div 163 {
text 164 {
}
}
div 167 {
text 168 {
}
}
div 171 {
text 172 {
}
}
}
resolve(https://www.digicatapult.org.uk/|//images.ctfassets.net/nubxhjiwc091/5S2chX7UWrQRqnWyKp5F0B/882ac58ad3a1a095eaeb590b96a6c40b/virtual-reality-headset.jpg?fm=jpg&fl=progressive&w=500)
= https://images.ctfassets.net/nubxhjiwc091/5S2chX7UWrQRqnWyKp5F0B/882ac58ad3a1a095eaeb590b96a6c40b/virtual-reality-headset.jpg?fm=jpg&fl=progressive&w=500
img 176 {
}
}
div 179 {
div 180 {
div 181 {
text 182 {
}
}
div 185 {
text 186 {
}
}
div 189 {
text 190 {
}
}
}
resolve(https://www.digicatapult.org.uk/|//images.ctfassets.net/nubxhjiwc091/4YTNe7BtDi4U2k2yuK6eoG/b6903bba6b9a0585ffe783d5b6a02fe6/DC_Hero-images_MIGarage.jpg?fm=jpg&fl=progressive&w=500)
= https://images.ctfassets.net/nubxhjiwc091/4YTNe7BtDi4U2k2yuK6eoG/b6903bba6b9a0585ffe783d5b6a02fe6/DC_Hero-images_MIGarage.jpg?fm=jpg&fl=progressive&w=500
img 194 {
}
}
div 197 {
div 198 {
div 199 {
text 200 {
}
}
div 203 {
text 204 {
}
}
div 207 {
text 208 {
}
}
}
resolve(https://www.digicatapult.org.uk/|//images.ctfassets.net/nubxhjiwc091/587wZ5TGSAQssWWo6eiUKw/ad49d1b6af37d92c6b17778e31029458/augmentor.co.uk-4755930362875012.jpg?fm=jpg&fl=progressive&w=500)
= https://images.ctfassets.net/nubxhjiwc091/587wZ5TGSAQssWWo6eiUKw/ad49d1b6af37d92c6b17778e31029458/augmentor.co.uk-4755930362875012.jpg?fm=jpg&fl=progressive&w=500
img 212 {
}
}
div 215 {
div 216 {
div 217 {
text 218 {
}
}
div 221 {
text 222 {
}
}
div 225 {
text 226 {
}
}
}
resolve(https://www.digicatapult.org.uk/|//images.ctfassets.net/nubxhjiwc091/4UFMNhs4Njkx0VEw37svYQ/43c9c80baaf28d547ef4e8810a8b6d5c/IL2.png?fm=jpg&fl=progressive&w=500)
= https://images.ctfassets.net/nubxhjiwc091/4UFMNhs4Njkx0VEw37svYQ/43c9c80baaf28d547ef4e8810a8b6d5c/IL2.png?fm=jpg&fl=progressive&w=500
img 230 {
}
}
div 233 {
div 234 {
div 235 {
text 236 {
}
}
div 239 {
text 240 {
}
}
div 243 {
text 244 {
}
}
}
resolve(https://www.digicatapult.org.uk/|//images.ctfassets.net/nubxhjiwc091/4RPkEiryh2CCAEKSCkEW6G/5e290977b5a0346f4338c1ac211e2929/Future_Networks_Lab_HERO1.png?fm=jpg&fl=progressive&w=500)
= https://images.ctfassets.net/nubxhjiwc091/4RPkEiryh2CCAEKSCkEW6G/5e290977b5a0346f4338c1ac211e2929/Future_Networks_Lab_HERO1.png?fm=jpg&fl=progressive&w=500
img 248 {
}
}
}
}
}
}
div 255 {
div 256 {
unknown0 257 {
p 258 {
text 259 {
}
}
}
}
}
div 265 {
div 266 {
div 267 {
div 268 {
div 269 {
div 270 {
div 271 {
div 272 {
}
}
}
}
}
div 278 {
div 279 {
div 280 {
div 281 {
div 282 {
div 283 {
blockquote 284 {
text 285 {
}
}
resolve(https://www.digicatapult.org.uk/|/team/jeremy-silver/)
= https://www.digicatapult.org.uk/team/jeremy-silver/
a 288 {
cite 289 {
text 290 {
}
}
}
p 294 {
text 295 {
}
}
}
}
}
}
}
}
}
}
}
div 307 {
div 308 {
div 309 {
unknown0 310 {
div 311 {
div 312 {
div 313 {
div 314 {
div 315 {
ul 316 {
}
}
}
}
}
div 322 {
div 323 {
text 324 {
}
}
button 327 {
unknown0 328 {
unknown0 329 {
}
}
}
button 333 {
unknown0 334 {
unknown0 335 {
}
}
}
}
div 340 {
div 341 {
div 342 {
div 343 {
ul 344 {
}
}
}
}
}
}
}
}
}
}
div 355 {
div 356 {
div 357 {
unknown0 358 {
div 359 {
div 360 {
div 361 {
div 362 {
div 363 {
ul 364 {
}
}
}
}
}
div 370 {
div 371 {
text 372 {
}
}
button 375 {
unknown0 376 {
unknown0 377 {
}
}
}
button 381 {
unknown0 382 {
unknown0 383 {
}
}
}
}
div 388 {
div 389 {
div 390 {
div 391 {
ul 392 {
}
}
}
}
}
}
}
}
}
}
div 403 {
div 404 {
div 405 {
unknown0 406 {
div 407 {
div 408 {
div 409 {
div 410 {
div 411 {
ul 412 {
}
}
}
}
}
div 418 {
div 419 {
text 420 {
}
}
button 423 {
unknown0 424 {
unknown0 425 {
}
}
}
button 429 {
unknown0 430 {
unknown0 431 {
}
}
}
}
div 436 {
div 437 {
div 438 {
div 439 {
ul 440 {
}
}
}
}
}
}
}
}
}
}
unknown0 451 {
form 452 {
div 453 {
div 454 {
h2 455 {
text 456 {
}
}
p 459 {
text 460 {
}
}
}
}
div 465 {
div 466 {
label 467 {
}
div 469 {
label 470 {
text 471 {
}
}
}
label 475 {
input 476 {
}
}
}
div 480 {
label 481 {
}
div 483 {
label 484 {
text 485 {
}
}
}
label 489 {
input 490 {
}
}
}
div 494 {
label 495 {
}
div 497 {
label 498 {
text 499 {
}
}
}
label 503 {
input 504 {
}
}
}
div 508 {
label 509 {
}
div 511 {
label 512 {
text 513 {
}
}
}
label 517 {
input 518 {
}
}
}
div 522 {
label 523 {
}
div 525 {
label 526 {
text 527 {
}
}
}
label 531 {
input 532 {
}
}
}
div 536 {
label 537 {
}
div 539 {
label 540 {
text 541 {
}
}
}
label 545 {
select 546 {
option 547 {
text 548 {
}
}
option 551 {
text 552 {
}
}
option 555 {
text 556 {
}
}
option 559 {
text 560 {
}
}
option 563 {
text 564 {
}
}
option 567 {
text 568 {
}
}
option 571 {
text 572 {
}
}
option 575 {
text 576 {
}
}
option 579 {
text 580 {
}
}
option 583 {
text 584 {
}
}
option 587 {
text 588 {
}
}
option 591 {
text 592 {
}
}
}
}
}
div 598 {
label 599 {
}
div 601 {
label 602 {
text 603 {
}
}
}
label 607 {
select 608 {
option 609 {
text 610 {
}
}
option 613 {
text 614 {
}
}
option 617 {
text 618 {
}
}
option 621 {
text 622 {
}
}
option 625 {
text 626 {
}
}
option 629 {
text 630 {
}
}
option 633 {
text 634 {
}
}
option 637 {
text 638 {
}
}
}
}
}
}
div 645 {
button 646 {
}
div 648 {
button 649 {
}
div 651 {
button 652 {
text 653 {
}
}
}
}
div 658 {
span 659 {
text 660 {
}
}
text 663 {
}
resolve(https://www.digicatapult.org.uk/|/privacy-policy/)
= https://www.digicatapult.org.uk/privacy-policy/
a 665 {
text 666 {
}
}
text 669 {
}
}
}
}
}
}
div 676 {
div 677 {
resolve(https://www.digicatapult.org.uk/|https://images.ctfassets.net/nubxhjiwc091/52ZwZT9NOEw244SIkq6ssQ/543d7de316cfad540668a30458f69b0f/loader.gif)
= https://images.ctfassets.net/nubxhjiwc091/52ZwZT9NOEw244SIkq6ssQ/543d7de316cfad540668a30458f69b0f/loader.gif
img 678 {
}
}
}
}
}
}
}
script 686 {
text 687 {
}
}
resolve(https://www.digicatapult.org.uk/|/_next/static/cysEpD-NYBSOKxwiDygVm/pages/index.js)
= https://www.digicatapult.org.uk/_next/static/cysEpD-NYBSOKxwiDygVm/pages/index.js
script 690 {
}
resolve(https://www.digicatapult.org.uk/|/_next/static/cysEpD-NYBSOKxwiDygVm/pages/_app.js)
= https://www.digicatapult.org.uk/_next/static/cysEpD-NYBSOKxwiDygVm/pages/_app.js
script 692 {
}
resolve(https://www.digicatapult.org.uk/|/_next/static/runtime/webpack-a79426b5e11f0ba5879d.js)
= https://www.digicatapult.org.uk/_next/static/runtime/webpack-a79426b5e11f0ba5879d.js
script 694 {
}
resolve(https://www.digicatapult.org.uk/|/_next/static/chunks/commons.be31d678bec17af41e66.js)
= https://www.digicatapult.org.uk/_next/static/chunks/commons.be31d678bec17af41e66.js
script 696 {
}
resolve(https://www.digicatapult.org.uk/|/_next/static/runtime/main-5da8112411d890a8cc6b.js)
= https://www.digicatapult.org.uk/_next/static/runtime/main-5da8112411d890a8cc6b.js
script 698 {
}
resolve(https://www.digicatapult.org.uk/|https://ajax.cloudflare.com/cdn-cgi/scripts/7089c43e/cloudflare-static/rocket-loader.min.js)
= https://ajax.cloudflare.com/cdn-cgi/scripts/7089c43e/cloudflare-static/rocket-loader.min.js
script 700 {
}
}
}
}
@@end tree
a button does not have a name
a button does not have a name
a button does not have a name
a button does not have a name
a button does not have a name
a button does not have a name
domLink HTML.0 name 
> instantiate gc$e1 HTML
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cfeef428
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cfeef428
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=HTML
< ok
> set tagName=HTML
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e1
< ok
> has lang
< false
> set lang=en-GB
< ok
> function markAttribute
< ok
domLink Head.0 name 
> instantiate gc$e2 Head
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cfdf3278
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cfdf3278
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get heads
< 0x55e3d014b2e8
> get length
< ok
> set [0]=0x55e3cfdf3278
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=HEAD
< ok
> set tagName=HEAD
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e2
< ok
> set innerHTML=long
< ok
domLink Meta.0 name generator
> has generator
< 0
> instantiate gc$e3 Meta
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cfe92c58
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cfe92c58
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get metas
< 0x55e3d014b458
> get length
< ok
> set [0]=0x55e3cfe92c58
< ok
> has generator
< false
> set generator=0x55e3cfe92c58
< ok
> set name=generator
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=META
< ok
> set tagName=META
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e3
< ok
> has name
< true
> has name
< 1
> function markAttribute
< ok
> has content
< false
> set content=HTML Tidy for HTML5 for Linux version 5.6.0
< ok
> function markAttribute
< ok
domLink Meta.0 name 
> instantiate gc$e4 Meta
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cfdf6248
< ok
> set class=next-head
< ok
> set last$class=next-head
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cfdf6248
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get metas
< 0x55e3d014b458
> get length
< ok
> set [1]=0x55e3cfdf6248
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=META
< ok
> set tagName=META
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e4
< ok
> has charset
< false
> set charset=utf-8
< ok
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Meta.0 name viewport
> has viewport
< 0
> instantiate gc$e5 Meta
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cffc4f38
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cffc4f38
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get metas
< 0x55e3d014b458
> get length
< ok
> set [2]=0x55e3cffc4f38
< ok
> has viewport
< false
> set viewport=0x55e3cffc4f38
< ok
> set name=viewport
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=META
< ok
> set tagName=META
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e5
< ok
> has name
< true
> has name
< 1
> function markAttribute
< ok
> has content
< false
> set content=width=device-width, initial-scale=1
< ok
> function markAttribute
< ok
domLink Link.0 name 
> instantiate gc$e6 Link
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cfeef908
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cfeef908
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set href=https://images.ctfassets.net
resolve(|https://images.ctfassets.net)
= https://images.ctfassets.net
< ok
> set nodeName=LINK
< ok
> set tagName=LINK
< ok
> set nodeType=1
< ok
> set rel=dns-prefetch
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e6
< ok
> has rel
< true
> has rel
< 1
> set rel=dns-prefetch
< ok
> function markAttribute
< ok
> has href
< true
> has href
< 5
> function markAttribute
< ok
domLink Link.0 name 
> instantiate gc$e7 Link
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cfe0bc78
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cfe0bc78
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set href=https://www.digicatapult.org.uk/apple-touch-icon.png
resolve(|https://www.digicatapult.org.uk/apple-touch-icon.png)
= https://www.digicatapult.org.uk/apple-touch-icon.png
< ok
> set nodeName=LINK
< ok
> set tagName=LINK
< ok
> set nodeType=1
< ok
> set rel=apple-touch-icon
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e7
< ok
> has rel
< true
> has rel
< 1
> set rel=apple-touch-icon
< ok
> function markAttribute
< ok
> has sizes
< false
> set sizes=180x180
< ok
> function markAttribute
< ok
> has href
< true
> has href
< 5
> function markAttribute
< ok
domLink Link.0 name 
> instantiate gc$e8 Link
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d01256b8
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d01256b8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set href=https://www.digicatapult.org.uk/favicon-32x32.png
resolve(|https://www.digicatapult.org.uk/favicon-32x32.png)
= https://www.digicatapult.org.uk/favicon-32x32.png
< ok
> set nodeName=LINK
< ok
> set tagName=LINK
< ok
> set nodeType=1
< ok
> set type=image/png
< ok
> set rel=icon
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e8
< ok
> has rel
< true
> has rel
< 1
> set rel=icon
< ok
> function markAttribute
< ok
> has type
< true
> has type
< 1
> function markAttribute
< ok
> has sizes
< false
> set sizes=32x32
< ok
> function markAttribute
< ok
> has href
< true
> has href
< 5
> function markAttribute
< ok
domLink Link.0 name 
> instantiate gc$e9 Link
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0280018
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0280018
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set href=https://www.digicatapult.org.uk/favicon-16x16.png
resolve(|https://www.digicatapult.org.uk/favicon-16x16.png)
= https://www.digicatapult.org.uk/favicon-16x16.png
< ok
> set nodeName=LINK
< ok
> set tagName=LINK
< ok
> set nodeType=1
< ok
> set type=image/png
< ok
> set rel=icon
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e9
< ok
> has rel
< true
> has rel
< 1
> set rel=icon
< ok
> function markAttribute
< ok
> has type
< true
> has type
< 1
> function markAttribute
< ok
> has sizes
< false
> set sizes=16x16
< ok
> function markAttribute
< ok
> has href
< true
> has href
< 5
> function markAttribute
< ok
domLink Link.0 name 
> instantiate gc$e10 Link
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cff4deb8
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cff4deb8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set href=https://www.digicatapult.org.uk/site.webmanifest
resolve(|https://www.digicatapult.org.uk/site.webmanifest)
= https://www.digicatapult.org.uk/site.webmanifest
< ok
> set nodeName=LINK
< ok
> set tagName=LINK
< ok
> set nodeType=1
< ok
> set rel=manifest
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e10
< ok
> has rel
< true
> has rel
< 1
> set rel=manifest
< ok
> function markAttribute
< ok
> has href
< true
> has href
< 5
> function markAttribute
< ok
domLink Link.0 name 
> instantiate gc$e11 Link
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cff880e8
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cff880e8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set href=https://www.digicatapult.org.uk/safari-pinned-tab.svg
resolve(|https://www.digicatapult.org.uk/safari-pinned-tab.svg)
= https://www.digicatapult.org.uk/safari-pinned-tab.svg
< ok
> set nodeName=LINK
< ok
> set tagName=LINK
< ok
> set nodeType=1
< ok
> set rel=mask-icon
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e11
< ok
> has rel
< true
> has rel
< 1
> set rel=mask-icon
< ok
> function markAttribute
< ok
> has href
< true
> has href
< 5
> function markAttribute
< ok
> has color
< false
> set color=#5bbad5
< ok
> function markAttribute
< ok
domLink Link.0 name 
> instantiate gc$e12 Link
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cfdf3668
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cfdf3668
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set href=long
resolve(|https://images.ctfassets.net/nubxhjiwc091/10Uk6dWAbege0oWS6qiAiy/e256c79ff38f93e3cbbe7a148ac4330b/icon-fs8.png)
= https://images.ctfassets.net/nubxhjiwc091/10Uk6dWAbege0oWS6qiAiy/e256c79ff38f93e3cbbe7a148ac4330b/icon-fs8.png
< ok
> set nodeName=LINK
< ok
> set tagName=LINK
< ok
> set nodeType=1
< ok
> set type=image/png
< ok
> set rel=shortcut icon
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e12
< ok
> has rel
< true
> has rel
< 1
> set rel=shortcut icon
< ok
> function markAttribute
< ok
> has type
< true
> has type
< 1
> function markAttribute
< ok
> has href
< true
> has href
< 5
> function markAttribute
< ok
domLink Meta.0 name msapplication-TileColor
> has msapplication-TileColor
< 0
> instantiate gc$e13 Meta
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cfddb1c8
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cfddb1c8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get metas
< 0x55e3d014b458
> get length
< ok
> set [3]=0x55e3cfddb1c8
< ok
> has msapplication-TileColor
< false
> set msapplication-TileColor=0x55e3cfddb1c8
< ok
> set name=msapplication-TileColor
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=META
< ok
> set tagName=META
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e13
< ok
> has name
< true
> has name
< 1
> function markAttribute
< ok
> has content
< false
> set content=#da532c
< ok
> function markAttribute
< ok
domLink Meta.0 name theme-color
> has theme-color
< 0
> instantiate gc$e14 Meta
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cfffe4f8
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cfffe4f8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get metas
< 0x55e3d014b458
> get length
< ok
> set [4]=0x55e3cfffe4f8
< ok
> has theme-color
< false
> set theme-color=0x55e3cfffe4f8
< ok
> set name=theme-color
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=META
< ok
> set tagName=META
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e14
< ok
> has name
< true
> has name
< 1
> function markAttribute
< ok
> has content
< false
> set content=#f78484
< ok
> function markAttribute
< ok
domLink Link.0 name 
> instantiate gc$e15 Link
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d000c628
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d000c628
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set href=long
resolve(|https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i|Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i)
= https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i|Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i
< ok
> set nodeName=LINK
< ok
> set tagName=LINK
< ok
> set nodeType=1
< ok
> set rel=stylesheet
< ok
css source https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i|Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i
curl>
GET /css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i|Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i HTTP/2
Host: fonts.googleapis.com
user-agent: edbrowse/3.7.6
accept: */*
accept-encoding: deflate, gzip, br
referer: https://www.digicatapult.org.uk/
accept-language: en-gb

curl<
HTTP/2 200 
content-type: text/css; charset=utf-8
content text/css; charset=utf-8
access-control-allow-origin: *
timing-allow-origin: *
expires: Sun, 08 Dec 2019 13:47:12 GMT
date: Sun, 08 Dec 2019 13:47:12 GMT
cache-control: private, max-age=86400
content-encoding: br
server: ESF
x-xss-protection: 0
x-frame-options: SAMEORIGIN
alt-svc: quic=":443"; ma=2592000; v="46,43",h3-Q050=":443"; ma=2592000,h3-Q049=":443"; ma=2592000,h3-Q048=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000

http code 200
> set css$data=long
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e15
< ok
> has href
< true
> has href
< 5
> function markAttribute
< ok
> has rel
< true
> has rel
< 1
> set rel=stylesheet
< ok
> function markAttribute
< ok
domLink Link.0 name 
> instantiate gc$e16 Link
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cfeaf558
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cfeaf558
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set href=https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css
resolve(|https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css)
= https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css
< ok
> set nodeName=LINK
< ok
> set tagName=LINK
< ok
> set nodeType=1
< ok
> set rel=stylesheet
< ok
css source https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css
curl>
HEAD /ajax/libs/normalize/7.0.0/normalize.min.css HTTP/2
Host: cdnjs.cloudflare.com
user-agent: edbrowse/3.7.6
accept: */*
accept-encoding: deflate, gzip, br
referer: https://www.digicatapult.org.uk/
accept-language: en-gb

curl<
HTTP/2 200 
date: Sun, 08 Dec 2019 13:47:12 GMT
content-type: text/css
content text/css
last-modified: Thu, 17 May 2018 09:23:10 GMT
mod date Thu, 17 May 2018 09:23:10 GMT
etag: W/"5afd49fe-911"
etag W/"5afd49fe-911"
expires: Fri, 27 Nov 2020 13:47:12 GMT
cache-control: public, max-age=30672000
vary: Accept-Encoding
timing-allow-origin: *
access-control-allow-origin: *
served-in-seconds: 0.001
cf-cache-status: HIT
age: 9964184
strict-transport-security: max-age=15780000; includeSubDomains
expect-ct: max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
alt-svc: h3-23=":443"; ma=86400
server: cloudflare
cf-ray: 541f309a9855e628-LHR
content-encoding: br

http code 200
from cache
> set css$data=long
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e16
< ok
> has href
< true
> has href
< 5
> function markAttribute
< ok
> has rel
< true
> has rel
< 1
> set rel=stylesheet
< ok
> function markAttribute
< ok
domLink Script.0 name 
> instantiate gc$e17 Script
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0053888
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0053888
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get scripts
< 0x55e3d014bc08
> get length
< ok
> set [0]=0x55e3d0053888
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set src=https://cdnjs.cloudflare.com/ajax/libs/event-source-polyfill/0.0.9/eventsource.min.js
resolve(|https://cdnjs.cloudflare.com/ajax/libs/event-source-polyfill/0.0.9/eventsource.min.js)
= https://cdnjs.cloudflare.com/ajax/libs/event-source-polyfill/0.0.9/eventsource.min.js
< ok
> set nodeName=SCRIPT
< ok
> set tagName=SCRIPT
< ok
> set nodeType=1
< ok
> set type=0c62581de827c5336e74d77e-text/javascript
< ok
> set data=
< ok
> set src=https://cdnjs.cloudflare.com/ajax/libs/event-source-polyfill/0.0.9/eventsource.min.js
resolve(https://cdnjs.cloudflare.com/ajax/libs/event-source-polyfill/0.0.9/eventsource.min.js|https://cdnjs.cloudflare.com/ajax/libs/event-source-polyfill/0.0.9/eventsource.min.js)
= https://cdnjs.cloudflare.com/ajax/libs/event-source-polyfill/0.0.9/eventsource.min.js
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e17
< ok
> has src
< true
> has src
< 5
> function markAttribute
< ok
> has type
< true
> has type
< 1
> function markAttribute
< ok
domLink CSSStyleDeclaration.0 name 
> instantiate gc$e18 CSSStyleDeclaration
< ok
> new array childNodes
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cfeb8b38
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get styles
< 0x55e3d014b4a8
> get length
< ok
> set [0]=0x55e3cfeb8b38
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=STYLE
< ok
> set tagName=STYLE
< ok
> set nodeType=1
< ok
> set type=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e18
< ok
> instantiate gc$e19 TextNode
< ok
> set data=long
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e19
< ok
domLink CSSStyleDeclaration.0 name 
> instantiate gc$e20 CSSStyleDeclaration
< ok
> new array childNodes
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cfea1548
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get styles
< 0x55e3d014b4a8
> get length
< ok
> set [1]=0x55e3cfea1548
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=STYLE
< ok
> set tagName=STYLE
< ok
> set nodeType=1
< ok
> set type=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e20
< ok
> instantiate gc$e21 TextNode
< ok
> set data=long
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e21
< ok
domLink CSSStyleDeclaration.0 name 
> instantiate gc$e22 CSSStyleDeclaration
< ok
> new array childNodes
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cff4ae98
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get styles
< 0x55e3d014b4a8
> get length
< ok
> set [2]=0x55e3cff4ae98
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=STYLE
< ok
> set tagName=STYLE
< ok
> set nodeType=1
< ok
> set type=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e22
< ok
> instantiate gc$e23 TextNode
< ok
> set data=long
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e23
< ok
domLink CSSStyleDeclaration.0 name 
> instantiate gc$e24 CSSStyleDeclaration
< ok
> new array childNodes
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cff7d158
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get styles
< 0x55e3d014b4a8
> get length
< ok
> set [3]=0x55e3cff7d158
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=STYLE
< ok
> set tagName=STYLE
< ok
> set nodeType=1
< ok
> set type=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e24
< ok
> instantiate gc$e25 TextNode
< ok
> set data=long
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e25
< ok
domLink CSSStyleDeclaration.0 name 
> instantiate gc$e26 CSSStyleDeclaration
< ok
> new array childNodes
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d03af228
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get styles
< 0x55e3d014b4a8
> get length
< ok
> set [4]=0x55e3d03af228
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=STYLE
< ok
> set tagName=STYLE
< ok
> set nodeType=1
< ok
> set type=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e26
< ok
> get dataset
< 0x55e3d03d6568
> set styled=long
< ok
> function markAttribute
< ok
> get dataset
< 0x55e3d03d6568
> set styledVersion=4.2.0
< ok
> function markAttribute
< ok
> instantiate gc$e27 TextNode
< ok
> set data=long
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e27
< ok
domLink Script.0 name 
> instantiate gc$e28 Script
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d03d65b8
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d03d65b8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get scripts
< 0x55e3d014bc08
> get length
< ok
> set [1]=0x55e3d03d65b8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=SCRIPT
< ok
> set tagName=SCRIPT
< ok
> set nodeType=1
< ok
> set type=0c62581de827c5336e74d77e-text/javascript
< ok
> set data=
< ok
> set src=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e28
< ok
> has type
< true
> has type
< 1
> function markAttribute
< ok
> instantiate gc$e29 TextNode
< ok
> set data=long
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e29
< ok
domLink Script.0 name 
> instantiate gc$e30 Script
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0127038
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0127038
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get scripts
< 0x55e3d014bc08
> get length
< ok
> set [2]=0x55e3d0127038
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set src=https://www.googletagmanager.com/gtag/js?id=UA-40698553-3
resolve(|https://www.googletagmanager.com/gtag/js?id=UA-40698553-3)
= https://www.googletagmanager.com/gtag/js?id=UA-40698553-3
< ok
> set nodeName=SCRIPT
< ok
> set tagName=SCRIPT
< ok
> set nodeType=1
< ok
> set type=0c62581de827c5336e74d77e-text/javascript
< ok
> set data=
< ok
> set src=https://www.googletagmanager.com/gtag/js?id=UA-40698553-3
resolve(https://www.googletagmanager.com/gtag/js?id=UA-40698553-3|https://www.googletagmanager.com/gtag/js?id=UA-40698553-3)
= https://www.googletagmanager.com/gtag/js?id=UA-40698553-3
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e30
< ok
> has async
< false
> set async=true
< ok
> function markAttribute
< ok
> has src
< true
> has src
< 5
> function markAttribute
< ok
> has type
< true
> has type
< 1
> function markAttribute
< ok
domLink Script.0 name 
> instantiate gc$e31 Script
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cfee5098
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cfee5098
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get scripts
< 0x55e3d014bc08
> get length
< ok
> set [3]=0x55e3cfee5098
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=SCRIPT
< ok
> set tagName=SCRIPT
< ok
> set nodeType=1
< ok
> set type=0c62581de827c5336e74d77e-text/javascript
< ok
> set data=
< ok
> set src=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e31
< ok
> has type
< true
> has type
< 1
> function markAttribute
< ok
> instantiate gc$e32 TextNode
< ok
> set data=long
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e32
< ok
domLink Link.0 name 
> instantiate gc$e33 Link
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cff4f4d8
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cff4f4d8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set href=https://cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.css
resolve(|https://cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.css)
= https://cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.css
< ok
> set nodeName=LINK
< ok
> set tagName=LINK
< ok
> set nodeType=1
< ok
> set type=text/css
< ok
> set rel=stylesheet
< ok
css source https://cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.css
curl>
HEAD /ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.css HTTP/2
Host: cdnjs.cloudflare.com
user-agent: edbrowse/3.7.6
accept: */*
accept-encoding: deflate, gzip, br
referer: https://www.digicatapult.org.uk/
accept-language: en-gb

curl<
HTTP/2 200 
date: Sun, 08 Dec 2019 13:47:12 GMT
content-type: text/css
content text/css
last-modified: Thu, 17 May 2018 09:18:36 GMT
mod date Thu, 17 May 2018 09:18:36 GMT
etag: W/"5afd48ec-f62"
etag W/"5afd48ec-f62"
expires: Fri, 27 Nov 2020 13:47:12 GMT
cache-control: public, max-age=30672000
vary: Accept-Encoding
timing-allow-origin: *
access-control-allow-origin: *
served-in-seconds: 0.001
cf-cache-status: HIT
age: 20446775
strict-transport-security: max-age=15780000; includeSubDomains
expect-ct: max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
alt-svc: h3-23=":443"; ma=86400
server: cloudflare
cf-ray: 541f309b3c64e694-LHR
content-encoding: br

http code 200
from cache
> set css$data=long
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e33
< ok
> has rel
< true
> has rel
< 1
> set rel=stylesheet
< ok
> function markAttribute
< ok
> has type
< true
> has type
< 1
> function markAttribute
< ok
> has href
< true
> has href
< 5
> function markAttribute
< ok
domLink Script.0 name 
> instantiate gc$e34 Script
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0142b28
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0142b28
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get scripts
< 0x55e3d014bc08
> get length
< ok
> set [4]=0x55e3d0142b28
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set src=https://cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.js
resolve(|https://cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.js)
= https://cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.js
< ok
> set nodeName=SCRIPT
< ok
> set tagName=SCRIPT
< ok
> set nodeType=1
< ok
> set data=
< ok
> set src=https://cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.js
resolve(https://cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.js|https://cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.js)
= https://cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.js
< ok
> has href
< 0
> has src
< 5
> get src
< 0x55e3cff4d458
> get href
< https://cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.js
> get async
< false
js source https://cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.js
> function eb$apch1
append 1
append 2
jsbg thread 1
< ok
> delete gc$e34
< ok
> get dataset
< 0x55e3d000cbd8
> set cfasync=false
< ok
> function markAttribute
< ok
> has src
< true
> has src
< 5
> function markAttribute
< ok
domLink Meta.0 name viewport
> has viewport
< 0
> instantiate gc$e35 Meta
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d009f608
< ok
> set class=next-head
< ok
> set last$class=next-head
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d009f608
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get metas
< 0x55e3d014b458
> get length
< ok
> set [5]=0x55e3d009f608
< ok
> has viewport
< true
> set name=viewport
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=META
< ok
> set tagName=META
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e35
< ok
> has name
< true
> has name
< 1
> function markAttribute
< ok
> has content
< false
> set content=width=device-width,minimum-scale=1,initial-scale=1
< ok
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
> set title=Digital Catapult - Home
< ok
domLink Title.0 name 
> instantiate gc$e36 Title
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d026bb68
< ok
> set class=next-head
< ok
> set last$class=next-head
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d026bb68
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=TITLE
< ok
> set tagName=TITLE
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e36
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
> instantiate gc$e37 TextNode
< ok
> set data=Digital Catapult - Home
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e37
< ok
domLink Meta.0 name description
> has description
< 0
> instantiate gc$e38 Meta
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d05ddeb8
< ok
> set class=next-head
< ok
> set last$class=next-head
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d05ddeb8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get metas
< 0x55e3d014b458
> get length
< ok
> set [6]=0x55e3d05ddeb8
< ok
> has description
< false
> set description=0x55e3d05ddeb8
< ok
> set name=description
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=META
< ok
> set tagName=META
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e38
< ok
> has name
< true
> has name
< 1
> function markAttribute
< ok
> has content
< false
> set content=long
< ok
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Meta.0 name 
> instantiate gc$e39 Meta
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0441e98
< ok
> set class=next-head
< ok
> set last$class=next-head
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0441e98
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get metas
< 0x55e3d014b458
> get length
< ok
> set [7]=0x55e3d0441e98
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=META
< ok
> set tagName=META
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e39
< ok
> has property
< false
> set property=twitter:card
< ok
> function markAttribute
< ok
> has content
< false
> set content=summary_large_image
< ok
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Meta.0 name 
> instantiate gc$e40 Meta
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d03eaa68
< ok
> set class=next-head
< ok
> set last$class=next-head
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d03eaa68
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get metas
< 0x55e3d014b458
> get length
< ok
> set [8]=0x55e3d03eaa68
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=META
< ok
> set tagName=META
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e40
< ok
> has property
< false
> set property=twitter:site
< ok
> function markAttribute
< ok
> has content
< false
> set content=@DigiCatapult
< ok
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Meta.0 name 
> instantiate gc$e41 Meta
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d00719f8
< ok
> set class=next-head
< ok
> set last$class=next-head
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d00719f8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get metas
< 0x55e3d014b458
> get length
< ok
> set [9]=0x55e3d00719f8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=META
< ok
> set tagName=META
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e41
< ok
> has property
< false
> set property=og:description
< ok
> function markAttribute
< ok
> has content
< false
> set content=long
< ok
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Meta.0 name 
> instantiate gc$e42 Meta
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0338d08
< ok
> set class=next-head
< ok
> set last$class=next-head
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0338d08
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get metas
< 0x55e3d014b458
> get length
< ok
> set [10]=0x55e3d0338d08
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=META
< ok
> set tagName=META
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e42
< ok
> has property
< false
> set property=og:title
< ok
> function markAttribute
< ok
> has content
< false
> set content=Digital Catapult - Home
< ok
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Meta.0 name 
> instantiate gc$e43 Meta
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0018b38
< ok
> set class=next-head
< ok
> set last$class=next-head
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0018b38
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get metas
< 0x55e3d014b458
> get length
< ok
> set [11]=0x55e3d0018b38
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=META
< ok
> set tagName=META
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e43
< ok
> has property
< false
> set property=og:type
< ok
> function markAttribute
< ok
> has content
< false
> set content=website
< ok
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Meta.0 name 
> instantiate gc$e44 Meta
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cffbeb88
< ok
> set class=next-head
< ok
> set last$class=next-head
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cffbeb88
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get metas
< 0x55e3d014b458
> get length
< ok
> set [12]=0x55e3cffbeb88
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=META
< ok
> set tagName=META
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e44
< ok
> has property
< false
> set property=og:url
< ok
> function markAttribute
< ok
> has content
< false
> set content=https://www.digicatapult.org.uk/
< ok
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Meta.0 name 
> instantiate gc$e45 Meta
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d03d51f8
< ok
> set class=next-head
< ok
> set last$class=next-head
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d03d51f8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get metas
< 0x55e3d014b458
> get length
< ok
> set [13]=0x55e3d03d51f8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=META
< ok
> set tagName=META
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e45
< ok
> has property
< false
> set property=og:site_name
< ok
> function markAttribute
< ok
> has content
< false
> set content=Digital Catapult
< ok
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Meta.0 name 
> instantiate gc$e46 Meta
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d022ca38
< ok
> set class=next-head
< ok
> set last$class=next-head
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d022ca38
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get metas
< 0x55e3d014b458
> get length
< ok
> set [14]=0x55e3d022ca38
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=META
< ok
> set tagName=META
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e46
< ok
> has property
< false
> set property=og:image:width
< ok
> function markAttribute
< ok
> has content
< false
> set content=400
< ok
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Meta.0 name 
> instantiate gc$e47 Meta
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0290dc8
< ok
> set class=next-head
< ok
> set last$class=next-head
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0290dc8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get metas
< 0x55e3d014b458
> get length
< ok
> set [15]=0x55e3d0290dc8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=META
< ok
> set tagName=META
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e47
< ok
> has property
< false
> set property=og:image:height
< ok
> function markAttribute
< ok
> has content
< false
> set content=400
< ok
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Meta.0 name 
> instantiate gc$e48 Meta
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0520c78
< ok
> set class=next-head
< ok
> set last$class=next-head
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0520c78
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get metas
< 0x55e3d014b458
> get length
< ok
> set [16]=0x55e3d0520c78
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=META
< ok
> set tagName=META
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e48
< ok
> has property
< false
> set property=og:image
< ok
> function markAttribute
< ok
> has content
< false
> set content=long
< ok
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Meta.0 name 
> instantiate gc$e49 Meta
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d018bf98
< ok
> set class=next-head
< ok
> set last$class=next-head
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d018bf98
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get metas
< 0x55e3d014b458
> get length
< ok
> set [17]=0x55e3d018bf98
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=META
< ok
> set tagName=META
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e49
< ok
> has property
< false
> set property=twitter:image
< ok
> function markAttribute
< ok
> has content
< false
> set content=long
< ok
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Meta.0 name thumbnail
> has thumbnail
< 0
> instantiate gc$e50 Meta
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d018c528
< ok
> set class=next-head
< ok
> set last$class=next-head
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d018c528
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get metas
< 0x55e3d014b458
> get length
< ok
> set [18]=0x55e3d018c528
< ok
> has thumbnail
< false
> set thumbnail=0x55e3d018c528
< ok
> set name=thumbnail
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=META
< ok
> set tagName=META
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e50
< ok
> has name
< true
> has name
< 1
> function markAttribute
< ok
> has content
< false
> set content=long
< ok
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Meta.0 name 
> instantiate gc$e51 Meta
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0182528
< ok
> set class=next-head
< ok
> set last$class=next-head
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0182528
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get metas
< 0x55e3d014b458
> get length
< ok
> set [19]=0x55e3d0182528
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=META
< ok
> set tagName=META
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e51
< ok
> has property
< false
> set property=twitter:card
< ok
> function markAttribute
< ok
> has content
< false
> set content=summary
< ok
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Link.0 name 
> instantiate gc$e52 Link
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d010e018
< ok
> set class=next-head
< ok
> set last$class=next-head
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d010e018
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set href=https://www.digicatapult.org.uk/
resolve(|https://www.digicatapult.org.uk/)
= https://www.digicatapult.org.uk/
< ok
> set nodeName=LINK
< ok
> set tagName=LINK
< ok
> set nodeType=1
< ok
> set rel=canonical
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e52
< ok
> has rel
< true
> has rel
< 1
> set rel=canonical
< ok
> function markAttribute
< ok
> has href
< true
> has href
< 5
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Link.0 name 
> instantiate gc$e53 Link
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cfffa598
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cfffa598
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set href=https://www.digicatapult.org.uk/_next/static/cysEpD-NYBSOKxwiDygVm/pages/index.js
resolve(|https://www.digicatapult.org.uk/_next/static/cysEpD-NYBSOKxwiDygVm/pages/index.js)
= https://www.digicatapult.org.uk/_next/static/cysEpD-NYBSOKxwiDygVm/pages/index.js
< ok
> set nodeName=LINK
< ok
> set tagName=LINK
< ok
> set nodeType=1
< ok
> set rel=preload
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e53
< ok
> has rel
< true
> has rel
< 1
> set rel=preload
< ok
> function markAttribute
< ok
> has href
< true
> has href
< 5
> function markAttribute
< ok
> has as
< false
> set as=script
< ok
> function markAttribute
< ok
domLink Link.0 name 
> instantiate gc$e54 Link
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0019078
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0019078
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set href=https://www.digicatapult.org.uk/_next/static/cysEpD-NYBSOKxwiDygVm/pages/_app.js
resolve(|https://www.digicatapult.org.uk/_next/static/cysEpD-NYBSOKxwiDygVm/pages/_app.js)
= https://www.digicatapult.org.uk/_next/static/cysEpD-NYBSOKxwiDygVm/pages/_app.js
< ok
> set nodeName=LINK
< ok
> set tagName=LINK
< ok
> set nodeType=1
< ok
> set rel=preload
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e54
< ok
> has rel
< true
> has rel
< 1
> set rel=preload
< ok
> function markAttribute
< ok
> has href
< true
> has href
< 5
> function markAttribute
< ok
> has as
< false
> set as=script
< ok
> function markAttribute
< ok
domLink Link.0 name 
> instantiate gc$e55 Link
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d01be0b8
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d01be0b8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set href=https://www.digicatapult.org.uk/_next/static/runtime/webpack-a79426b5e11f0ba5879d.js
resolve(|https://www.digicatapult.org.uk/_next/static/runtime/webpack-a79426b5e11f0ba5879d.js)
= https://www.digicatapult.org.uk/_next/static/runtime/webpack-a79426b5e11f0ba5879d.js
< ok
> set nodeName=LINK
< ok
> set tagName=LINK
< ok
> set nodeType=1
< ok
> set rel=preload
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e55
< ok
> has rel
< true
> has rel
< 1
> set rel=preload
< ok
> function markAttribute
< ok
> has href
< true
> has href
< 5
> function markAttribute
< ok
> has as
< false
> set as=script
< ok
> function markAttribute
< ok
domLink Link.0 name 
> instantiate gc$e56 Link
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cfecd058
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cfecd058
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set href=https://www.digicatapult.org.uk/_next/static/chunks/commons.be31d678bec17af41e66.js
resolve(|https://www.digicatapult.org.uk/_next/static/chunks/commons.be31d678bec17af41e66.js)
= https://www.digicatapult.org.uk/_next/static/chunks/commons.be31d678bec17af41e66.js
< ok
> set nodeName=LINK
< ok
> set tagName=LINK
< ok
> set nodeType=1
< ok
> set rel=preload
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e56
< ok
> has rel
< true
> has rel
< 1
> set rel=preload
< ok
> function markAttribute
< ok
> has href
< true
> has href
< 5
> function markAttribute
< ok
> has as
< false
> set as=script
< ok
> function markAttribute
< ok
domLink Link.0 name 
> instantiate gc$e57 Link
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cfeccd98
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cfeccd98
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set href=https://www.digicatapult.org.uk/_next/static/runtime/main-5da8112411d890a8cc6b.js
resolve(|https://www.digicatapult.org.uk/_next/static/runtime/main-5da8112411d890a8cc6b.js)
= https://www.digicatapult.org.uk/_next/static/runtime/main-5da8112411d890a8cc6b.js
< ok
> set nodeName=LINK
< ok
> set tagName=LINK
< ok
> set nodeType=1
< ok
> set rel=preload
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e57
< ok
> has rel
< true
> has rel
< 1
> set rel=preload
< ok
> function markAttribute
< ok
> has href
< true
> has href
< 5
> function markAttribute
< ok
> has as
< false
> set as=script
< ok
> function markAttribute
< ok
domLink Meta.0 name google-site-verification
> has google-site-verification
< 0
> instantiate gc$e58 Meta
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d058d5c8
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d058d5c8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get metas
< 0x55e3d014b458
> get length
< ok
> set [20]=0x55e3d058d5c8
< ok
> has google-site-verification
< false
> set google-site-verification=0x55e3d058d5c8
< ok
> set name=google-site-verification
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=META
< ok
> set tagName=META
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e58
< ok
> has name
< true
> has name
< 1
> function markAttribute
< ok
> has content
< false
> set content=GGTTvHgWcVKAQ3mrGg0jco9ExHFoWko6ZT3HAl_n5hs
< ok
> function markAttribute
< ok
domLink Script.0 name 
> instantiate gc$e59 Script
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d022bee8
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d022bee8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get scripts
< 0x55e3d014bc08
> get length
< ok
> set [5]=0x55e3d022bee8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=SCRIPT
< ok
> set tagName=SCRIPT
< ok
> set nodeType=1
< ok
> set type=0c62581de827c5336e74d77e-text/javascript
< ok
> set data=
< ok
> set src=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e59
< ok
> has type
< true
> has type
< 1
> function markAttribute
< ok
> instantiate gc$e60 TextNode
< ok
> set data=long
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e60
< ok
domLink Body.0 name 
> instantiate gc$e61 Body
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0334868
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0334868
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get bodies
< 0x55e3d014b4f8
> get length
< ok
> set [0]=0x55e3d0334868
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=BODY
< ok
> set tagName=BODY
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e61
< ok
> set innerHTML=long
< ok
domLink Div.0 name 
> instantiate gc$e62 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cffbf348
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cffbf348
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [0]=0x55e3cffbf348
< ok
> set name=
< ok
> set id=__next
< ok
> set last$id=__next
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e62
< ok
> set innerHTML=long
< ok
> has id
< true
> has id
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e63 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d018b968
< ok
> set class=homeLock pages__HomeLock-sc-1d1etnk-1 euRyVK
< ok
> set last$class=homeLock pages__HomeLock-sc-1d1etnk-1 euRyVK
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d018b968
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [1]=0x55e3d018b968
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e63
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e64 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cffbeaf8
< ok
> set class=loader pages__Loader-sc-1d1etnk-0 kRlJxr
< ok
> set last$class=loader pages__Loader-sc-1d1etnk-0 kRlJxr
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cffbeaf8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [2]=0x55e3cffbeaf8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e64
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Image.0 name 
> instantiate gc$e65 Image
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d061f818
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d061f818
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get images
< 0x55e3d014c408
> get length
< ok
> set [0]=0x55e3d061f818
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set src=long
resolve(|https://images.ctfassets.net/nubxhjiwc091/52ZwZT9NOEw244SIkq6ssQ/543d7de316cfad540668a30458f69b0f/loader.gif)
= https://images.ctfassets.net/nubxhjiwc091/52ZwZT9NOEw244SIkq6ssQ/543d7de316cfad540668a30458f69b0f/loader.gif
< ok
> set nodeName=IMG
< ok
> set tagName=IMG
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e65
< ok
> has alt
< false
> set alt=Loading...
< ok
> function markAttribute
< ok
> has src
< true
> has src
< 5
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e66 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cffbfb08
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cffbfb08
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [3]=0x55e3cffbfb08
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e66
< ok
> set innerHTML=long
< ok
domLink Anchor.0 name 
> instantiate gc$e67 Anchor
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cfeb00e8
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cfeb00e8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get links
< 0x55e3d014b408
> get length
< ok
> set [0]=0x55e3cfeb00e8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set href=https://www.digicatapult.org.uk/
resolve(|https://www.digicatapult.org.uk/)
= https://www.digicatapult.org.uk/
< ok
> set nodeName=A
< ok
> set tagName=A
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e67
< ok
> set innerHTML=<img alt="Digital Catapult"
src="/static/logo.svg" class="Layout__Logo-ijd58f-0 htXNHG">
< ok
> has role
< false
> set role=link
< ok
> function markAttribute
< ok
> has tabindex
< false
> set tabindex=0
< ok
> function markAttribute
< ok
> has href
< true
> has href
< 5
> function markAttribute
< ok
domLink Image.0 name 
> instantiate gc$e68 Image
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cfeb0798
< ok
> set class=Layout__Logo-ijd58f-0 htXNHG
< ok
> set last$class=Layout__Logo-ijd58f-0 htXNHG
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cfeb0798
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get images
< 0x55e3d014c408
> get length
< ok
> set [1]=0x55e3cfeb0798
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set src=https://www.digicatapult.org.uk/static/logo.svg
resolve(|https://www.digicatapult.org.uk/static/logo.svg)
= https://www.digicatapult.org.uk/static/logo.svg
< ok
> set nodeName=IMG
< ok
> set tagName=IMG
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e68
< ok
> has alt
< false
> set alt=Digital Catapult
< ok
> function markAttribute
< ok
> has src
< true
> has src
< 5
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e69 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cfda6828
< ok
> set class=Layout__PageWrapper-ijd58f-2 iWzmGk
< ok
> set last$class=Layout__PageWrapper-ijd58f-2 iWzmGk
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cfda6828
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [4]=0x55e3cfda6828
< ok
> set name=
< ok
> set id=page-wrapper
< ok
> set last$id=page-wrapper
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e69
< ok
> set innerHTML=long
< ok
> has id
< true
> has id
< 1
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e70 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d00735e8
< ok
> set class=DefaultLoading__Wrapper-hsd7gk-0 rdKsO
< ok
> set last$class=DefaultLoading__Wrapper-hsd7gk-0 rdKsO
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d00735e8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [5]=0x55e3d00735e8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e70
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e71 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0073d88
< ok
> set class=DefaultLoading__Loader-hsd7gk-1 gDTBjH
< ok
> set last$class=DefaultLoading__Loader-hsd7gk-1 gDTBjH
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0073d88
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [6]=0x55e3d0073d88
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e71
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Image.0 name 
> instantiate gc$e72 Image
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cff6d5b8
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cff6d5b8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get images
< 0x55e3d014c408
> get length
< ok
> set [2]=0x55e3cff6d5b8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set src=long
resolve(|https://images.ctfassets.net/nubxhjiwc091/52ZwZT9NOEw244SIkq6ssQ/543d7de316cfad540668a30458f69b0f/loader.gif)
= https://images.ctfassets.net/nubxhjiwc091/52ZwZT9NOEw244SIkq6ssQ/543d7de316cfad540668a30458f69b0f/loader.gif
< ok
> set nodeName=IMG
< ok
> set tagName=IMG
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e72
< ok
> has alt
< false
> set alt=Loading...
< ok
> function markAttribute
< ok
> has src
< true
> has src
< 5
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e73 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d03e9608
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d03e9608
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [7]=0x55e3d03e9608
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e73
< ok
> set innerHTML=long
< ok
domLink Div.0 name 
> instantiate gc$e74 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d03ea1d8
< ok
> set class=sc-bwzfXH liBCIH sc-bdVaJa iHZvIS
< ok
> set last$class=sc-bwzfXH liBCIH sc-bdVaJa iHZvIS
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d03ea1d8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [8]=0x55e3d03ea1d8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e74
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e75 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d03ea698
< ok
> set class=sc-bdVaJa gQPweM
< ok
> set last$class=sc-bdVaJa gQPweM
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d03ea698
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [9]=0x55e3d03ea698
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e75
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e76 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0074cf8
< ok
> set class=heroWrapper HeroSlider__Wrapper-sc-1poa05v-3 eVjpRB
< ok
> set last$class=heroWrapper HeroSlider__Wrapper-sc-1poa05v-3 eVjpRB
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0074cf8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [10]=0x55e3d0074cf8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e76
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
> has height
< false
> set height=0
< ok
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e77 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0075a68
< ok
> set width=auto
< ok
> set position=absolute
< ok
> set top=auto
< ok
> set transform=translate(0px)
< ok
> set overflow=hidden
< ok
> set class=HeroSlider__Container-sc-1poa05v-2 dXeItm
< ok
> set last$class=HeroSlider__Container-sc-1poa05v-2 dXeItm
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0075a68
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [11]=0x55e3d0075a68
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e77
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e78 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0246af8
< ok
> set class=HeroSlider__ProjectPane-sc-1poa05v-5 chOKFa
< ok
> set last$class=HeroSlider__ProjectPane-sc-1poa05v-5 chOKFa
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0246af8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [12]=0x55e3d0246af8
< ok
> set name=
< ok
> set id=project_digital-catapults-platinum-awards-winners-announced
< ok
> set last$id=project_digital-catapults-platinum-awards-winners-announced
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e78
< ok
> set innerHTML=long
< ok
> has id
< true
> has id
< 1
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e79 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0247398
< ok
> set class=projectInfo HeroSlider__ProjectInfo-sc-1poa05v-6 kKpnGY
< ok
> set last$class=projectInfo HeroSlider__ProjectInfo-sc-1poa05v-6 kKpnGY
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0247398
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [13]=0x55e3d0247398
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e79
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e80 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d041fdd8
< ok
> set class=HeroSlider__ProjectTitle-sc-1poa05v-7 eETOGe
< ok
> set last$class=HeroSlider__ProjectTitle-sc-1poa05v-7 eETOGe
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d041fdd8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [14]=0x55e3d041fdd8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e80
< ok
> set innerHTML=90
Digital Catapult companies raise £130m in twelve months
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
> instantiate gc$e81 TextNode
< ok
> set data=90 Digital Catapult companies raise £130m in twelve months
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e81
< ok
domLink Div.0 name 
> instantiate gc$e82 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d026ae78
< ok
> set class=projectSubtitle HeroSlider__ProjectSubtitle-sc-1poa05v-8 qVWeg
< ok
> set last$class=projectSubtitle HeroSlider__ProjectSubtitle-sc-1poa05v-8 qVWeg
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d026ae78
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [15]=0x55e3d026ae78
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e82
< ok
> set innerHTML=Digital Catapult’s Platinum Awards winners announced
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
> instantiate gc$e83 TextNode
< ok
> set data=Digital Catapult’s Platinum Awards winners announced
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e83
< ok
domLink Div.0 name 
> instantiate gc$e84 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d02998f8
< ok
> set class=HeroSlider__ProjectName-sc-1poa05v-9 ewpPjU
< ok
> set last$class=HeroSlider__ProjectName-sc-1poa05v-9 ewpPjU
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d02998f8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [16]=0x55e3d02998f8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e84
< ok
> set innerHTML=Press
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
> instantiate gc$e85 TextNode
< ok
> set data=Press
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e85
< ok
domLink Image.0 name 
> instantiate gc$e86 Image
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d029a898
< ok
> set class=HeroSlider__PaneImage-sc-1poa05v-0 gJSRsQ
< ok
> set last$class=HeroSlider__PaneImage-sc-1poa05v-0 gJSRsQ
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d029a898
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get images
< 0x55e3d014c408
> get length
< ok
> set [3]=0x55e3d029a898
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set src=long
resolve(|https://images.ctfassets.net/nubxhjiwc091/3HyLeWLWlOUOwjhMGC8GZl/bd6e195a4942a79e3c7b8e3d12ef8596/Platinum_2019_Winners_All_Web_1800x1200px.jpg?fm=jpg&fl=progressive&w=500)
= https://images.ctfassets.net/nubxhjiwc091/3HyLeWLWlOUOwjhMGC8GZl/bd6e195a4942a79e3c7b8e3d12ef8596/Platinum_2019_Winners_All_Web_1800x1200px.jpg?fm=jpg&fl=progressive&w=500
< ok
> set nodeName=IMG
< ok
> set tagName=IMG
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e86
< ok
> has alt
< false
> set alt=Digital Catapult’s Platinum Awards winners announced
< ok
> function markAttribute
< ok
> has src
< true
> has src
< 5
> function markAttribute
< ok
> has srcset
< false
> set srcset=long
< ok
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e87 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cff06238
< ok
> set class=HeroSlider__ProjectPane-sc-1poa05v-5 chOKFa
< ok
> set last$class=HeroSlider__ProjectPane-sc-1poa05v-5 chOKFa
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cff06238
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [17]=0x55e3cff06238
< ok
> set name=
< ok
> set id=project_digital-catapult-annual-engagement-and-impact-report
< ok
> set last$id=project_digital-catapult-annual-engagement-and-impact-report
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e87
< ok
> set innerHTML=long
< ok
> has id
< true
> has id
< 1
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e88 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cff06288
< ok
> set class=projectInfo HeroSlider__ProjectInfo-sc-1poa05v-6 kKpnGY
< ok
> set last$class=projectInfo HeroSlider__ProjectInfo-sc-1poa05v-6 kKpnGY
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cff06288
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [18]=0x55e3cff06288
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e88
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e89 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0071168
< ok
> set class=HeroSlider__ProjectTitle-sc-1poa05v-7 eETOGe
< ok
> set last$class=HeroSlider__ProjectTitle-sc-1poa05v-7 eETOGe
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0071168
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [19]=0x55e3d0071168
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e89
< ok
> set innerHTML=Digital
Catapult Annual Engagement & Impact Report
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
> instantiate gc$e90 TextNode
< ok
> set data=Digital Catapult Annual Engagement & Impact Report
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e90
< ok
domLink Div.0 name 
> instantiate gc$e91 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d019afa8
< ok
> set class=projectSubtitle HeroSlider__ProjectSubtitle-sc-1poa05v-8 qVWeg
< ok
> set last$class=projectSubtitle HeroSlider__ProjectSubtitle-sc-1poa05v-8 qVWeg
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d019afa8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [20]=0x55e3d019afa8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e91
< ok
> set innerHTML=Highlights and overview of Digital Catapult’s successes in
2018-2019
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
> instantiate gc$e92 TextNode
< ok
> set data=Highlights and overview of Digital Catapult’s successes in 2018-2019
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e92
< ok
domLink Div.0 name 
> instantiate gc$e93 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d00a0ac8
< ok
> set class=HeroSlider__ProjectName-sc-1poa05v-9 ewpPjU
< ok
> set last$class=HeroSlider__ProjectName-sc-1poa05v-9 ewpPjU
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d00a0ac8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [21]=0x55e3d00a0ac8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e93
< ok
> set innerHTML=Press
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
> instantiate gc$e94 TextNode
< ok
> set data=Press
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e94
< ok
domLink Image.0 name 
> instantiate gc$e95 Image
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d021f318
< ok
> set class=HeroSlider__PaneImage-sc-1poa05v-0 gJSRsQ
< ok
> set last$class=HeroSlider__PaneImage-sc-1poa05v-0 gJSRsQ
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d021f318
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get images
< 0x55e3d014c408
> get length
< ok
> set [4]=0x55e3d021f318
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set src=long
resolve(|https://images.ctfassets.net/nubxhjiwc091/5S2chX7UWrQRqnWyKp5F0B/882ac58ad3a1a095eaeb590b96a6c40b/virtual-reality-headset.jpg?fm=jpg&fl=progressive&w=500)
= https://images.ctfassets.net/nubxhjiwc091/5S2chX7UWrQRqnWyKp5F0B/882ac58ad3a1a095eaeb590b96a6c40b/virtual-reality-headset.jpg?fm=jpg&fl=progressive&w=500
< ok
> set nodeName=IMG
< ok
> set tagName=IMG
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e95
< ok
> has alt
< false
> set alt=Digital Catapult Annual Engagement & Impact Report
< ok
> function markAttribute
< ok
> has src
< true
> has src
< 5
> function markAttribute
< ok
> has srcset
< false
> set srcset=long
< ok
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e96 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d01f4578
< ok
> set class=HeroSlider__ProjectPane-sc-1poa05v-5 chOKFa
< ok
> set last$class=HeroSlider__ProjectPane-sc-1poa05v-5 chOKFa
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d01f4578
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [22]=0x55e3d01f4578
< ok
> set name=
< ok
> set id=project_machine-intelligence-garage
< ok
> set last$id=project_machine-intelligence-garage
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e96
< ok
> set innerHTML=long
< ok
> has id
< true
> has id
< 1
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e97 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d01f4b18
< ok
> set class=projectInfo HeroSlider__ProjectInfo-sc-1poa05v-6 kKpnGY
< ok
> set last$class=projectInfo HeroSlider__ProjectInfo-sc-1poa05v-6 kKpnGY
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d01f4b18
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [23]=0x55e3d01f4b18
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e97
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e98 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d041f9e8
< ok
> set class=HeroSlider__ProjectTitle-sc-1poa05v-7 eETOGe
< ok
> set last$class=HeroSlider__ProjectTitle-sc-1poa05v-7 eETOGe
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d041f9e8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [24]=0x55e3d041f9e8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e98
< ok
> set innerHTML=Machines
for Machine Intelligence
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
> instantiate gc$e99 TextNode
< ok
> set data=Machines for Machine Intelligence
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e99
< ok
domLink Div.0 name 
> instantiate gc$e100 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d04e05f8
< ok
> set class=projectSubtitle HeroSlider__ProjectSubtitle-sc-1poa05v-8 qVWeg
< ok
> set last$class=projectSubtitle HeroSlider__ProjectSubtitle-sc-1poa05v-8 qVWeg
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d04e05f8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [25]=0x55e3d04e05f8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e100
< ok
> set innerHTML=Providing the tools and expertise to turn potential into
reality
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
> instantiate gc$e101 TextNode
< ok
> set data=Providing the tools and expertise to turn potential into reality
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e101
< ok
domLink Div.0 name 
> instantiate gc$e102 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d04e1738
< ok
> set class=HeroSlider__ProjectName-sc-1poa05v-9 ewpPjU
< ok
> set last$class=HeroSlider__ProjectName-sc-1poa05v-9 ewpPjU
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d04e1738
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [26]=0x55e3d04e1738
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e102
< ok
> set innerHTML=Machine
Intelligence Garage
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
> instantiate gc$e103 TextNode
< ok
> set data=Machine Intelligence Garage
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e103
< ok
domLink Image.0 name 
> instantiate gc$e104 Image
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0218388
< ok
> set class=HeroSlider__PaneImage-sc-1poa05v-0 gJSRsQ
< ok
> set last$class=HeroSlider__PaneImage-sc-1poa05v-0 gJSRsQ
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0218388
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get images
< 0x55e3d014c408
> get length
< ok
> set [5]=0x55e3d0218388
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set src=long
resolve(|https://images.ctfassets.net/nubxhjiwc091/4YTNe7BtDi4U2k2yuK6eoG/b6903bba6b9a0585ffe783d5b6a02fe6/DC_Hero-images_MIGarage.jpg?fm=jpg&fl=progressive&w=500)
= https://images.ctfassets.net/nubxhjiwc091/4YTNe7BtDi4U2k2yuK6eoG/b6903bba6b9a0585ffe783d5b6a02fe6/DC_Hero-images_MIGarage.jpg?fm=jpg&fl=progressive&w=500
< ok
> set nodeName=IMG
< ok
> set tagName=IMG
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e104
< ok
> has alt
< false
> set alt=Machine Intelligence Garage
< ok
> function markAttribute
< ok
> has src
< true
> has src
< 5
> function markAttribute
< ok
> has srcset
< false
> set srcset=long
< ok
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e105 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0218bf8
< ok
> set class=HeroSlider__ProjectPane-sc-1poa05v-5 chOKFa
< ok
> set last$class=HeroSlider__ProjectPane-sc-1poa05v-5 chOKFa
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0218bf8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [27]=0x55e3d0218bf8
< ok
> set name=
< ok
> set id=project_augmentor
< ok
> set last$id=project_augmentor
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e105
< ok
> set innerHTML=long
< ok
> has id
< true
> has id
< 1
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e106 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0045c68
< ok
> set class=projectInfo HeroSlider__ProjectInfo-sc-1poa05v-6 kKpnGY
< ok
> set last$class=projectInfo HeroSlider__ProjectInfo-sc-1poa05v-6 kKpnGY
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0045c68
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [28]=0x55e3d0045c68
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e106
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e107 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d04afea8
< ok
> set class=HeroSlider__ProjectTitle-sc-1poa05v-7 eETOGe
< ok
> set last$class=HeroSlider__ProjectTitle-sc-1poa05v-7 eETOGe
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d04afea8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [29]=0x55e3d04afea8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e107
< ok
> set innerHTML=Discovering next generation VR and AR companies
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
> instantiate gc$e108 TextNode
< ok
> set data=Discovering next generation VR and AR companies
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e108
< ok
domLink Div.0 name 
> instantiate gc$e109 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d019cf48
< ok
> set class=projectSubtitle HeroSlider__ProjectSubtitle-sc-1poa05v-8 qVWeg
< ok
> set last$class=projectSubtitle HeroSlider__ProjectSubtitle-sc-1poa05v-8 qVWeg
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d019cf48
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [30]=0x55e3d019cf48
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e109
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
> instantiate gc$e110 TextNode
< ok
> set data=long
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e110
< ok
domLink Div.0 name 
> instantiate gc$e111 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cff6cde8
< ok
> set class=HeroSlider__ProjectName-sc-1poa05v-9 ewpPjU
< ok
> set last$class=HeroSlider__ProjectName-sc-1poa05v-9 ewpPjU
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cff6cde8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [31]=0x55e3cff6cde8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e111
< ok
> set innerHTML=Augmentor
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
> instantiate gc$e112 TextNode
< ok
> set data=Augmentor
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e112
< ok
domLink Image.0 name 
> instantiate gc$e113 Image
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d01f4188
< ok
> set class=HeroSlider__PaneImage-sc-1poa05v-0 gJSRsQ
< ok
> set last$class=HeroSlider__PaneImage-sc-1poa05v-0 gJSRsQ
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d01f4188
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get images
< 0x55e3d014c408
> get length
< ok
> set [6]=0x55e3d01f4188
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set src=long
resolve(|https://images.ctfassets.net/nubxhjiwc091/587wZ5TGSAQssWWo6eiUKw/ad49d1b6af37d92c6b17778e31029458/augmentor.co.uk-4755930362875012.jpg?fm=jpg&fl=progressive&w=500)
= https://images.ctfassets.net/nubxhjiwc091/587wZ5TGSAQssWWo6eiUKw/ad49d1b6af37d92c6b17778e31029458/augmentor.co.uk-4755930362875012.jpg?fm=jpg&fl=progressive&w=500
< ok
> set nodeName=IMG
< ok
> set tagName=IMG
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e113
< ok
> has alt
< false
> set alt=Augmentor
< ok
> function markAttribute
< ok
> has src
< true
> has src
< 5
> function markAttribute
< ok
> has srcset
< false
> set srcset=long
< ok
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e114 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d03eb808
< ok
> set class=HeroSlider__ProjectPane-sc-1poa05v-5 chOKFa
< ok
> set last$class=HeroSlider__ProjectPane-sc-1poa05v-5 chOKFa
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d03eb808
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [32]=0x55e3d03eb808
< ok
> set name=
< ok
> set id=project_immersive-labs
< ok
> set last$id=project_immersive-labs
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e114
< ok
> set innerHTML=long
< ok
> has id
< true
> has id
< 1
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e115 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d01f40a8
< ok
> set class=projectInfo HeroSlider__ProjectInfo-sc-1poa05v-6 kKpnGY
< ok
> set last$class=projectInfo HeroSlider__ProjectInfo-sc-1poa05v-6 kKpnGY
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d01f40a8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [33]=0x55e3d01f40a8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e115
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e116 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d03ae938
< ok
> set class=HeroSlider__ProjectTitle-sc-1poa05v-7 eETOGe
< ok
> set last$class=HeroSlider__ProjectTitle-sc-1poa05v-7 eETOGe
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d03ae938
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [34]=0x55e3d03ae938
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e116
< ok
> set innerHTML=Discover
the potential of immersive technologies
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
> instantiate gc$e117 TextNode
< ok
> set data=Discover the potential of immersive technologies
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e117
< ok
domLink Div.0 name 
> instantiate gc$e118 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d04c4538
< ok
> set class=projectSubtitle HeroSlider__ProjectSubtitle-sc-1poa05v-8 qVWeg
< ok
> set last$class=projectSubtitle HeroSlider__ProjectSubtitle-sc-1poa05v-8 qVWeg
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d04c4538
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [35]=0x55e3d04c4538
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e118
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
> instantiate gc$e119 TextNode
< ok
> set data=long
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e119
< ok
domLink Div.0 name 
> instantiate gc$e120 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d04c5428
< ok
> set class=HeroSlider__ProjectName-sc-1poa05v-9 ewpPjU
< ok
> set last$class=HeroSlider__ProjectName-sc-1poa05v-9 ewpPjU
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d04c5428
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [36]=0x55e3d04c5428
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e120
< ok
> set innerHTML=Immersive
Labs
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
> instantiate gc$e121 TextNode
< ok
> set data=Immersive Labs
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e121
< ok
domLink Image.0 name 
> instantiate gc$e122 Image
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0149968
< ok
> set class=HeroSlider__PaneImage-sc-1poa05v-0 gJSRsQ
< ok
> set last$class=HeroSlider__PaneImage-sc-1poa05v-0 gJSRsQ
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0149968
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get images
< 0x55e3d014c408
> get length
< ok
> set [7]=0x55e3d0149968
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set src=long
resolve(|https://images.ctfassets.net/nubxhjiwc091/4UFMNhs4Njkx0VEw37svYQ/43c9c80baaf28d547ef4e8810a8b6d5c/IL2.png?fm=jpg&fl=progressive&w=500)
= https://images.ctfassets.net/nubxhjiwc091/4UFMNhs4Njkx0VEw37svYQ/43c9c80baaf28d547ef4e8810a8b6d5c/IL2.png?fm=jpg&fl=progressive&w=500
< ok
> set nodeName=IMG
< ok
> set tagName=IMG
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e122
< ok
> has alt
< false
> set alt=Immersive Labs
< ok
> function markAttribute
< ok
> has src
< true
> has src
< 5
> function markAttribute
< ok
> has srcset
< false
> set srcset=long
< ok
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e123 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d014a5e8
< ok
> set class=HeroSlider__ProjectPane-sc-1poa05v-5 chOKFa
< ok
> set last$class=HeroSlider__ProjectPane-sc-1poa05v-5 chOKFa
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d014a5e8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [37]=0x55e3d014a5e8
< ok
> set name=
< ok
> set id=project_future-networks-lab
< ok
> set last$id=project_future-networks-lab
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e123
< ok
> set innerHTML=long
< ok
> has id
< true
> has id
< 1
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e124 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d04c5398
< ok
> set class=projectInfo HeroSlider__ProjectInfo-sc-1poa05v-6 kKpnGY
< ok
> set last$class=projectInfo HeroSlider__ProjectInfo-sc-1poa05v-6 kKpnGY
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d04c5398
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [38]=0x55e3d04c5398
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e124
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e125 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d03e8bd8
< ok
> set class=HeroSlider__ProjectTitle-sc-1poa05v-7 eETOGe
< ok
> set last$class=HeroSlider__ProjectTitle-sc-1poa05v-7 eETOGe
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d03e8bd8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [39]=0x55e3d03e8bd8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e125
< ok
> set innerHTML=Discover
the potential of future networks technologies
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
> instantiate gc$e126 TextNode
< ok
> set data=Discover the potential of future networks technologies
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e126
< ok
domLink Div.0 name 
> instantiate gc$e127 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cff6bdf8
< ok
> set class=projectSubtitle HeroSlider__ProjectSubtitle-sc-1poa05v-8 qVWeg
< ok
> set last$class=projectSubtitle HeroSlider__ProjectSubtitle-sc-1poa05v-8 qVWeg
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cff6bdf8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [40]=0x55e3cff6bdf8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e127
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
> instantiate gc$e128 TextNode
< ok
> set data=long
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e128
< ok
domLink Div.0 name 
> instantiate gc$e129 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d01594a8
< ok
> set class=HeroSlider__ProjectName-sc-1poa05v-9 ewpPjU
< ok
> set last$class=HeroSlider__ProjectName-sc-1poa05v-9 ewpPjU
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d01594a8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [41]=0x55e3d01594a8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e129
< ok
> set innerHTML=Future
Networks Lab
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
> instantiate gc$e130 TextNode
< ok
> set data=Future Networks Lab
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e130
< ok
domLink Image.0 name 
> instantiate gc$e131 Image
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d015a748
< ok
> set class=HeroSlider__PaneImage-sc-1poa05v-0 gJSRsQ
< ok
> set last$class=HeroSlider__PaneImage-sc-1poa05v-0 gJSRsQ
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d015a748
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get images
< 0x55e3d014c408
> get length
< ok
> set [8]=0x55e3d015a748
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set src=long
resolve(|https://images.ctfassets.net/nubxhjiwc091/4RPkEiryh2CCAEKSCkEW6G/5e290977b5a0346f4338c1ac211e2929/Future_Networks_Lab_HERO1.png?fm=jpg&fl=progressive&w=500)
= https://images.ctfassets.net/nubxhjiwc091/4RPkEiryh2CCAEKSCkEW6G/5e290977b5a0346f4338c1ac211e2929/Future_Networks_Lab_HERO1.png?fm=jpg&fl=progressive&w=500
< ok
> set nodeName=IMG
< ok
> set tagName=IMG
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e131
< ok
> has alt
< false
> set alt=Future Networks Lab
< ok
> function markAttribute
< ok
> has src
< true
> has src
< 5
> function markAttribute
< ok
> has srcset
< false
> set srcset=long
< ok
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e132 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cff6c668
< ok
> set class=sc-bwzfXH liBCIH sc-bdVaJa iHZvIS
< ok
> set last$class=sc-bwzfXH liBCIH sc-bdVaJa iHZvIS
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cff6c668
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [42]=0x55e3cff6c668
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e132
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e133 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cfdafc88
< ok
> set class=sc-bdVaJa gQPweM
< ok
> set last$class=sc-bdVaJa gQPweM
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cfdafc88
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [43]=0x55e3cfdafc88
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e133
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink HTMLElement.0 name 
> instantiate gc$e134 HTMLElement
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0036dc8
< ok
> set class=BigText__BigTextContainer-e80o4v-0 jkbOON
< ok
> set last$class=BigText__BigTextContainer-e80o4v-0 jkbOON
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0036dc8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=UNKNOWN0
< ok
> set tagName=UNKNOWN0
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e134
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink P.0 name 
> instantiate gc$e135 P
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d00376f8
< ok
> set class=BigText__Message-e80o4v-1 kehqLl
< ok
> set last$class=BigText__Message-e80o4v-1 kehqLl
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d00376f8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get paragraphs
< 0x55e3d014bc58
> get length
< ok
> set [0]=0x55e3d00376f8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=P
< ok
> set tagName=P
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e135
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
> instantiate gc$e136 TextNode
< ok
> set data=long
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e136
< ok
domLink Div.0 name 
> instantiate gc$e137 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0038638
< ok
> set class=sc-bwzfXH liBCIH sc-bdVaJa iHZvIS
< ok
> set last$class=sc-bwzfXH liBCIH sc-bdVaJa iHZvIS
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0038638
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [44]=0x55e3d0038638
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e137
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e138 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d058e268
< ok
> set class=sc-bdVaJa gQPweM
< ok
> set last$class=sc-bdVaJa gQPweM
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d058e268
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [45]=0x55e3d058e268
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e138
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e139 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d058ef88
< ok
> set class=VideoQuote__VideoQuoteEl-sc-1k1ajpm-0 kWMsch
< ok
> set last$class=VideoQuote__VideoQuoteEl-sc-1k1ajpm-0 kWMsch
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d058ef88
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [46]=0x55e3d058ef88
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e139
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e140 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d058fc78
< ok
> set class=VideoQuote__ImageBox-sc-1k1ajpm-1 cQFjYN
< ok
> set last$class=VideoQuote__ImageBox-sc-1k1ajpm-1 cQFjYN
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d058fc78
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [47]=0x55e3d058fc78
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e140
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e141 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d023cce8
< ok
> set class=Video__VideoEl-sc-10jpcip-0 hSrXCb
< ok
> set last$class=Video__VideoEl-sc-10jpcip-0 hSrXCb
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d023cce8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [48]=0x55e3d023cce8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e141
< ok
> set innerHTML=<div style="width:auto;height:100%">
<div style="width:100%;height:100%">
<div></div>
</div>
</div>

< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e142 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d023d678
< ok
> set width=auto
< ok
> set height=100%
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d023d678
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [49]=0x55e3d023d678
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e142
< ok
> set innerHTML=<div style="width:100%;height:100%">
<div></div>
</div>

< ok
domLink Div.0 name 
> instantiate gc$e143 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0077098
< ok
> set width=100%
< ok
> set height=100%
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0077098
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [50]=0x55e3d0077098
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e143
< ok
> set innerHTML=<div></div>

< ok
domLink Div.0 name 
> instantiate gc$e144 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d00778e8
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d00778e8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [51]=0x55e3d00778e8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e144
< ok
> set innerHTML=
< ok
domLink Div.0 name 
> instantiate gc$e145 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0408048
< ok
> set class=VideoQuote__Center-sc-1k1ajpm-2 diSNyZ
< ok
> set last$class=VideoQuote__Center-sc-1k1ajpm-2 diSNyZ
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0408048
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [52]=0x55e3d0408048
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e145
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e146 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0408748
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0408748
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [53]=0x55e3d0408748
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e146
< ok
> set innerHTML=long
< ok
domLink Div.0 name 
> instantiate gc$e147 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0409178
< ok
> set class=Quote__TextBox-sc-1ubt7du-1 iZiUsS
< ok
> set last$class=Quote__TextBox-sc-1ubt7du-1 iZiUsS
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0409178
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [54]=0x55e3d0409178
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e147
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e148 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0409878
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0409878
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [55]=0x55e3d0409878
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e148
< ok
> set innerHTML=long
< ok
domLink Div.0 name 
> instantiate gc$e149 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d040a2a8
< ok
> set class=OverflowSlideIn__Overflow-t0o2hv-0 gdomTm
< ok
> set last$class=OverflowSlideIn__Overflow-t0o2hv-0 gdomTm
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d040a2a8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [56]=0x55e3d040a2a8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e149
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e150 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cffd2f08
< ok
> set transform=translateX(-100%)
< ok
> set transitionProperty=transform
< ok
> set transitionDuration=500ms
< ok
> set transitionDelay=0ms
< ok
> set transitionTimingFunction=ease-in-out
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cffd2f08
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [57]=0x55e3cffd2f08
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e150
< ok
> set innerHTML=long
< ok
domLink Element.0 name 
> instantiate gc$e151 Element
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cffd3da8
< ok
> set class=Quote__QuoteText-sc-1ubt7du-4 hXYpnq
< ok
> set last$class=Quote__QuoteText-sc-1ubt7du-4 hXYpnq
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cffd3da8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=BLOCKQUOTE
< ok
> set tagName=BLOCKQUOTE
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e151
< ok
> set innerHTML=Digital
Catapult’s mission is to accelerate early adoption of advanced
digital technologies.
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
> instantiate gc$e152 TextNode
< ok
> set data=Digital Catapult’s mission is to accelerate early adoption of advanced digital technologies.
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e152
< ok
domLink Anchor.0 name 
> instantiate gc$e153 Anchor
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d00f30f8
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d00f30f8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get links
< 0x55e3d014b408
> get length
< ok
> set [1]=0x55e3d00f30f8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set href=https://www.digicatapult.org.uk/team/jeremy-silver/
resolve(|https://www.digicatapult.org.uk/team/jeremy-silver/)
= https://www.digicatapult.org.uk/team/jeremy-silver/
< ok
> set nodeName=A
< ok
> set tagName=A
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e153
< ok
> set innerHTML=<cite class="Quote__Author-sc-1ubt7du-3 krUWsi">Dr
Jeremy Silver</cite>
< ok
> has role
< false
> set role=link
< ok
> function markAttribute
< ok
> has tabindex
< false
> set tabindex=0
< ok
> function markAttribute
< ok
> has href
< true
> has href
< 5
> function markAttribute
< ok
domLink Element.0 name 
> instantiate gc$e154 Element
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d00f3b88
< ok
> set class=Quote__Author-sc-1ubt7du-3 krUWsi
< ok
> set last$class=Quote__Author-sc-1ubt7du-3 krUWsi
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d00f3b88
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=CITE
< ok
> set tagName=CITE
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e154
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
> instantiate gc$e155 TextNode
< ok
> set data=Dr Jeremy Silver
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e155
< ok
domLink P.0 name 
> instantiate gc$e156 P
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d00f4bb8
< ok
> set class=Quote__AuthorRole-sc-1ubt7du-2 dgRcAo
< ok
> set last$class=Quote__AuthorRole-sc-1ubt7du-2 dgRcAo
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d00f4bb8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get paragraphs
< 0x55e3d014bc58
> get length
< ok
> set [1]=0x55e3d00f4bb8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=P
< ok
> set tagName=P
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e156
< ok
> set innerHTML=CEO, Digital
Catapult
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
> instantiate gc$e157 TextNode
< ok
> set data=CEO, Digital Catapult
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e157
< ok
domLink Div.0 name 
> instantiate gc$e158 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d00764f8
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d00764f8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [58]=0x55e3d00764f8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e158
< ok
> set innerHTML=long
< ok
domLink Div.0 name 
> instantiate gc$e159 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0076c28
< ok
> set class=sc-bwzfXH liBCIH sc-bdVaJa iHZvIS
< ok
> set last$class=sc-bwzfXH liBCIH sc-bdVaJa iHZvIS
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0076c28
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [59]=0x55e3d0076c28
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e159
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e160 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d018a2e8
< ok
> set class=sc-bdVaJa gQPweM
< ok
> set last$class=sc-bdVaJa gQPweM
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d018a2e8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [60]=0x55e3d018a2e8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e160
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink HTMLElement.0 name 
> instantiate gc$e161 HTMLElement
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cfec0ef8
< ok
> set class=ContentCarousel__ContentCarouselEl-sc-1a3ddk1-0 jlGcWn
< ok
> set last$class=ContentCarousel__ContentCarouselEl-sc-1a3ddk1-0 jlGcWn
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cfec0ef8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=UNKNOWN0
< ok
> set tagName=UNKNOWN0
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e161
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e162 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cfec1d48
< ok
> set class=CustomCarousel__CustomCarouselWrapper-j259si-0 kduHWJ
< ok
> set last$class=CustomCarousel__CustomCarouselWrapper-j259si-0 kduHWJ
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cfec1d48
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [61]=0x55e3cfec1d48
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e162
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e163 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cfec2b38
< ok
> set class=CustomCarousel__ImageBox-j259si-1 kDyowv
< ok
> set last$class=CustomCarousel__ImageBox-j259si-1 kDyowv
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cfec2b38
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [62]=0x55e3cfec2b38
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e163
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e164 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d019de38
< ok
> set class=alice-carousel
< ok
> set last$class=alice-carousel
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d019de38
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [63]=0x55e3d019de38
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e164
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e165 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d019e768
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d019e768
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [64]=0x55e3d019e768
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e165
< ok
> set innerHTML=long
< ok
domLink Div.0 name 
> instantiate gc$e166 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d019f198
< ok
> set class=alice-carousel__wrapper
< ok
> set last$class=alice-carousel__wrapper
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d019f198
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [65]=0x55e3d019f198
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e166
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Lister.0 name 
> instantiate gc$e167 Lister
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d019f888
< ok
> set transition=transform 0ms ease-out
< ok
> set transform=translate3d(undefinedpx, 0, 0)
< ok
> set class=alice-carousel__stage
< ok
> set last$class=alice-carousel__stage
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d019f888
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=UL
< ok
> set tagName=UL
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e167
< ok
> set innerHTML=
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e168 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d01a0348
< ok
> set class=CustomCarousel__CarouselControlsWrapper-j259si-3 RrPmk
< ok
> set last$class=CustomCarousel__CarouselControlsWrapper-j259si-3 RrPmk
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d01a0348
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [66]=0x55e3d01a0348
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e168
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e169 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d00469b8
< ok
> set class=CustomCarousel__CarouselCounter-j259si-4 hswzFx
< ok
> set last$class=CustomCarousel__CarouselCounter-j259si-4 hswzFx
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d00469b8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [67]=0x55e3d00469b8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e169
< ok
> set innerHTML=1/5
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
> instantiate gc$e170 TextNode
< ok
> set data=1/5
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e170
< ok
domLink Element.0 name 
> instantiate gc$e171 Element
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0188f28
< ok
> set class=CustomCarousel__CarouselButton-j259si-5 gmKtiL
< ok
> set last$class=CustomCarousel__CarouselButton-j259si-5 gmKtiL
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0188f28
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set form=0x55e3cffa2468
< ok
> set nodeName=BUTTON
< ok
> set tagName=BUTTON
< ok
> set nodeType=1
< ok
> set value=
< ok
> set defaultValue=
< ok
> set type=submit
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e171
< ok
> set innerHTML=long
< ok
> has aria-label
< false
> set aria-label=go left
< ok
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink HTMLElement.0 name 
> instantiate gc$e172 HTMLElement
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0048ec8
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0048ec8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=UNKNOWN0
< ok
> set tagName=UNKNOWN0
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e172
< ok
> set innerHTML=<path d="M65.2 15.5l6.4 6.4-28.8 28.8 28.8 28.8-6.4 6.4L30 50.7z">
</path>

< ok
> has kind
< false
> set kind=LeftChevron
< ok
> function markAttribute
< ok
> has height
< false
> set height=32
< ok
> function markAttribute
< ok
> has width
< false
> set width=32
< ok
> function markAttribute
< ok
> has fill
< false
> set fill=#000
< ok
> function markAttribute
< ok
> has viewbox
< false
> set viewbox=0 0 100 100
< ok
> function markAttribute
< ok
domLink HTMLElement.0 name 
> instantiate gc$e173 HTMLElement
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d018d3a8
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d018d3a8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=UNKNOWN0
< ok
> set tagName=UNKNOWN0
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e173
< ok
> set innerHTML=
< ok
> has d
< false
> set d=M65.2 15.5l6.4 6.4-28.8 28.8 28.8 28.8-6.4 6.4L30 50.7z
< ok
> function markAttribute
< ok
domLink Element.0 name 
> instantiate gc$e174 Element
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d018d778
< ok
> set class=CustomCarousel__CarouselButton-j259si-5 gmKtiL
< ok
> set last$class=CustomCarousel__CarouselButton-j259si-5 gmKtiL
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d018d778
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set form=0x55e3cffa2468
< ok
> set nodeName=BUTTON
< ok
> set tagName=BUTTON
< ok
> set nodeType=1
< ok
> set value=
< ok
> set defaultValue=
< ok
> set type=submit
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e174
< ok
> set innerHTML=long
< ok
> has aria-label
< false
> set aria-label=go right
< ok
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink HTMLElement.0 name 
> instantiate gc$e175 HTMLElement
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d018e798
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d018e798
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=UNKNOWN0
< ok
> set tagName=UNKNOWN0
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e175
< ok
> set innerHTML=<path d=
"M40.2 85.9l-6.3-6.4 28.8-28.8-28.8-28.8 6.3-6.4 35.2 35.2z">
</path>

< ok
> has kind
< false
> set kind=RightChevron
< ok
> function markAttribute
< ok
> has height
< false
> set height=32
< ok
> function markAttribute
< ok
> has width
< false
> set width=32
< ok
> function markAttribute
< ok
> has fill
< false
> set fill=#000
< ok
> function markAttribute
< ok
> has viewbox
< false
> set viewbox=0 0 100 100
< ok
> function markAttribute
< ok
domLink HTMLElement.0 name 
> instantiate gc$e176 HTMLElement
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d018f4c8
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d018f4c8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=UNKNOWN0
< ok
> set tagName=UNKNOWN0
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e176
< ok
> set innerHTML=
< ok
> has d
< false
> set d=M40.2 85.9l-6.3-6.4 28.8-28.8-28.8-28.8 6.3-6.4 35.2 35.2z
< ok
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e177 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d018f898
< ok
> set class=CustomCarousel__TextBox-j259si-2 ejweiH
< ok
> set last$class=CustomCarousel__TextBox-j259si-2 ejweiH
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d018f898
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [68]=0x55e3d018f898
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e177
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e178 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d03ce838
< ok
> set class=alice-carousel
< ok
> set last$class=alice-carousel
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d03ce838
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [69]=0x55e3d03ce838
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e178
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e179 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d03ceef8
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d03ceef8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [70]=0x55e3d03ceef8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e179
< ok
> set innerHTML=long
< ok
domLink Div.0 name 
> instantiate gc$e180 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d03cf928
< ok
> set class=alice-carousel__wrapper
< ok
> set last$class=alice-carousel__wrapper
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d03cf928
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [71]=0x55e3d03cf928
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e180
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Lister.0 name 
> instantiate gc$e181 Lister
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d03cffc8
< ok
> set transition=transform 0ms ease-out
< ok
> set transform=translate3d(undefinedpx, 0, 0)
< ok
> set class=alice-carousel__stage
< ok
> set last$class=alice-carousel__stage
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d03cffc8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=UL
< ok
> set tagName=UL
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e181
< ok
> set innerHTML=
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e182 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d03d0958
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d03d0958
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [72]=0x55e3d03d0958
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e182
< ok
> set innerHTML=long
< ok
domLink Div.0 name 
> instantiate gc$e183 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d058e368
< ok
> set class=sc-bwzfXH liBCIH sc-bdVaJa iHZvIS
< ok
> set last$class=sc-bwzfXH liBCIH sc-bdVaJa iHZvIS
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d058e368
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [73]=0x55e3d058e368
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e183
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e184 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d018f0e8
< ok
> set class=sc-bdVaJa gQPweM
< ok
> set last$class=sc-bdVaJa gQPweM
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d018f0e8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [74]=0x55e3d018f0e8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e184
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink HTMLElement.0 name 
> instantiate gc$e185 HTMLElement
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d00472c8
< ok
> set class=ContentCarousel__ContentCarouselEl-sc-1a3ddk1-0 jlGcWn
< ok
> set last$class=ContentCarousel__ContentCarouselEl-sc-1a3ddk1-0 jlGcWn
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d00472c8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=UNKNOWN0
< ok
> set tagName=UNKNOWN0
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e185
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e186 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d00481d8
< ok
> set class=CustomCarousel__CustomCarouselWrapper-j259si-0 kduHWJ
< ok
> set last$class=CustomCarousel__CustomCarouselWrapper-j259si-0 kduHWJ
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d00481d8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [75]=0x55e3d00481d8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e186
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e187 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d03d4668
< ok
> set class=CustomCarousel__ImageBox-j259si-1 dDQSwU
< ok
> set last$class=CustomCarousel__ImageBox-j259si-1 dDQSwU
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d03d4668
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [76]=0x55e3d03d4668
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e187
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e188 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0228bf8
< ok
> set class=alice-carousel
< ok
> set last$class=alice-carousel
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0228bf8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [77]=0x55e3d0228bf8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e188
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e189 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0229528
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0229528
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [78]=0x55e3d0229528
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e189
< ok
> set innerHTML=long
< ok
domLink Div.0 name 
> instantiate gc$e190 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0229f58
< ok
> set class=alice-carousel__wrapper
< ok
> set last$class=alice-carousel__wrapper
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0229f58
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [79]=0x55e3d0229f58
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e190
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Lister.0 name 
> instantiate gc$e191 Lister
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d022a5f8
< ok
> set transition=transform 0ms ease-out
< ok
> set transform=translate3d(undefinedpx, 0, 0)
< ok
> set class=alice-carousel__stage
< ok
> set last$class=alice-carousel__stage
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d022a5f8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=UL
< ok
> set tagName=UL
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e191
< ok
> set innerHTML=
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e192 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d022af88
< ok
> set class=CustomCarousel__CarouselControlsWrapper-j259si-3 yfIEc
< ok
> set last$class=CustomCarousel__CarouselControlsWrapper-j259si-3 yfIEc
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d022af88
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [80]=0x55e3d022af88
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e192
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e193 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d029ad58
< ok
> set class=CustomCarousel__CarouselCounter-j259si-4 gYWdPx
< ok
> set last$class=CustomCarousel__CarouselCounter-j259si-4 gYWdPx
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d029ad58
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [81]=0x55e3d029ad58
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e193
< ok
> set innerHTML=1/3
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
> instantiate gc$e194 TextNode
< ok
> set data=1/3
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e194
< ok
domLink Element.0 name 
> instantiate gc$e195 Element
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d029bec8
< ok
> set class=CustomCarousel__CarouselButton-j259si-5 gmKtiL
< ok
> set last$class=CustomCarousel__CarouselButton-j259si-5 gmKtiL
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d029bec8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set form=0x55e3cffa2468
< ok
> set nodeName=BUTTON
< ok
> set tagName=BUTTON
< ok
> set nodeType=1
< ok
> set value=
< ok
> set defaultValue=
< ok
> set type=submit
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e195
< ok
> set innerHTML=long
< ok
> has aria-label
< false
> set aria-label=go left
< ok
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink HTMLElement.0 name 
> instantiate gc$e196 HTMLElement
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d029d238
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d029d238
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=UNKNOWN0
< ok
> set tagName=UNKNOWN0
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e196
< ok
> set innerHTML=<path d="M65.2 15.5l6.4 6.4-28.8 28.8 28.8 28.8-6.4 6.4L30 50.7z">
</path>

< ok
> has kind
< false
> set kind=LeftChevron
< ok
> function markAttribute
< ok
> has height
< false
> set height=32
< ok
> function markAttribute
< ok
> has width
< false
> set width=32
< ok
> function markAttribute
< ok
> has fill
< false
> set fill=#000
< ok
> function markAttribute
< ok
> has viewbox
< false
> set viewbox=0 0 100 100
< ok
> function markAttribute
< ok
domLink HTMLElement.0 name 
> instantiate gc$e197 HTMLElement
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d029dee8
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d029dee8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=UNKNOWN0
< ok
> set tagName=UNKNOWN0
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e197
< ok
> set innerHTML=
< ok
> has d
< false
> set d=M65.2 15.5l6.4 6.4-28.8 28.8 28.8 28.8-6.4 6.4L30 50.7z
< ok
> function markAttribute
< ok
domLink Element.0 name 
> instantiate gc$e198 Element
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d029e2b8
< ok
> set class=CustomCarousel__CarouselButton-j259si-5 gmKtiL
< ok
> set last$class=CustomCarousel__CarouselButton-j259si-5 gmKtiL
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d029e2b8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set form=0x55e3cffa2468
< ok
> set nodeName=BUTTON
< ok
> set tagName=BUTTON
< ok
> set nodeType=1
< ok
> set value=
< ok
> set defaultValue=
< ok
> set type=submit
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e198
< ok
> set innerHTML=long
< ok
> has aria-label
< false
> set aria-label=go right
< ok
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink HTMLElement.0 name 
> instantiate gc$e199 HTMLElement
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d017f848
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d017f848
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=UNKNOWN0
< ok
> set tagName=UNKNOWN0
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e199
< ok
> set innerHTML=<path d=
"M40.2 85.9l-6.3-6.4 28.8-28.8-28.8-28.8 6.3-6.4 35.2 35.2z">
</path>

< ok
> has kind
< false
> set kind=RightChevron
< ok
> function markAttribute
< ok
> has height
< false
> set height=32
< ok
> function markAttribute
< ok
> has width
< false
> set width=32
< ok
> function markAttribute
< ok
> has fill
< false
> set fill=#000
< ok
> function markAttribute
< ok
> has viewbox
< false
> set viewbox=0 0 100 100
< ok
> function markAttribute
< ok
domLink HTMLElement.0 name 
> instantiate gc$e200 HTMLElement
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d03d3258
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d03d3258
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=UNKNOWN0
< ok
> set tagName=UNKNOWN0
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e200
< ok
> set innerHTML=
< ok
> has d
< false
> set d=M40.2 85.9l-6.3-6.4 28.8-28.8-28.8-28.8 6.3-6.4 35.2 35.2z
< ok
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e201 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d03d3628
< ok
> set class=CustomCarousel__TextBox-j259si-2 ejweiH
< ok
> set last$class=CustomCarousel__TextBox-j259si-2 ejweiH
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d03d3628
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [82]=0x55e3d03d3628
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e201
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e202 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0181088
< ok
> set class=alice-carousel
< ok
> set last$class=alice-carousel
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0181088
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [83]=0x55e3d0181088
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e202
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e203 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d01816b8
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d01816b8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [84]=0x55e3d01816b8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e203
< ok
> set innerHTML=long
< ok
domLink Div.0 name 
> instantiate gc$e204 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cff92888
< ok
> set class=alice-carousel__wrapper
< ok
> set last$class=alice-carousel__wrapper
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cff92888
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [85]=0x55e3cff92888
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e204
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Lister.0 name 
> instantiate gc$e205 Lister
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cff92fd8
< ok
> set transition=transform 0ms ease-out
< ok
> set transform=translate3d(undefinedpx, 0, 0)
< ok
> set class=alice-carousel__stage
< ok
> set last$class=alice-carousel__stage
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cff92fd8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=UL
< ok
> set tagName=UL
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e205
< ok
> set innerHTML=
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e206 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cff93968
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cff93968
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [86]=0x55e3cff93968
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e206
< ok
> set innerHTML=long
< ok
domLink Div.0 name 
> instantiate gc$e207 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cff943e8
< ok
> set class=sc-bwzfXH liBCIH sc-bdVaJa iHZvIS
< ok
> set last$class=sc-bwzfXH liBCIH sc-bdVaJa iHZvIS
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cff943e8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [87]=0x55e3cff943e8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e207
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e208 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d029d1a8
< ok
> set class=sc-bdVaJa gQPweM
< ok
> set last$class=sc-bdVaJa gQPweM
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d029d1a8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [88]=0x55e3d029d1a8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e208
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink HTMLElement.0 name 
> instantiate gc$e209 HTMLElement
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cff95ce8
< ok
> set class=ContentCarousel__ContentCarouselEl-sc-1a3ddk1-0 jlGcWn
< ok
> set last$class=ContentCarousel__ContentCarouselEl-sc-1a3ddk1-0 jlGcWn
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cff95ce8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=UNKNOWN0
< ok
> set tagName=UNKNOWN0
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e209
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e210 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0397ef8
< ok
> set class=CustomCarousel__CustomCarouselWrapper-j259si-0 kduHWJ
< ok
> set last$class=CustomCarousel__CustomCarouselWrapper-j259si-0 kduHWJ
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0397ef8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [89]=0x55e3d0397ef8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e210
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e211 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0398ce8
< ok
> set class=CustomCarousel__ImageBox-j259si-1 kDyowv
< ok
> set last$class=CustomCarousel__ImageBox-j259si-1 kDyowv
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0398ce8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [90]=0x55e3d0398ce8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e211
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e212 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0399a98
< ok
> set class=alice-carousel
< ok
> set last$class=alice-carousel
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0399a98
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [91]=0x55e3d0399a98
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e212
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e213 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d039a3c8
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d039a3c8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [92]=0x55e3d039a3c8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e213
< ok
> set innerHTML=long
< ok
domLink Div.0 name 
> instantiate gc$e214 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d039adf8
< ok
> set class=alice-carousel__wrapper
< ok
> set last$class=alice-carousel__wrapper
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d039adf8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [93]=0x55e3d039adf8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e214
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Lister.0 name 
> instantiate gc$e215 Lister
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d039b028
< ok
> set transition=transform 0ms ease-out
< ok
> set transform=translate3d(undefinedpx, 0, 0)
< ok
> set class=alice-carousel__stage
< ok
> set last$class=alice-carousel__stage
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d039b028
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=UL
< ok
> set tagName=UL
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e215
< ok
> set innerHTML=
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e216 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0180368
< ok
> set class=CustomCarousel__CarouselControlsWrapper-j259si-3 RrPmk
< ok
> set last$class=CustomCarousel__CarouselControlsWrapper-j259si-3 RrPmk
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0180368
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [94]=0x55e3d0180368
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e216
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e217 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d01a1f68
< ok
> set class=CustomCarousel__CarouselCounter-j259si-4 hswzFx
< ok
> set last$class=CustomCarousel__CarouselCounter-j259si-4 hswzFx
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d01a1f68
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [95]=0x55e3d01a1f68
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e217
< ok
> set innerHTML=1/4
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
> instantiate gc$e218 TextNode
< ok
> set data=1/4
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e218
< ok
domLink Element.0 name 
> instantiate gc$e219 Element
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d01a30d8
< ok
> set class=CustomCarousel__CarouselButton-j259si-5 gmKtiL
< ok
> set last$class=CustomCarousel__CarouselButton-j259si-5 gmKtiL
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d01a30d8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set form=0x55e3cffa2468
< ok
> set nodeName=BUTTON
< ok
> set tagName=BUTTON
< ok
> set nodeType=1
< ok
> set value=
< ok
> set defaultValue=
< ok
> set type=submit
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e219
< ok
> set innerHTML=long
< ok
> has aria-label
< false
> set aria-label=go left
< ok
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink HTMLElement.0 name 
> instantiate gc$e220 HTMLElement
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d05da248
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d05da248
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=UNKNOWN0
< ok
> set tagName=UNKNOWN0
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e220
< ok
> set innerHTML=<path d="M65.2 15.5l6.4 6.4-28.8 28.8 28.8 28.8-6.4 6.4L30 50.7z">
</path>

< ok
> has kind
< false
> set kind=LeftChevron
< ok
> function markAttribute
< ok
> has height
< false
> set height=32
< ok
> function markAttribute
< ok
> has width
< false
> set width=32
< ok
> function markAttribute
< ok
> has fill
< false
> set fill=#000
< ok
> function markAttribute
< ok
> has viewbox
< false
> set viewbox=0 0 100 100
< ok
> function markAttribute
< ok
domLink HTMLElement.0 name 
> instantiate gc$e221 HTMLElement
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d05db288
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d05db288
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=UNKNOWN0
< ok
> set tagName=UNKNOWN0
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e221
< ok
> set innerHTML=
< ok
> has d
< false
> set d=M65.2 15.5l6.4 6.4-28.8 28.8 28.8 28.8-6.4 6.4L30 50.7z
< ok
> function markAttribute
< ok
domLink Element.0 name 
> instantiate gc$e222 Element
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d05db658
< ok
> set class=CustomCarousel__CarouselButton-j259si-5 gmKtiL
< ok
> set last$class=CustomCarousel__CarouselButton-j259si-5 gmKtiL
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d05db658
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set form=0x55e3cffa2468
< ok
> set nodeName=BUTTON
< ok
> set tagName=BUTTON
< ok
> set nodeType=1
< ok
> set value=
< ok
> set defaultValue=
< ok
> set type=submit
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e222
< ok
> set innerHTML=long
< ok
> has aria-label
< false
> set aria-label=go right
< ok
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink HTMLElement.0 name 
> instantiate gc$e223 HTMLElement
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d05dca08
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d05dca08
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=UNKNOWN0
< ok
> set tagName=UNKNOWN0
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e223
< ok
> set innerHTML=<path d=
"M40.2 85.9l-6.3-6.4 28.8-28.8-28.8-28.8 6.3-6.4 35.2 35.2z">
</path>

< ok
> has kind
< false
> set kind=RightChevron
< ok
> function markAttribute
< ok
> has height
< false
> set height=32
< ok
> function markAttribute
< ok
> has width
< false
> set width=32
< ok
> function markAttribute
< ok
> has fill
< false
> set fill=#000
< ok
> function markAttribute
< ok
> has viewbox
< false
> set viewbox=0 0 100 100
< ok
> function markAttribute
< ok
domLink HTMLElement.0 name 
> instantiate gc$e224 HTMLElement
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d05dda48
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d05dda48
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=UNKNOWN0
< ok
> set tagName=UNKNOWN0
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e224
< ok
> set innerHTML=
< ok
> has d
< false
> set d=M40.2 85.9l-6.3-6.4 28.8-28.8-28.8-28.8 6.3-6.4 35.2 35.2z
< ok
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e225 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d00f5788
< ok
> set class=CustomCarousel__TextBox-j259si-2 ejweiH
< ok
> set last$class=CustomCarousel__TextBox-j259si-2 ejweiH
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d00f5788
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [96]=0x55e3d00f5788
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e225
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e226 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d00f5fe8
< ok
> set class=alice-carousel
< ok
> set last$class=alice-carousel
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d00f5fe8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [97]=0x55e3d00f5fe8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e226
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e227 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d00f66a8
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d00f66a8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [98]=0x55e3d00f66a8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e227
< ok
> set innerHTML=long
< ok
domLink Div.0 name 
> instantiate gc$e228 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d00f70d8
< ok
> set class=alice-carousel__wrapper
< ok
> set last$class=alice-carousel__wrapper
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d00f70d8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [99]=0x55e3d00f70d8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e228
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Lister.0 name 
> instantiate gc$e229 Lister
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d00f6bc8
< ok
> set transition=transform 0ms ease-out
< ok
> set transform=translate3d(undefinedpx, 0, 0)
< ok
> set class=alice-carousel__stage
< ok
> set last$class=alice-carousel__stage
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d00f6bc8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=UL
< ok
> set tagName=UL
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e229
< ok
> set innerHTML=
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink HTMLElement.0 name 
> instantiate gc$e230 HTMLElement
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d05dad08
< ok
> set class=SalesforceForm__FormContainer-n4o3c4-4 bXNkCx
< ok
> set last$class=SalesforceForm__FormContainer-n4o3c4-4 bXNkCx
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d05dad08
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=UNKNOWN0
< ok
> set tagName=UNKNOWN0
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e230
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Form.0 name 
> instantiate gc$e231 Form
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d01808d8
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d01808d8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get forms
< 0x55e3d014b548
> get length
< ok
> set [0]=0x55e3d01808d8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=FORM
< ok
> set tagName=FORM
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e231
< ok
> set innerHTML=long
< ok
domLink Div.0 name 
> instantiate gc$e232 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d01a1658
< ok
> set class=SalesforceForm__Top-n4o3c4-5 dsJzKI
< ok
> set last$class=SalesforceForm__Top-n4o3c4-5 dsJzKI
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d01a1658
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [100]=0x55e3d01a1658
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e232
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e233 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d02d0448
< ok
> set class=SalesforceForm__Heading-n4o3c4-6 hTbjbR
< ok
> set last$class=SalesforceForm__Heading-n4o3c4-6 hTbjbR
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d02d0448
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [101]=0x55e3d02d0448
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e233
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Element.0 name 
> instantiate gc$e234 Element
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d02d0a88
< ok
> set class=SalesforceForm__Title-n4o3c4-9 gZCvEB
< ok
> set last$class=SalesforceForm__Title-n4o3c4-9 gZCvEB
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d02d0a88
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=H2
< ok
> set tagName=H2
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e234
< ok
> set innerHTML=Don’t miss
out
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
> instantiate gc$e235 TextNode
< ok
> set data=Don’t miss out
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e235
< ok
domLink P.0 name 
> instantiate gc$e236 P
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d029ede8
< ok
> set class=SalesforceForm__Description-n4o3c4-10 erCrZX
< ok
> set last$class=SalesforceForm__Description-n4o3c4-10 erCrZX
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d029ede8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get paragraphs
< 0x55e3d014bc58
> get length
< ok
> set [2]=0x55e3d029ede8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=P
< ok
> set tagName=P
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e236
< ok
> set innerHTML=Sign up to
our monthly newsletter for all the latest activities across Digital
Catapult
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
> instantiate gc$e237 TextNode
< ok
> set data=Sign up to our monthly newsletter for all the latest activities across Digital Catapult
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e237
< ok
domLink Div.0 name 
> instantiate gc$e238 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d029f948
< ok
> set class=SalesforceForm__Fieldset-n4o3c4-11 jrKzYk
< ok
> set last$class=SalesforceForm__Fieldset-n4o3c4-11 jrKzYk
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d029f948
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [102]=0x55e3d029f948
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e238
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e239 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d02a00f8
< ok
> set class=SalesforceForm__DCField-n4o3c4-12 eRnCKi
< ok
> set last$class=SalesforceForm__DCField-n4o3c4-12 eRnCKi
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d02a00f8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [103]=0x55e3d02a00f8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e239
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Label.0 name 
> instantiate gc$e240 Label
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d02a19f8
< ok
> set class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> set last$class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d02a19f8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get labels
< 0x55e3d014b638
> get length
< ok
> set [0]=0x55e3d02a19f8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=LABEL
< ok
> set tagName=LABEL
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e240
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e241 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d02a2388
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d02a2388
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [104]=0x55e3d02a2388
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e241
< ok
> set innerHTML=<label class="elements__Label-sc-1nn2de2-1 gOmppy">First
Name</label>
< ok
domLink Label.0 name 
> instantiate gc$e242 Label
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cff9b968
< ok
> set class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> set last$class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cff9b968
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get labels
< 0x55e3d014b638
> get length
< ok
> set [1]=0x55e3cff9b968
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=LABEL
< ok
> set tagName=LABEL
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e242
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
> instantiate gc$e243 TextNode
< ok
> set data=First Name
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e243
< ok
domLink Label.0 name 
> instantiate gc$e244 Label
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cff9c578
< ok
> set class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> set last$class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cff9c578
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get labels
< 0x55e3d014b638
> get length
< ok
> set [2]=0x55e3cff9c578
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=LABEL
< ok
> set tagName=LABEL
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e244
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Element.0 name first_name
> has first_name
< 0
> has first_name
< false
> instantiate first_name Element
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d00f7ec8
< ok
> set class=elements__Input-sc-1nn2de2-2 grFHop
< ok
> set last$class=elements__Input-sc-1nn2de2-2 grFHop
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d00f7ec8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get elements
< 0x55e3d01a1108
> get length
< ok
> set [0]=0x55e3d00f7ec8
< ok
> has first_name
< false
> set first_name=0x55e3d00f7ec8
< ok
> set name=first_name
< ok
> set id=
< ok
> set last$id=
< ok
> set form=0x55e3d01808d8
< ok
> set nodeName=INPUT
< ok
> set tagName=INPUT
< ok
> set nodeType=1
< ok
> set value=
< ok
> set defaultValue=
< ok
> set type=text
< ok
> function eb$apch1
append 1
append 2
< ok
> has type
< true
> has type
< 1
> function markAttribute
< ok
> has autocomplete
< false
> set autocomplete=given-name
< ok
> function markAttribute
< ok
> has maxlength
< false
> set maxlength=80
< ok
> function markAttribute
< ok
> has name
< true
> has name
< 1
> function markAttribute
< ok
> has value
< true
> has value
< 1
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e245 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cff9ec48
< ok
> set class=SalesforceForm__DCField-n4o3c4-12 eRnCKi
< ok
> set last$class=SalesforceForm__DCField-n4o3c4-12 eRnCKi
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cff9ec48
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [105]=0x55e3cff9ec48
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e245
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Label.0 name 
> instantiate gc$e246 Label
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cff9f018
< ok
> set class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> set last$class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cff9f018
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get labels
< 0x55e3d014b638
> get length
< ok
> set [3]=0x55e3cff9f018
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=LABEL
< ok
> set tagName=LABEL
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e246
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e247 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0314e48
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0314e48
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [106]=0x55e3d0314e48
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e247
< ok
> set innerHTML=<label class="elements__Label-sc-1nn2de2-1 gOmppy">Last
Name</label>
< ok
domLink Label.0 name 
> instantiate gc$e248 Label
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d03157b8
< ok
> set class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> set last$class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d03157b8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get labels
< 0x55e3d014b638
> get length
< ok
> set [4]=0x55e3d03157b8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=LABEL
< ok
> set tagName=LABEL
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e248
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
> instantiate gc$e249 TextNode
< ok
> set data=Last Name
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e249
< ok
domLink Label.0 name 
> instantiate gc$e250 Label
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0315fd8
< ok
> set class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> set last$class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0315fd8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get labels
< 0x55e3d014b638
> get length
< ok
> set [5]=0x55e3d0315fd8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=LABEL
< ok
> set tagName=LABEL
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e250
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Element.0 name last_name
> has last_name
< 0
> has last_name
< false
> instantiate last_name Element
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0316b28
< ok
> set class=elements__Input-sc-1nn2de2-2 grFHop
< ok
> set last$class=elements__Input-sc-1nn2de2-2 grFHop
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0316b28
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get elements
< 0x55e3d01a1108
> get length
< ok
> set [1]=0x55e3d0316b28
< ok
> has last_name
< false
> set last_name=0x55e3d0316b28
< ok
> set name=last_name
< ok
> set id=
< ok
> set last$id=
< ok
> set form=0x55e3d01808d8
< ok
> set nodeName=INPUT
< ok
> set tagName=INPUT
< ok
> set nodeType=1
< ok
> set value=
< ok
> set defaultValue=
< ok
> set type=text
< ok
> function eb$apch1
append 1
append 2
< ok
> has type
< true
> has type
< 1
> function markAttribute
< ok
> has autocomplete
< false
> set autocomplete=family-name
< ok
> function markAttribute
< ok
> has maxlength
< false
> set maxlength=80
< ok
> function markAttribute
< ok
> has name
< true
> has name
< 1
> function markAttribute
< ok
> has value
< true
> has value
< 1
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e251 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0318568
< ok
> set class=SalesforceForm__DCField-n4o3c4-12 eRnCKi
< ok
> set last$class=SalesforceForm__DCField-n4o3c4-12 eRnCKi
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0318568
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [107]=0x55e3d0318568
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e251
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Label.0 name 
> instantiate gc$e252 Label
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0318938
< ok
> set class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> set last$class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0318938
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get labels
< 0x55e3d014b638
> get length
< ok
> set [6]=0x55e3d0318938
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=LABEL
< ok
> set tagName=LABEL
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e252
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e253 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d03ecdf8
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d03ecdf8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [108]=0x55e3d03ecdf8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e253
< ok
> set innerHTML=<label class=
"elements__Label-sc-1nn2de2-1 gOmppy">Email</label>
< ok
domLink Label.0 name 
> instantiate gc$e254 Label
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d03ed768
< ok
> set class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> set last$class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d03ed768
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get labels
< 0x55e3d014b638
> get length
< ok
> set [7]=0x55e3d03ed768
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=LABEL
< ok
> set tagName=LABEL
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e254
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
> instantiate gc$e255 TextNode
< ok
> set data=Email
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e255
< ok
domLink Label.0 name 
> instantiate gc$e256 Label
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d03ee378
< ok
> set class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> set last$class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d03ee378
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get labels
< 0x55e3d014b638
> get length
< ok
> set [8]=0x55e3d03ee378
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=LABEL
< ok
> set tagName=LABEL
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e256
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Element.0 name email
> has email
< 0
> has email
< false
> instantiate email Element
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d03eeb28
< ok
> set class=elements__Input-sc-1nn2de2-2 grFHop
< ok
> set last$class=elements__Input-sc-1nn2de2-2 grFHop
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d03eeb28
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get elements
< 0x55e3d01a1108
> get length
< ok
> set [2]=0x55e3d03eeb28
< ok
> has email
< false
> set email=0x55e3d03eeb28
< ok
> set name=email
< ok
> set id=
< ok
> set last$id=
< ok
> set form=0x55e3d01808d8
< ok
> set nodeName=INPUT
< ok
> set tagName=INPUT
< ok
> set nodeType=1
< ok
> set value=
< ok
> set defaultValue=
< ok
> set type=text
< ok
> function eb$apch1
append 1
append 2
< ok
> has type
< true
> has type
< 1
> function markAttribute
< ok
> has autocomplete
< false
> set autocomplete=email
< ok
> function markAttribute
< ok
> has maxlength
< false
> set maxlength=80
< ok
> function markAttribute
< ok
> has name
< true
> has name
< 1
> function markAttribute
< ok
> has value
< true
> has value
< 1
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e257 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d03f0628
< ok
> set class=SalesforceForm__DCField-n4o3c4-12 eRnCKi
< ok
> set last$class=SalesforceForm__DCField-n4o3c4-12 eRnCKi
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d03f0628
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [109]=0x55e3d03f0628
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e257
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Label.0 name 
> instantiate gc$e258 Label
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d03f09f8
< ok
> set class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> set last$class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d03f09f8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get labels
< 0x55e3d014b638
> get length
< ok
> set [9]=0x55e3d03f09f8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=LABEL
< ok
> set tagName=LABEL
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e258
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e259 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cff83258
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cff83258
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [110]=0x55e3cff83258
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e259
< ok
> set innerHTML=<label class=
"elements__Label-sc-1nn2de2-1 gOmppy">Role</label>
< ok
domLink Label.0 name 
> instantiate gc$e260 Label
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d03ee2e8
< ok
> set class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> set last$class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d03ee2e8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get labels
< 0x55e3d014b638
> get length
< ok
> set [10]=0x55e3d03ee2e8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=LABEL
< ok
> set tagName=LABEL
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e260
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
> instantiate gc$e261 TextNode
< ok
> set data=Role
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e261
< ok
domLink Label.0 name 
> instantiate gc$e262 Label
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cff9d758
< ok
> set class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> set last$class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cff9d758
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get labels
< 0x55e3d014b638
> get length
< ok
> set [11]=0x55e3cff9d758
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=LABEL
< ok
> set tagName=LABEL
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e262
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Element.0 name title
> has title
< 0
> has title
< false
> instantiate title Element
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cff84bc8
< ok
> set class=elements__Input-sc-1nn2de2-2 grFHop
< ok
> set last$class=elements__Input-sc-1nn2de2-2 grFHop
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cff84bc8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get elements
< 0x55e3d01a1108
> get length
< ok
> set [3]=0x55e3cff84bc8
< ok
> has title
< false
> set title=0x55e3cff84bc8
< ok
> set name=title
< ok
> set id=
< ok
> set last$id=
< ok
> set form=0x55e3d01808d8
< ok
> set nodeName=INPUT
< ok
> set tagName=INPUT
< ok
> set nodeType=1
< ok
> set value=
< ok
> set defaultValue=
< ok
> set type=text
< ok
> function eb$apch1
append 1
append 2
< ok
> has type
< true
> has type
< 1
> function markAttribute
< ok
> has autocomplete
< false
> set autocomplete=off
< ok
> function markAttribute
< ok
> has maxlength
< false
> set maxlength=80
< ok
> function markAttribute
< ok
> has name
< true
> has name
< 1
> function markAttribute
< ok
> has value
< true
> has value
< 1
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e263 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cff865a8
< ok
> set class=SalesforceForm__DCField-n4o3c4-12 eRnCKi
< ok
> set last$class=SalesforceForm__DCField-n4o3c4-12 eRnCKi
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cff865a8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [111]=0x55e3cff865a8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e263
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Label.0 name 
> instantiate gc$e264 Label
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cff86978
< ok
> set class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> set last$class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cff86978
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get labels
< 0x55e3d014b638
> get length
< ok
> set [12]=0x55e3cff86978
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=LABEL
< ok
> set tagName=LABEL
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e264
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e265 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cff870f8
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cff870f8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [112]=0x55e3cff870f8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e265
< ok
> set innerHTML=<label class=
"elements__Label-sc-1nn2de2-1 gOmppy">Company</label>
< ok
domLink Label.0 name 
> instantiate gc$e266 Label
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d051c018
< ok
> set class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> set last$class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d051c018
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get labels
< 0x55e3d014b638
> get length
< ok
> set [13]=0x55e3d051c018
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=LABEL
< ok
> set tagName=LABEL
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e266
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
> instantiate gc$e267 TextNode
< ok
> set data=Company
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e267
< ok
domLink Label.0 name 
> instantiate gc$e268 Label
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d051cb88
< ok
> set class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> set last$class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d051cb88
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get labels
< 0x55e3d014b638
> get length
< ok
> set [14]=0x55e3d051cb88
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=LABEL
< ok
> set tagName=LABEL
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e268
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Element.0 name company
> has company
< 0
> has company
< false
> instantiate company Element
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d051d338
< ok
> set class=elements__Input-sc-1nn2de2-2 grFHop
< ok
> set last$class=elements__Input-sc-1nn2de2-2 grFHop
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d051d338
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get elements
< 0x55e3d01a1108
> get length
< ok
> set [4]=0x55e3d051d338
< ok
> has company
< false
> set company=0x55e3d051d338
< ok
> set name=company
< ok
> set id=
< ok
> set last$id=
< ok
> set form=0x55e3d01808d8
< ok
> set nodeName=INPUT
< ok
> set tagName=INPUT
< ok
> set nodeType=1
< ok
> set value=
< ok
> set defaultValue=
< ok
> set type=text
< ok
> function eb$apch1
append 1
append 2
< ok
> has type
< true
> has type
< 1
> function markAttribute
< ok
> has autocomplete
< false
> set autocomplete=organization
< ok
> function markAttribute
< ok
> has maxlength
< false
> set maxlength=80
< ok
> function markAttribute
< ok
> has name
< true
> has name
< 1
> function markAttribute
< ok
> has value
< true
> has value
< 1
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e269 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d051e988
< ok
> set class=SalesforceForm__DCField-n4o3c4-12 eRnCKi
< ok
> set last$class=SalesforceForm__DCField-n4o3c4-12 eRnCKi
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d051e988
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [113]=0x55e3d051e988
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e269
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Label.0 name 
> instantiate gc$e270 Label
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d051ed58
< ok
> set class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> set last$class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d051ed58
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get labels
< 0x55e3d014b638
> get length
< ok
> set [15]=0x55e3d051ed58
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=LABEL
< ok
> set tagName=LABEL
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e270
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e271 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d051f528
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d051f528
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [114]=0x55e3d051f528
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e271
< ok
> set innerHTML=<label class=
"elements__Label-sc-1nn2de2-1 gOmppy">Organisation
Type</label>
< ok
domLink Label.0 name 
> instantiate gc$e272 Label
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d051fe08
< ok
> set class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> set last$class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d051fe08
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get labels
< 0x55e3d014b638
> get length
< ok
> set [16]=0x55e3d051fe08
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=LABEL
< ok
> set tagName=LABEL
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e272
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
> instantiate gc$e273 TextNode
< ok
> set data=Organisation Type
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e273
< ok
domLink Label.0 name 
> instantiate gc$e274 Label
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d035c478
< ok
> set class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> set last$class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d035c478
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get labels
< 0x55e3d014b638
> get length
< ok
> set [17]=0x55e3d035c478
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=LABEL
< ok
> set tagName=LABEL
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e274
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Select.0 name 00N0X00000DUulx
> has 00N0X00000DUulx
< 0
> has 00N0X00000DUulx
< false
> instantiate 00N0X00000DUulx Select
< ok
> new array childNodes
< ok
> set options=0x55e3cff84188
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cff9e818
< ok
> set class=elements__Select-sc-1nn2de2-3 gRTVgP
< ok
> set last$class=elements__Select-sc-1nn2de2-3 gRTVgP
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cff9e818
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get elements
< 0x55e3d01a1108
> get length
< ok
> set [5]=0x55e3cff9e818
< ok
> has 00N0X00000DUulx
< false
> set 00N0X00000DUulx=0x55e3cff9e818
< ok
> set name=00N0X00000DUulx
< ok
> set id=
< ok
> set last$id=
< ok
> set form=0x55e3d01808d8
< ok
> set nodeName=SELECT
< ok
> set tagName=SELECT
< ok
> set nodeType=1
< ok
> set type=select-one
< ok
> function eb$apch1
append 1
append 2
< ok
> has name
< true
> has name
< 1
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
> get options
< 0x55e3cff84188
> set [0]=Option
< ok
> set parentNode=0x55e3cff84188
< ok
> get form
< 0x55e3d01808d8
> set form=0x55e3d01808d8
< ok
> new array childNodes
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d035db68
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d035db68
< ok
> set text=Please select...
< ok
> set value=
< ok
> set nodeName=OPTION
< ok
> set nodeType=1
< ok
> set selected=true
< ok
> set defaultSelected=true
< ok
> set class=
< ok
> set last$class=
< ok
> set selectedIndex=0
< ok
> instantiate gc$e275 TextNode
< ok
> set data=Please select...
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e275
< ok
> get options
< 0x55e3cff84188
> set [1]=Option
< ok
> set parentNode=0x55e3cff84188
< ok
> get form
< 0x55e3d01808d8
> set form=0x55e3d01808d8
< ok
> new array childNodes
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d035e0b8
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d035e0b8
< ok
> set text=Startup
< ok
> set value=Startup
< ok
> set nodeName=OPTION
< ok
> set nodeType=1
< ok
> set selected=false
< ok
> set defaultSelected=false
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate gc$e276 TextNode
< ok
> set data=Startup
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e276
< ok
> get options
< 0x55e3cff84188
> set [2]=Option
< ok
> set parentNode=0x55e3cff84188
< ok
> get form
< 0x55e3d01808d8
> set form=0x55e3d01808d8
< ok
> new array childNodes
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d035ec38
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d035ec38
< ok
> set text=Scaleup
< ok
> set value=Scaleup
< ok
> set nodeName=OPTION
< ok
> set nodeType=1
< ok
> set selected=false
< ok
> set defaultSelected=false
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate gc$e277 TextNode
< ok
> set data=Scaleup
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e277
< ok
> get options
< 0x55e3cff84188
> set [3]=Option
< ok
> set parentNode=0x55e3cff84188
< ok
> get form
< 0x55e3d01808d8
> set form=0x55e3d01808d8
< ok
> new array childNodes
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d035f808
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d035f808
< ok
> set text=Small or medium enterprise
< ok
> set value=Small or medium enterprise
< ok
> set nodeName=OPTION
< ok
> set nodeType=1
< ok
> set selected=false
< ok
> set defaultSelected=false
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate gc$e278 TextNode
< ok
> set data=Small or medium enterprise
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e278
< ok
> get options
< 0x55e3cff84188
> set [4]=Option
< ok
> set parentNode=0x55e3cff84188
< ok
> get form
< 0x55e3d01808d8
> set form=0x55e3d01808d8
< ok
> new array childNodes
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d03603d8
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d03603d8
< ok
> set text=Large corporate
< ok
> set value=Large corporate
< ok
> set nodeName=OPTION
< ok
> set nodeType=1
< ok
> set selected=false
< ok
> set defaultSelected=false
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate gc$e279 TextNode
< ok
> set data=Large corporate
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e279
< ok
> get options
< 0x55e3cff84188
> set [5]=Option
< ok
> set parentNode=0x55e3cff84188
< ok
> get form
< 0x55e3d01808d8
> set form=0x55e3d01808d8
< ok
> new array childNodes
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cff965f8
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cff965f8
< ok
> set text=Academic
< ok
> set value=Academic
< ok
> set nodeName=OPTION
< ok
> set nodeType=1
< ok
> set selected=false
< ok
> set defaultSelected=false
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate gc$e280 TextNode
< ok
> set data=Academic
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e280
< ok
> get options
< 0x55e3cff84188
> set [6]=Option
< ok
> set parentNode=0x55e3cff84188
< ok
> get form
< 0x55e3d01808d8
> set form=0x55e3d01808d8
< ok
> new array childNodes
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cff97178
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cff97178
< ok
> set text=Research organisation
< ok
> set value=Research organisation
< ok
> set nodeName=OPTION
< ok
> set nodeType=1
< ok
> set selected=false
< ok
> set defaultSelected=false
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate gc$e281 TextNode
< ok
> set data=Research organisation
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e281
< ok
> get options
< 0x55e3cff84188
> set [7]=Option
< ok
> set parentNode=0x55e3cff84188
< ok
> get form
< 0x55e3d01808d8
> set form=0x55e3d01808d8
< ok
> new array childNodes
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cff97d48
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cff97d48
< ok
> set text=Public sector
< ok
> set value=Public sector
< ok
> set nodeName=OPTION
< ok
> set nodeType=1
< ok
> set selected=false
< ok
> set defaultSelected=false
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate gc$e282 TextNode
< ok
> set data=Public sector
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e282
< ok
> get options
< 0x55e3cff84188
> set [8]=Option
< ok
> set parentNode=0x55e3cff84188
< ok
> get form
< 0x55e3d01808d8
> set form=0x55e3d01808d8
< ok
> new array childNodes
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cff988c8
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cff988c8
< ok
> set text=Not for profit
< ok
> set value=Not for profit
< ok
> set nodeName=OPTION
< ok
> set nodeType=1
< ok
> set selected=false
< ok
> set defaultSelected=false
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate gc$e283 TextNode
< ok
> set data=Not for profit
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e283
< ok
> get options
< 0x55e3cff84188
> set [9]=Option
< ok
> set parentNode=0x55e3cff84188
< ok
> get form
< 0x55e3d01808d8
> set form=0x55e3d01808d8
< ok
> new array childNodes
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cff99448
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cff99448
< ok
> set text=Individual/entrepreneur
< ok
> set value=Individual/entrepreneur
< ok
> set nodeName=OPTION
< ok
> set nodeType=1
< ok
> set selected=false
< ok
> set defaultSelected=false
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate gc$e284 TextNode
< ok
> set data=Individual/entrepreneur
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e284
< ok
> get options
< 0x55e3cff84188
> set [10]=Option
< ok
> set parentNode=0x55e3cff84188
< ok
> get form
< 0x55e3d01808d8
> set form=0x55e3d01808d8
< ok
> new array childNodes
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cff9a018
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cff9a018
< ok
> set text=Press/media
< ok
> set value=Press/media
< ok
> set nodeName=OPTION
< ok
> set nodeType=1
< ok
> set selected=false
< ok
> set defaultSelected=false
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate gc$e285 TextNode
< ok
> set data=Press/media
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e285
< ok
> get options
< 0x55e3cff84188
> set [11]=Option
< ok
> set parentNode=0x55e3cff84188
< ok
> get form
< 0x55e3d01808d8
> set form=0x55e3d01808d8
< ok
> new array childNodes
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cff9ab98
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cff9ab98
< ok
> set text=Other
< ok
> set value=Other
< ok
> set nodeName=OPTION
< ok
> set nodeType=1
< ok
> set selected=false
< ok
> set defaultSelected=false
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate gc$e286 TextNode
< ok
> set data=Other
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e286
< ok
domLink Div.0 name 
> instantiate gc$e287 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0587b38
< ok
> set class=SalesforceForm__DCField-n4o3c4-12 eRnCKi
< ok
> set last$class=SalesforceForm__DCField-n4o3c4-12 eRnCKi
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0587b38
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [115]=0x55e3d0587b38
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e287
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Label.0 name 
> instantiate gc$e288 Label
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0588428
< ok
> set class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> set last$class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0588428
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get labels
< 0x55e3d014b638
> get length
< ok
> set [18]=0x55e3d0588428
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=LABEL
< ok
> set tagName=LABEL
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e288
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e289 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0588bc8
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0588bc8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [116]=0x55e3d0588bc8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e289
< ok
> set innerHTML=<label class="elements__Label-sc-1nn2de2-1 gOmppy">Which of
the below areas interest you?</label>
< ok
domLink Label.0 name 
> instantiate gc$e290 Label
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d035ca98
< ok
> set class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> set last$class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d035ca98
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get labels
< 0x55e3d014b638
> get length
< ok
> set [19]=0x55e3d035ca98
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=LABEL
< ok
> set tagName=LABEL
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e290
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
> instantiate gc$e291 TextNode
< ok
> set data=Which of the below areas interest you?
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e291
< ok
domLink Label.0 name 
> instantiate gc$e292 Label
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d035d628
< ok
> set class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> set last$class=elements__Label-sc-1nn2de2-1 gOmppy
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d035d628
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get labels
< 0x55e3d014b638
> get length
< ok
> set [20]=0x55e3d035d628
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=LABEL
< ok
> set tagName=LABEL
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e292
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Select.0 name 00N0X00000DUulw
> has 00N0X00000DUulw
< 0
> has 00N0X00000DUulw
< false
> instantiate 00N0X00000DUulw Select
< ok
> new array childNodes
< ok
> set options=0x55e3d058b038
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d058a748
< ok
> set class=elements__Select-sc-1nn2de2-3 gRTVgP
< ok
> set last$class=elements__Select-sc-1nn2de2-3 gRTVgP
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d058a748
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get elements
< 0x55e3d01a1108
> get length
< ok
> set [6]=0x55e3d058a748
< ok
> has 00N0X00000DUulw
< false
> set 00N0X00000DUulw=0x55e3d058a748
< ok
> set name=00N0X00000DUulw
< ok
> set id=
< ok
> set last$id=
< ok
> set form=0x55e3d01808d8
< ok
> set nodeName=SELECT
< ok
> set tagName=SELECT
< ok
> set nodeType=1
< ok
> set type=select-multiple
< ok
> function eb$apch1
append 1
append 2
< ok
> has multiple
< false
> set multiple=true
< ok
> function markAttribute
< ok
> has name
< true
> has name
< 1
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
> get options
< 0x55e3d058b038
> set [0]=Option
< ok
> set parentNode=0x55e3d058b038
< ok
> get form
< 0x55e3d01808d8
> set form=0x55e3d01808d8
< ok
> new array childNodes
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d058bb28
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d058bb28
< ok
> set text=Future Networks (5G, LPWAN, IoT)
< ok
> set value=Future Networks (5G, LPWAN, IoT)
< ok
> set nodeName=OPTION
< ok
> set nodeType=1
< ok
> set selected=false
< ok
> set defaultSelected=false
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate gc$e293 TextNode
< ok
> set data=Future Networks (5G, LPWAN, IoT)
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e293
< ok
> get options
< 0x55e3d058b038
> set [1]=Option
< ok
> set parentNode=0x55e3d058b038
< ok
> get form
< 0x55e3d01808d8
> set form=0x55e3d01808d8
< ok
> new array childNodes
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d058c0d8
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d058c0d8
< ok
> set text=Immersive (VR, AR and haptics)
< ok
> set value=Immersive (VR, AR and haptics)
< ok
> set nodeName=OPTION
< ok
> set nodeType=1
< ok
> set selected=false
< ok
> set defaultSelected=false
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate gc$e294 TextNode
< ok
> set data=Immersive (VR, AR and haptics)
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e294
< ok
> get options
< 0x55e3d058b038
> set [2]=Option
< ok
> set parentNode=0x55e3d058b038
< ok
> get form
< 0x55e3d01808d8
> set form=0x55e3d01808d8
< ok
> new array childNodes
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d048ae68
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d048ae68
< ok
> set text=Artificial Intelligence (AI and machine learning)
< ok
> set value=Artificial Intelligence (AI and machine learning)
< ok
> set nodeName=OPTION
< ok
> set nodeType=1
< ok
> set selected=false
< ok
> set defaultSelected=false
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate gc$e295 TextNode
< ok
> set data=Artificial Intelligence (AI and machine learning)
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e295
< ok
> get options
< 0x55e3d058b038
> set [3]=Option
< ok
> set parentNode=0x55e3d058b038
< ok
> get form
< 0x55e3d01808d8
> set form=0x55e3d01808d8
< ok
> new array childNodes
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d048ba38
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d048ba38
< ok
> set text=Blockchain
< ok
> set value=Blockchain
< ok
> set nodeName=OPTION
< ok
> set nodeType=1
< ok
> set selected=false
< ok
> set defaultSelected=false
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate gc$e296 TextNode
< ok
> set data=Blockchain
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e296
< ok
> get options
< 0x55e3d058b038
> set [4]=Option
< ok
> set parentNode=0x55e3d058b038
< ok
> get form
< 0x55e3d01808d8
> set form=0x55e3d01808d8
< ok
> new array childNodes
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d048c5b8
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d048c5b8
< ok
> set text=Cyber security
< ok
> set value=Cyber security
< ok
> set nodeName=OPTION
< ok
> set nodeType=1
< ok
> set selected=false
< ok
> set defaultSelected=false
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate gc$e297 TextNode
< ok
> set data=Cyber security
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e297
< ok
> get options
< 0x55e3d058b038
> set [5]=Option
< ok
> set parentNode=0x55e3d058b038
< ok
> get form
< 0x55e3d01808d8
> set form=0x55e3d01808d8
< ok
> new array childNodes
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d048d0e8
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d048d0e8
< ok
> set text=Manufacturing
< ok
> set value=Manufacturing
< ok
> set nodeName=OPTION
< ok
> set nodeType=1
< ok
> set selected=false
< ok
> set defaultSelected=false
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate gc$e298 TextNode
< ok
> set data=Manufacturing
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e298
< ok
> get options
< 0x55e3d058b038
> set [6]=Option
< ok
> set parentNode=0x55e3d058b038
< ok
> get form
< 0x55e3d01808d8
> set form=0x55e3d01808d8
< ok
> new array childNodes
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d048dc68
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d048dc68
< ok
> set text=Creative industries
< ok
> set value=Creative industries
< ok
> set nodeName=OPTION
< ok
> set nodeType=1
< ok
> set selected=false
< ok
> set defaultSelected=false
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate gc$e299 TextNode
< ok
> set data=Creative industries
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e299
< ok
> get options
< 0x55e3d058b038
> set [7]=Option
< ok
> set parentNode=0x55e3d058b038
< ok
> get form
< 0x55e3d01808d8
> set form=0x55e3d01808d8
< ok
> new array childNodes
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d048e838
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d048e838
< ok
> set text=None of the above
< ok
> set value=None of the above
< ok
> set nodeName=OPTION
< ok
> set nodeType=1
< ok
> set selected=false
< ok
> set defaultSelected=false
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate gc$e300 TextNode
< ok
> set data=None of the above
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e300
< ok
domLink Div.0 name 
> instantiate gc$e301 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d048f408
< ok
> set class=SalesforceForm__ButtonContainer-n4o3c4-7 kUiCmg
< ok
> set last$class=SalesforceForm__ButtonContainer-n4o3c4-7 kUiCmg
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d048f408
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [117]=0x55e3d048f408
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e301
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Element.0 name 
> instantiate gc$e302 Element
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d048fcf8
< ok
> set class=SalesforceForm__Button-n4o3c4-8 jmTbXb
< ok
> set last$class=SalesforceForm__Button-n4o3c4-8 jmTbXb
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d048fcf8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get elements
< 0x55e3d01a1108
> get length
< ok
> set [7]=0x55e3d048fcf8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set form=0x55e3d01808d8
< ok
> set nodeName=BUTTON
< ok
> set tagName=BUTTON
< ok
> set nodeType=1
< ok
> set value=
< ok
> set defaultValue=
< ok
> set type=submit
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e302
< ok
> set innerHTML=
< ok
> has type
< true
> has type
< 1
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e303 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cffce738
< ok
> set class=Buttons__SquareButtonOuter-sc-1jsl4jv-1 jYDRDn
< ok
> set last$class=Buttons__SquareButtonOuter-sc-1jsl4jv-1 jYDRDn
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cffce738
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [118]=0x55e3cffce738
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e303
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Element.0 name 
> instantiate gc$e304 Element
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cffceca8
< ok
> set class=SalesforceForm__Button-n4o3c4-8 jmTbXb
< ok
> set last$class=SalesforceForm__Button-n4o3c4-8 jmTbXb
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cffceca8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get elements
< 0x55e3d01a1108
> get length
< ok
> set [8]=0x55e3cffceca8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set form=0x55e3d01808d8
< ok
> set nodeName=BUTTON
< ok
> set tagName=BUTTON
< ok
> set nodeType=1
< ok
> set value=
< ok
> set defaultValue=
< ok
> set type=submit
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e304
< ok
> set innerHTML=
< ok
> has type
< true
> has type
< 1
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e305 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cffcfdb8
< ok
> set class=square-inner Buttons__SquareButtonInner-sc-1jsl4jv-2 aSuBf
< ok
> set last$class=square-inner Buttons__SquareButtonInner-sc-1jsl4jv-2 aSuBf
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cffcfdb8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [119]=0x55e3cffcfdb8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e305
< ok
> set innerHTML=<button type="submit" class=
"SalesforceForm__Button-n4o3c4-8 jmTbXb">Subscribe</button>
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Element.0 name 
> instantiate gc$e306 Element
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cffd02c8
< ok
> set class=SalesforceForm__Button-n4o3c4-8 jmTbXb
< ok
> set last$class=SalesforceForm__Button-n4o3c4-8 jmTbXb
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cffd02c8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get elements
< 0x55e3d01a1108
> get length
< ok
> set [9]=0x55e3cffd02c8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set form=0x55e3d01808d8
< ok
> set nodeName=BUTTON
< ok
> set tagName=BUTTON
< ok
> set nodeType=1
< ok
> set value=
< ok
> set defaultValue=
< ok
> set type=submit
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e306
< ok
> set innerHTML=Subscribe
< ok
> has type
< true
> has type
< 1
> function markAttribute
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
> instantiate gc$e307 TextNode
< ok
> set data=Subscribe
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e307
< ok
domLink Div.0 name 
> instantiate gc$e308 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cffd1618
< ok
> set class=SalesforceForm__PrivacyLink-n4o3c4-0 hkjLTn
< ok
> set last$class=SalesforceForm__PrivacyLink-n4o3c4-0 hkjLTn
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cffd1618
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [120]=0x55e3cffd1618
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e308
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Span.0 name 
> instantiate gc$e309 Span
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cffce6a8
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cffce6a8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get spans
< 0x55e3d014c3b8
> get length
< ok
> set [0]=0x55e3cffce6a8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=SPAN
< ok
> set tagName=SPAN
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e309
< ok
> set innerHTML=Find out how we use your application and this data in
our
< ok
> instantiate gc$e310 TextNode
< ok
> set data=Find out how we use your application and this data in our
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e310
< ok
> instantiate gc$e311 TextNode
< ok
> set data= 
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e311
< ok
domLink Anchor.0 name 
> instantiate gc$e312 Anchor
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0589278
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0589278
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get links
< 0x55e3d014b408
> get length
< ok
> set [2]=0x55e3d0589278
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set href=https://www.digicatapult.org.uk/privacy-policy/
resolve(|https://www.digicatapult.org.uk/privacy-policy/)
= https://www.digicatapult.org.uk/privacy-policy/
< ok
> set nodeName=A
< ok
> set tagName=A
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e312
< ok
> set innerHTML=privacy
policy
< ok
> has role
< false
> set role=link
< ok
> function markAttribute
< ok
> has tabindex
< false
> set tabindex=0
< ok
> function markAttribute
< ok
> has href
< true
> has href
< 5
> function markAttribute
< ok
> instantiate gc$e313 TextNode
< ok
> set data=privacy policy
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e313
< ok
> instantiate gc$e314 TextNode
< ok
> set data=.
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e314
< ok
domLink Div.0 name 
> instantiate gc$e315 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d021b1f8
< ok
> set class=DefaultLoading__Wrapper-hsd7gk-0 rdKsO
< ok
> set last$class=DefaultLoading__Wrapper-hsd7gk-0 rdKsO
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d021b1f8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [121]=0x55e3d021b1f8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e315
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Div.0 name 
> instantiate gc$e316 Div
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d021bef8
< ok
> set class=DefaultLoading__Loader-hsd7gk-1 gDTBjH
< ok
> set last$class=DefaultLoading__Loader-hsd7gk-1 gDTBjH
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d021bef8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get divs
< 0x55e3d014b5e8
> get length
< ok
> set [122]=0x55e3d021bef8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set nodeName=DIV
< ok
> set tagName=DIV
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e316
< ok
> set innerHTML=long
< ok
> has class
< true
> has class
< 1
> function markAttribute
< ok
domLink Image.0 name 
> instantiate gc$e317 Image
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d021c748
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d021c748
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get images
< 0x55e3d014c408
> get length
< ok
> set [9]=0x55e3d021c748
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set src=long
resolve(|https://images.ctfassets.net/nubxhjiwc091/52ZwZT9NOEw244SIkq6ssQ/543d7de316cfad540668a30458f69b0f/loader.gif)
= https://images.ctfassets.net/nubxhjiwc091/52ZwZT9NOEw244SIkq6ssQ/543d7de316cfad540668a30458f69b0f/loader.gif
< ok
> set nodeName=IMG
< ok
> set tagName=IMG
< ok
> set nodeType=1
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e317
< ok
> has alt
< false
> set alt=Loading...
< ok
> function markAttribute
< ok
> has src
< true
> has src
< 5
> function markAttribute
< ok
domLink Script.0 name 
> instantiate gc$e318 Script
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d021d278
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d021d278
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get scripts
< 0x55e3d014bc08
> get length
< ok
> set [6]=0x55e3d021d278
< ok
> set name=
< ok
> set id=__NEXT_DATA__
< ok
> set last$id=__NEXT_DATA__
< ok
> set nodeName=SCRIPT
< ok
> set tagName=SCRIPT
< ok
> set nodeType=1
< ok
> set type=application/json
< ok
> set data=
< ok
> set src=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e318
< ok
> has id
< true
> has id
< 1
> function markAttribute
< ok
> has type
< true
> has type
< 1
> function markAttribute
< ok
> instantiate gc$e319 TextNode
< ok
> set data=long
< ok
> set class=
< ok
> set last$class=
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e319
< ok
domLink Script.0 name 
> instantiate gc$e320 Script
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d021e498
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d021e498
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get scripts
< 0x55e3d014bc08
> get length
< ok
> set [7]=0x55e3d021e498
< ok
> set name=
< ok
> set id=__NEXT_PAGE__/
< ok
> set last$id=__NEXT_PAGE__/
< ok
> set src=https://www.digicatapult.org.uk/_next/static/cysEpD-NYBSOKxwiDygVm/pages/index.js
resolve(|https://www.digicatapult.org.uk/_next/static/cysEpD-NYBSOKxwiDygVm/pages/index.js)
= https://www.digicatapult.org.uk/_next/static/cysEpD-NYBSOKxwiDygVm/pages/index.js
< ok
> set nodeName=SCRIPT
< ok
> set tagName=SCRIPT
< ok
> set nodeType=1
< ok
> set type=0c62581de827c5336e74d77e-text/javascript
< ok
> set data=
< ok
> set src=https://www.digicatapult.org.uk/_next/static/cysEpD-NYBSOKxwiDygVm/pages/index.js
resolve(https://www.digicatapult.org.uk/_next/static/cysEpD-NYBSOKxwiDygVm/pages/index.js|https://www.digicatapult.org.uk/_next/static/cysEpD-NYBSOKxwiDygVm/pages/index.js)
= https://www.digicatapult.org.uk/_next/static/cysEpD-NYBSOKxwiDygVm/pages/index.js
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e320
< ok
> has async
< false
> set async=true
< ok
> function markAttribute
< ok
> has id
< true
> has id
< 1
> function markAttribute
< ok
> has src
< true
> has src
< 5
> function markAttribute
< ok
> has type
< true
> has type
< 1
> function markAttribute
< ok
domLink Script.0 name 
> instantiate gc$e321 Script
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d058ba98
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d058ba98
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get scripts
< 0x55e3d014bc08
> get length
< ok
> set [8]=0x55e3d058ba98
< ok
> set name=
< ok
> set id=__NEXT_PAGE__/_app
< ok
> set last$id=__NEXT_PAGE__/_app
< ok
> set src=https://www.digicatapult.org.uk/_next/static/cysEpD-NYBSOKxwiDygVm/pages/_app.js
resolve(|https://www.digicatapult.org.uk/_next/static/cysEpD-NYBSOKxwiDygVm/pages/_app.js)
= https://www.digicatapult.org.uk/_next/static/cysEpD-NYBSOKxwiDygVm/pages/_app.js
< ok
> set nodeName=SCRIPT
< ok
> set tagName=SCRIPT
< ok
> set nodeType=1
< ok
> set type=0c62581de827c5336e74d77e-text/javascript
< ok
> set data=
< ok
> set src=https://www.digicatapult.org.uk/_next/static/cysEpD-NYBSOKxwiDygVm/pages/_app.js
resolve(https://www.digicatapult.org.uk/_next/static/cysEpD-NYBSOKxwiDygVm/pages/_app.js|https://www.digicatapult.org.uk/_next/static/cysEpD-NYBSOKxwiDygVm/pages/_app.js)
= https://www.digicatapult.org.uk/_next/static/cysEpD-NYBSOKxwiDygVm/pages/_app.js
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e321
< ok
> has async
< false
> set async=true
< ok
> function markAttribute
< ok
> has id
< true
> has id
< 1
> function markAttribute
< ok
> has src
< true
> has src
< 5
> function markAttribute
< ok
> has type
< true
> has type
< 1
> function markAttribute
< ok
domLink Script.0 name 
> instantiate gc$e322 Script
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cffe8df8
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cffe8df8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get scripts
< 0x55e3d014bc08
> get length
< ok
> set [9]=0x55e3cffe8df8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set src=https://www.digicatapult.org.uk/_next/static/runtime/webpack-a79426b5e11f0ba5879d.js
resolve(|https://www.digicatapult.org.uk/_next/static/runtime/webpack-a79426b5e11f0ba5879d.js)
= https://www.digicatapult.org.uk/_next/static/runtime/webpack-a79426b5e11f0ba5879d.js
< ok
> set nodeName=SCRIPT
< ok
> set tagName=SCRIPT
< ok
> set nodeType=1
< ok
> set type=0c62581de827c5336e74d77e-text/javascript
< ok
> set data=
< ok
> set src=https://www.digicatapult.org.uk/_next/static/runtime/webpack-a79426b5e11f0ba5879d.js
resolve(https://www.digicatapult.org.uk/_next/static/runtime/webpack-a79426b5e11f0ba5879d.js|https://www.digicatapult.org.uk/_next/static/runtime/webpack-a79426b5e11f0ba5879d.js)
= https://www.digicatapult.org.uk/_next/static/runtime/webpack-a79426b5e11f0ba5879d.js
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e322
< ok
> has src
< true
> has src
< 5
> function markAttribute
< ok
> has async
< false
> set async=true
< ok
> function markAttribute
< ok
> has type
< true
> has type
< 1
> function markAttribute
< ok
domLink Script.0 name 
> instantiate gc$e323 Script
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d0219878
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d0219878
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get scripts
< 0x55e3d014bc08
> get length
< ok
> set [10]=0x55e3d0219878
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set src=https://www.digicatapult.org.uk/_next/static/chunks/commons.be31d678bec17af41e66.js
resolve(|https://www.digicatapult.org.uk/_next/static/chunks/commons.be31d678bec17af41e66.js)
= https://www.digicatapult.org.uk/_next/static/chunks/commons.be31d678bec17af41e66.js
< ok
> set nodeName=SCRIPT
< ok
> set tagName=SCRIPT
< ok
> set nodeType=1
< ok
> set type=0c62581de827c5336e74d77e-text/javascript
< ok
> set data=
< ok
> set src=https://www.digicatapult.org.uk/_next/static/chunks/commons.be31d678bec17af41e66.js
resolve(https://www.digicatapult.org.uk/_next/static/chunks/commons.be31d678bec17af41e66.js|https://www.digicatapult.org.uk/_next/static/chunks/commons.be31d678bec17af41e66.js)
= https://www.digicatapult.org.uk/_next/static/chunks/commons.be31d678bec17af41e66.js
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e323
< ok
> has src
< true
> has src
< 5
> function markAttribute
< ok
> has async
< false
> set async=true
< ok
> function markAttribute
< ok
> has type
< true
> has type
< 1
> function markAttribute
< ok
domLink Script.0 name 
> instantiate gc$e324 Script
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3d021a6a8
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3d021a6a8
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get scripts
< 0x55e3d014bc08
> get length
< ok
> set [11]=0x55e3d021a6a8
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set src=https://www.digicatapult.org.uk/_next/static/runtime/main-5da8112411d890a8cc6b.js
resolve(|https://www.digicatapult.org.uk/_next/static/runtime/main-5da8112411d890a8cc6b.js)
= https://www.digicatapult.org.uk/_next/static/runtime/main-5da8112411d890a8cc6b.js
< ok
> set nodeName=SCRIPT
< ok
> set tagName=SCRIPT
< ok
> set nodeType=1
< ok
> set type=0c62581de827c5336e74d77e-text/javascript
< ok
> set data=
< ok
> set src=https://www.digicatapult.org.uk/_next/static/runtime/main-5da8112411d890a8cc6b.js
resolve(https://www.digicatapult.org.uk/_next/static/runtime/main-5da8112411d890a8cc6b.js|https://www.digicatapult.org.uk/_next/static/runtime/main-5da8112411d890a8cc6b.js)
= https://www.digicatapult.org.uk/_next/static/runtime/main-5da8112411d890a8cc6b.js
< ok
> function eb$apch1
append 1
append 2
< ok
> delete gc$e324
< ok
> has src
< true
> has src
< 5
> function markAttribute
< ok
> has async
< false
> set async=true
< ok
> function markAttribute
< ok
> has type
< true
> has type
< 1
> function markAttribute
< ok
domLink Script.0 name 
> instantiate gc$e325 Script
< ok
> new array childNodes
< ok
> instantiate style CSSStyleDeclaration
< ok
> set element=0x55e3cffebb38
< ok
> set class=
< ok
> set last$class=
< ok
> instantiate attributes NamedNodeMap
< ok
> set owner=0x55e3cffebb38
< ok
> set ownerDocument=0x55e3cffa2468
< ok
> instantiate dataset Object
< ok
> get scripts
< 0x55e3d014bc08
> get length
< ok
> set [12]=0x55e3cffebb38
< ok
> set name=
< ok
> set id=
< ok
> set last$id=
< ok
> set src=https://ajax.cloudflare.com/cdn-cgi/scripts/7089c43e/cloudflare-static/rocket-loader.min.js
resolve(|https://ajax.cloudflare.com/cdn-cgi/scripts/7089c43e/cloudflare-static/rocket-loader.min.js)
= https://ajax.cloudflare.com/cdn-cgi/scripts/7089c43e/cloudflare-static/rocket-loader.min.js
< ok
> set nodeName=SCRIPT
< ok
> set tagName=SCRIPT
< ok
> set nodeType=1
< ok
> set data=
< ok
> set src=https://ajax.cloudflare.com/cdn-cgi/scripts/7089c43e/cloudflare-static/rocket-loader.min.js
resolve(https://ajax.cloudflare.com/cdn-cgi/scripts/7089c43e/cloudflare-static/rocket-loader.min.js|https://ajax.cloudflare.com/cdn-cgi/scripts/7089c43e/cloudflare-static/rocket-loader.min.js)
= https://ajax.cloudflare.com/cdn-cgi/scripts/7089c43e/cloudflare-static/rocket-loader.min.js
< ok
> has href
< 0
> has src
< 5
> get src
< 0x55e3cffec898
> get href
< https://ajax.cloudflare.com/cdn-cgi/scripts/7089c43e/cloudflare-static/rocket-loader.min.js
> get async
< false
js source https://ajax.cloudflare.com/cdn-cgi/scripts/7089c43e/cloudflare-static/rocket-loader.min.js
> function eb$apch1
append 1
append 2
jsbg thread 2
< ok
> delete gc$e325
< ok
> has src
< true
> has src
< 5
> function markAttribute
< ok
> get dataset
< 0x55e3cffec8e8
> set cfSettings=0c62581de827c5336e74d77e-|49
< ok
> function markAttribute
< ok
> has defer
< false
> set defer=
< ok
> function markAttribute
< ok
> set eb$base=https://www.digicatapult.org.uk/
< ok
> function eb$qs$start
exec eb$qs$start
before 1
linkset b|0x55e3cffa2468,document 0x55e3cffe8358,doctype 0x55e3cfeef428,html 
before 2
687 selectors + rules: 6 no rules, 3 dynamic, 5 :unsupported, 30 @ empty, 1 @ not media, 1 @ bad media
linkage, text 704 created
before 1
linkset b|0x55e3cffcfdb8,div 0x55e3cfeaabc8,#text 0x55e3cffd02c8,button 
linkage, #text 704 linked into div 651 before button 652
fixup #text 704
before 2
linkage, text 705 created
before 1
linkset b|0x55e3cffd3da8,blockquote 0x55e3cfeaac68,#text 0x55e3cffd47a8,#text 
linkage, #text 705 linked into blockquote 284 before #text 285
fixup #text 705
before 2
linkage, text 706 created
before 1
linkset b|0x55e3d00376f8,p 0x55e3d022ce18,#text 0x55e3d0038088,#text 
linkage, #text 706 linked into p 258 before #text 259
fixup #text 706
before 2
linkage, text 707 created
before 1
linkset b|0x55e3d02d0a88,h2 0x55e3d0142628,#text 0x55e3d01a1a78,#text 
linkage, #text 707 linked into h2 455 before #text 456
fixup #text 707
before 2
linkage, text 708 created
append 1
linkset a|0x55e3cffcfdb8,div 0x55e3d02e1748,#text 0x0, 
linkage, #text 708 linked into div 651
fixup #text 708
append 2
97 css assignments
exec complete
< true
curl>
HEAD /ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.js HTTP/2
Host: cdnjs.cloudflare.com
user-agent: edbrowse/3.7.6
accept: */*
accept-encoding: deflate, gzip, br
referer: https://www.digicatapult.org.uk/
accept-language: en-gb

curl<
HTTP/2 200 
date: Sun, 08 Dec 2019 13:47:12 GMT
content-type: application/javascript; charset=utf-8
content application/javascript; charset=utf-8
last-modified: Thu, 17 May 2018 09:18:32 GMT
mod date Thu, 17 May 2018 09:18:32 GMT
etag: W/"5afd48e8-4d5a"
etag W/"5afd48e8-4d5a"
expires: Fri, 27 Nov 2020 13:47:12 GMT
cache-control: public, max-age=30672000
vary: Accept-Encoding
timing-allow-origin: *
access-control-allow-origin: *
served-in-seconds: 0.001
cf-cache-status: HIT
age: 5294836
strict-transport-security: max-age=15780000; includeSubDomains
expect-ct: max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
alt-svc: h3-23=":443"; ma=86400
server: cloudflare
cf-ray: 541f309bdf76e61c-LHR
content-encoding: br

thread 1 http code 200
from cache
> set data=long
< ok
exec cookieconsent.min.js at 1
> set currentScript=0x55e3d0142b28
< ok
> script:
log el 1
linkset c|0x55e3cffdbe28,div 0x0, 0x0, 
linkage, div 709 created
log el 2
< ok
> delete currentScript
< ok
exec complete
curl>
HEAD /cdn-cgi/scripts/7089c43e/cloudflare-static/rocket-loader.min.js HTTP/2
Host: ajax.cloudflare.com
user-agent: edbrowse/3.7.6
accept: */*
accept-encoding: deflate, gzip, br
referer: https://www.digicatapult.org.uk/
accept-language: en-gb

curl<
HTTP/2 200 
date: Sun, 08 Dec 2019 13:47:12 GMT
content-type: application/javascript
content application/javascript
last-modified: Wed, 04 Dec 2019 13:30:24 GMT
mod date Wed, 04 Dec 2019 13:30:24 GMT
set-cookie: __cfduid=d67ef995b2dad07c1a3b5c961f707ae951575812832; expires=Tue, 07-Jan-20 13:47:12 GMT; path=/; domain=.cloudflare.com; HttpOnly
etag: W/"5de7b4f0-3016"
etag W/"5de7b4f0-3016"
strict-transport-security: max-age=15780000; includeSubDomains
expect-ct: max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
vary: Accept-Encoding
alt-svc: h3-23=":443"; ma=86400
server: cloudflare
cf-ray: 541f309c4a6ce60c-LHR
x-frame-options: SAMEORIGIN
expires: Tue, 10 Dec 2019 13:47:12 GMT
cache-control: max-age=172800
cache-control: public
content-encoding: gzip

thread 2 http code 200
from cache
> set data=long
< ok
exec rocket-loader.min.js at 1
> set currentScript=0x55e3cffebb38
< ok
> script:
log el 1
linkset c|0x55e3cffba718,script 0x0, 0x0, 
linkage, script 710 created
log el 2
remove 1
linkset r|0x55e3d0334868,body 0x55e3cffebb38,script 0x0, 
linkage, script 700 removed from body 119
remove 2
rocket-loader.min.js line 1: TypeError: cannot read property 'indexOf' of undefined
< ok
> delete currentScript
< ok
exec complete
> instantiate gc$event Event
< ok
> set type=load
< ok
> set eventPhase=2
< ok
> has onload
< 0
> has onload
< 0
> has onload
< 0
> has onload
< 0
> has onload
< 0
> has onload
< 0
> has onload
< 0
> has onload
< 0
> has onload
< 0
> has onload
< 0
> has onload
< 0
> has onload
< 0
> has onload
< 0
> has onload
< 0
> has onload
< 0
> has onload
< 0
> has onload
< 0
> has onload
< 0
> has onload
< 0
> has onload
< 0
> has onload
< 0
> has onload
< 0
> has onload
< 0
> has onload
< 0
> has onload
< 0
> has onload
< 0
> has onload
< 0
> has onload
< 0
> has onload
< 0
> has onload
< 0
> has onload
< 0
> has onload
< 0
> has onload
< 0
> has onload
< 0
> has onload
< 0
> has onDOMContentLoaded
< 0
> delete gc$event
< ok
> set readyState=complete

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [edbrowse-dev] Abort from within duktape when visiting...
  2019-12-08 13:53   ` Adam Thompson
@ 2019-12-08 15:26     ` Karl Dahlke
  2019-12-08 16:57       ` Adam Thompson
  0 siblings, 1 reply; 6+ messages in thread
From: Karl Dahlke @ 2019-12-08 15:26 UTC (permalink / raw)
  To: edbrowse-dev

[-- Attachment #1: Type: text/plain, Size: 1002 bytes --]

Yes, we didn't need the 20 thousand lines of output, just the last line, as it does what I thought it might be doing, starting a low level calland not finishing it.
core dumps and gdb won't help, even if you did have the duktape symbols, it is a deliberate abort because of some runtime issue not protected.
I've sometimes thought I have to protect *every* duktape call we make, but so much overhead, in software and in performance.
Not sure what to do about that.
As a verification you can comment out html.c line 926 and it runs.
I don't just want to protect the call set_property_string, though I may have to, I'd really like to know what is going wrong here.
In jdb, try setting document.readyState = "complete"
This is protected so won't core dump, but neither does it show any errors, even with dberr, and neither does it change the value of readyState,
so the web page has done something to it.
either it's not a string any more (getter setter), or it is not writeable.

Karl Dahlke

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [edbrowse-dev] Abort from within duktape when visiting...
  2019-12-08 15:26     ` [edbrowse-dev] Abort from within duktape when visiting Karl Dahlke
@ 2019-12-08 16:57       ` Adam Thompson
  2019-12-09 10:41         ` Karl Dahlke
  0 siblings, 1 reply; 6+ messages in thread
From: Adam Thompson @ 2019-12-08 16:57 UTC (permalink / raw)
  To: Karl Dahlke; +Cc: edbrowse-dev

On Sun, Dec 08, 2019 at 10:26:36AM -0500, Karl Dahlke wrote:
> Yes, we didn't need the 20 thousand lines of output, just the last line, as it does what I thought it might be doing, starting a low level calland not finishing it.
> core dumps and gdb won't help, even if you did have the duktape symbols, it is a deliberate abort because of some runtime issue not protected.

Yeah, but when I first saw the error I wasn't sure where it'd blown up.  Anyway that
was my reading of the output.

> I've sometimes thought I have to protect *every* duktape call we make, but so much overhead, in software and in performance.
> Not sure what to do about that.

Hmmm, not sure.  I can see something to be said for protecting all the
duktape calls but I'm not sure how we can contain them in something where we
can avoid all the extra code.  How large is the overhead of these in
reality?

> As a verification you can comment out html.c line 926 and it runs.
> I don't just want to protect the call set_property_string, though I may have to, I'd really like to know what is going wrong here.
> In jdb, try setting document.readyState = "complete"
> This is protected so won't core dump, but neither does it show any errors, even with dberr, and neither does it change the value of readyState,
> so the web page has done something to it.
> either it's not a string any more (getter setter), or it is not writeable.

Should that be allowed or can we make that something only we can change?
From what I've read I'm not sure why scripts would be touching this or if
they should even be allowed to.

Cheers,
Adam.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [edbrowse-dev] Abort from within duktape when visiting...
  2019-12-08 16:57       ` Adam Thompson
@ 2019-12-09 10:41         ` Karl Dahlke
  0 siblings, 0 replies; 6+ messages in thread
From: Karl Dahlke @ 2019-12-09 10:41 UTC (permalink / raw)
  To: edbrowse-dev

so far ...

Investigation reveals a js file
https://ajax.cloudflare.com/cdn-cgi/scripts/7089c43e/cloudflare-static/rocket-loader.min.js
which overwrites readyState with a getter and no setter.
When I try to set it with a simple unprotected duktape call it core dumps.
I could make set_property_string protected, or make a special protected version
that I use from time to time, but for now I'm lazy and just call
document.readyState='complete' as a script.
It only runs once per browse and won't impact performance.
The website comes up now.

This is not a perfect or ideal solution.

Also there is another error in another js file on this site that I haven't tracked down yet.

Karl Dahlke

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2019-12-09 10:42 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-07 17:28 [edbrowse-dev] Abort from within duktape when visiting https://www.digicatapult.org.uk/careers Adam Thompson
2019-12-07 22:14 ` Karl Dahlke
2019-12-08 13:53   ` Adam Thompson
2019-12-08 15:26     ` [edbrowse-dev] Abort from within duktape when visiting Karl Dahlke
2019-12-08 16:57       ` Adam Thompson
2019-12-09 10:41         ` Karl Dahlke

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).