-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheth.html
3950 lines (3888 loc) · 350 KB
/
eth.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<script src="/cdn-cgi/apps/head/gYtXOyllgyP3-Z2iKTP8rRWGBm4.js"></script><script async defer src="https://www.googleoptimize.com/optimize.js?id=GTM-W3CD992"></script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<script type="text/javascript">window.NREUM||(NREUM={});NREUM.info={"beacon":"bam.nr-data.net","errorBeacon":"bam.nr-data.net","licenseKey":"cd4a6493ab","applicationID":"83495717","transactionName":"dV5dRBNcDlkEEU5BEV9SVm8CWwNHFRBOQgtZRg==","queueTime":1,"applicationTime":7,"agent":""}</script>
<script type="text/javascript">(window.NREUM||(NREUM={})).init={privacy:{cookies_enabled:true},ajax:{deny_list:[]},distributed_tracing:{enabled:true}};(window.NREUM||(NREUM={})).loader_config={agentID:"83495726",accountID:"1834670",trustKey:"1834670",xpid:"VQ4EVVBUCBAIV1VbAgYGUQ==",licenseKey:"cd4a6493ab",applicationID:"83495717"};;/*! For license information please see nr-loader-spa-1.236.0.min.js.LICENSE.txt */
(()=>{"use strict";var e,t,r={5763:(e,t,r)=>{r.d(t,{P_:()=>l,Mt:()=>g,C5:()=>s,DL:()=>v,OP:()=>T,lF:()=>D,Yu:()=>y,Dg:()=>h,CX:()=>c,GE:()=>b,sU:()=>_});var n=r(8632),i=r(9567);const o={beacon:n.ce.beacon,errorBeacon:n.ce.errorBeacon,licenseKey:void 0,applicationID:void 0,sa:void 0,queueTime:void 0,applicationTime:void 0,ttGuid:void 0,user:void 0,account:void 0,product:void 0,extra:void 0,jsAttributes:{},userAttributes:void 0,atts:void 0,transactionName:void 0,tNamePlain:void 0},a={};function s(e){if(!e)throw new Error("All info objects require an agent identifier!");if(!a[e])throw new Error("Info for ".concat(e," was never set"));return a[e]}function c(e,t){if(!e)throw new Error("All info objects require an agent identifier!");a[e]=(0,i.D)(t,o),(0,n.Qy)(e,a[e],"info")}var u=r(7056);const d=()=>{const e={blockSelector:"[data-nr-block]",maskInputOptions:{password:!0}};return{allow_bfcache:!0,privacy:{cookies_enabled:!0},ajax:{deny_list:void 0,enabled:!0,harvestTimeSeconds:10},distributed_tracing:{enabled:void 0,exclude_newrelic_header:void 0,cors_use_newrelic_header:void 0,cors_use_tracecontext_headers:void 0,allowed_origins:void 0},session:{domain:void 0,expiresMs:u.oD,inactiveMs:u.Hb},ssl:void 0,obfuscate:void 0,jserrors:{enabled:!0,harvestTimeSeconds:10},metrics:{enabled:!0},page_action:{enabled:!0,harvestTimeSeconds:30},page_view_event:{enabled:!0},page_view_timing:{enabled:!0,harvestTimeSeconds:30,long_task:!1},session_trace:{enabled:!0,harvestTimeSeconds:10},harvest:{tooManyRequestsDelay:60},session_replay:{enabled:!1,harvestTimeSeconds:60,sampleRate:.1,errorSampleRate:.1,maskTextSelector:"*",maskAllInputs:!0,get blockClass(){return"nr-block"},get ignoreClass(){return"nr-ignore"},get maskTextClass(){return"nr-mask"},get blockSelector(){return e.blockSelector},set blockSelector(t){e.blockSelector+=",".concat(t)},get maskInputOptions(){return e.maskInputOptions},set maskInputOptions(t){e.maskInputOptions={...t,password:!0}}},spa:{enabled:!0,harvestTimeSeconds:10}}},f={};function l(e){if(!e)throw new Error("All configuration objects require an agent identifier!");if(!f[e])throw new Error("Configuration for ".concat(e," was never set"));return f[e]}function h(e,t){if(!e)throw new Error("All configuration objects require an agent identifier!");f[e]=(0,i.D)(t,d()),(0,n.Qy)(e,f[e],"config")}function g(e,t){if(!e)throw new Error("All configuration objects require an agent identifier!");var r=l(e);if(r){for(var n=t.split("."),i=0;i<n.length-1;i++)if("object"!=typeof(r=r[n[i]]))return;r=r[n[n.length-1]]}return r}const p={accountID:void 0,trustKey:void 0,agentID:void 0,licenseKey:void 0,applicationID:void 0,xpid:void 0},m={};function v(e){if(!e)throw new Error("All loader-config objects require an agent identifier!");if(!m[e])throw new Error("LoaderConfig for ".concat(e," was never set"));return m[e]}function b(e,t){if(!e)throw new Error("All loader-config objects require an agent identifier!");m[e]=(0,i.D)(t,p),(0,n.Qy)(e,m[e],"loader_config")}const y=(0,n.mF)().o;var w=r(385),x=r(6818);const A={buildEnv:x.Re,bytesSent:{},queryBytesSent:{},customTransaction:void 0,disabled:!1,distMethod:x.gF,isolatedBacklog:!1,loaderType:void 0,maxBytes:3e4,offset:Math.floor(w._A?.performance?.timeOrigin||w._A?.performance?.timing?.navigationStart||Date.now()),onerror:void 0,origin:""+w._A.location,ptid:void 0,releaseIds:{},session:void 0,xhrWrappable:"function"==typeof w._A.XMLHttpRequest?.prototype?.addEventListener,version:x.q4},E={};function T(e){if(!e)throw new Error("All runtime objects require an agent identifier!");if(!E[e])throw new Error("Runtime for ".concat(e," was never set"));return E[e]}function _(e,t){if(!e)throw new Error("All runtime objects require an agent identifier!");E[e]=(0,i.D)(t,A),(0,n.Qy)(e,E[e],"runtime")}function D(e){return function(e){try{const t=s(e);return!!t.licenseKey&&!!t.errorBeacon&&!!t.applicationID}catch(e){return!1}}(e)}},9567:(e,t,r)=>{r.d(t,{D:()=>i});var n=r(50);function i(e,t){try{if(!e||"object"!=typeof e)return(0,n.Z)("Setting a Configurable requires an object as input");if(!t||"object"!=typeof t)return(0,n.Z)("Setting a Configurable requires a model to set its initial properties");const r=Object.create(Object.getPrototypeOf(t),Object.getOwnPropertyDescriptors(t)),o=0===Object.keys(r).length?e:r;for(let a in o)if(void 0!==e[a])try{"object"==typeof e[a]&&"object"==typeof t[a]?r[a]=i(e[a],t[a]):r[a]=e[a]}catch(e){(0,n.Z)("An error occurred while setting a property of a Configurable",e)}return r}catch(e){(0,n.Z)("An error occured while setting a Configurable",e)}}},6818:(e,t,r)=>{r.d(t,{Re:()=>i,gF:()=>o,q4:()=>n});const n="1.236.0",i="PROD",o="CDN"},385:(e,t,r)=>{r.d(t,{FN:()=>a,IF:()=>u,Nk:()=>f,Tt:()=>s,_A:()=>o,il:()=>n,pL:()=>c,v6:()=>i,w1:()=>d});const n="undefined"!=typeof window&&!!window.document,i="undefined"!=typeof WorkerGlobalScope&&("undefined"!=typeof self&&self instanceof WorkerGlobalScope&&self.navigator instanceof WorkerNavigator||"undefined"!=typeof globalThis&&globalThis instanceof WorkerGlobalScope&&globalThis.navigator instanceof WorkerNavigator),o=n?window:"undefined"!=typeof WorkerGlobalScope&&("undefined"!=typeof self&&self instanceof WorkerGlobalScope&&self||"undefined"!=typeof globalThis&&globalThis instanceof WorkerGlobalScope&&globalThis),a=""+o?.location,s=/iPad|iPhone|iPod/.test(navigator.userAgent),c=s&&"undefined"==typeof SharedWorker,u=(()=>{const e=navigator.userAgent.match(/Firefox[/\s](\d+\.\d+)/);return Array.isArray(e)&&e.length>=2?+e[1]:0})(),d=Boolean(n&&window.document.documentMode),f=!!navigator.sendBeacon},1117:(e,t,r)=>{r.d(t,{w:()=>o});var n=r(50);const i={agentIdentifier:"",ee:void 0};class o{constructor(e){try{if("object"!=typeof e)return(0,n.Z)("shared context requires an object as input");this.sharedContext={},Object.assign(this.sharedContext,i),Object.entries(e).forEach((e=>{let[t,r]=e;Object.keys(i).includes(t)&&(this.sharedContext[t]=r)}))}catch(e){(0,n.Z)("An error occured while setting SharedContext",e)}}}},8e3:(e,t,r)=>{r.d(t,{L:()=>d,R:()=>c});var n=r(2177),i=r(1284),o=r(4322),a=r(3325);const s={};function c(e,t){const r={staged:!1,priority:a.p[t]||0};u(e),s[e].get(t)||s[e].set(t,r)}function u(e){e&&(s[e]||(s[e]=new Map))}function d(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"feature";if(u(e),!e||!s[e].get(t))return a(t);s[e].get(t).staged=!0;const r=[...s[e]];function a(t){const r=e?n.ee.get(e):n.ee,a=o.X.handlers;if(r.backlog&&a){var s=r.backlog[t],c=a[t];if(c){for(var u=0;s&&u<s.length;++u)f(s[u],c);(0,i.D)(c,(function(e,t){(0,i.D)(t,(function(t,r){r[0].on(e,r[1])}))}))}delete a[t],r.backlog[t]=null,r.emit("drain-"+t,[])}}r.every((e=>{let[t,r]=e;return r.staged}))&&(r.sort(((e,t)=>e[1].priority-t[1].priority)),r.forEach((e=>{let[t]=e;a(t)})))}function f(e,t){var r=e[1];(0,i.D)(t[r],(function(t,r){var n=e[0];if(r[0]===n){var i=r[1],o=e[3],a=e[2];i.apply(o,a)}}))}},2177:(e,t,r)=>{r.d(t,{c:()=>f,ee:()=>u});var n=r(8632),i=r(2210),o=r(1284),a=r(5763),s="nr@context";let c=(0,n.fP)();var u;function d(){}function f(e){return(0,i.X)(e,s,l)}function l(){return new d}function h(){u.aborted=!0,u.backlog={}}c.ee?u=c.ee:(u=function e(t,r){var n={},c={},f={},g=!1;try{g=16===r.length&&(0,a.OP)(r).isolatedBacklog}catch(e){}var p={on:b,addEventListener:b,removeEventListener:y,emit:v,get:x,listeners:w,context:m,buffer:A,abort:h,aborted:!1,isBuffering:E,debugId:r,backlog:g?{}:t&&"object"==typeof t.backlog?t.backlog:{}};return p;function m(e){return e&&e instanceof d?e:e?(0,i.X)(e,s,l):l()}function v(e,r,n,i,o){if(!1!==o&&(o=!0),!u.aborted||i){t&&o&&t.emit(e,r,n);for(var a=m(n),s=w(e),d=s.length,f=0;f<d;f++)s[f].apply(a,r);var l=T()[c[e]];return l&&l.push([p,e,r,a]),a}}function b(e,t){n[e]=w(e).concat(t)}function y(e,t){var r=n[e];if(r)for(var i=0;i<r.length;i++)r[i]===t&&r.splice(i,1)}function w(e){return n[e]||[]}function x(t){return f[t]=f[t]||e(p,t)}function A(e,t){var r=T();p.aborted||(0,o.D)(e,(function(e,n){t=t||"feature",c[n]=t,t in r||(r[t]=[])}))}function E(e){return!!T()[c[e]]}function T(){return p.backlog}}(void 0,"globalEE"),c.ee=u)},5546:(e,t,r)=>{r.d(t,{E:()=>n,p:()=>i});var n=r(2177).ee.get("handle");function i(e,t,r,i,o){o?(o.buffer([e],i),o.emit(e,t,r)):(n.buffer([e],i),n.emit(e,t,r))}},4322:(e,t,r)=>{r.d(t,{X:()=>o});var n=r(5546);o.on=a;var i=o.handlers={};function o(e,t,r,o){a(o||n.E,i,e,t,r)}function a(e,t,r,i,o){o||(o="feature"),e||(e=n.E);var a=t[o]=t[o]||{};(a[r]=a[r]||[]).push([e,i])}},3239:(e,t,r)=>{r.d(t,{bP:()=>s,iz:()=>c,m$:()=>a});var n=r(385);let i=!1,o=!1;try{const e={get passive(){return i=!0,!1},get signal(){return o=!0,!1}};n._A.addEventListener("test",null,e),n._A.removeEventListener("test",null,e)}catch(e){}function a(e,t){return i||o?{capture:!!e,passive:i,signal:t}:!!e}function s(e,t){let r=arguments.length>2&&void 0!==arguments[2]&&arguments[2],n=arguments.length>3?arguments[3]:void 0;window.addEventListener(e,t,a(r,n))}function c(e,t){let r=arguments.length>2&&void 0!==arguments[2]&&arguments[2],n=arguments.length>3?arguments[3]:void 0;document.addEventListener(e,t,a(r,n))}},4402:(e,t,r)=>{r.d(t,{Ht:()=>u,M:()=>c,Rl:()=>a,ky:()=>s});var n=r(385);const i="xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx";function o(e,t){return e?15&e[t]:16*Math.random()|0}function a(){const e=n._A?.crypto||n._A?.msCrypto;let t,r=0;return e&&e.getRandomValues&&(t=e.getRandomValues(new Uint8Array(31))),i.split("").map((e=>"x"===e?o(t,++r).toString(16):"y"===e?(3&o()|8).toString(16):e)).join("")}function s(e){const t=n._A?.crypto||n._A?.msCrypto;let r,i=0;t&&t.getRandomValues&&(r=t.getRandomValues(new Uint8Array(31)));const a=[];for(var s=0;s<e;s++)a.push(o(r,++i).toString(16));return a.join("")}function c(){return s(16)}function u(){return s(32)}},7056:(e,t,r)=>{r.d(t,{Bq:()=>n,Hb:()=>o,oD:()=>i});const n="NRBA",i=144e5,o=18e5},7894:(e,t,r)=>{function n(){return Math.round(performance.now())}r.d(t,{z:()=>n})},7243:(e,t,r)=>{r.d(t,{e:()=>o});var n=r(385),i={};function o(e){if(e in i)return i[e];if(0===(e||"").indexOf("data:"))return{protocol:"data"};let t;var r=n._A?.location,o={};if(n.il)t=document.createElement("a"),t.href=e;else try{t=new URL(e,r.href)}catch(e){return o}o.port=t.port;var a=t.href.split("://");!o.port&&a[1]&&(o.port=a[1].split("/")[0].split("@").pop().split(":")[1]),o.port&&"0"!==o.port||(o.port="https"===a[0]?"443":"80"),o.hostname=t.hostname||r.hostname,o.pathname=t.pathname,o.protocol=a[0],"/"!==o.pathname.charAt(0)&&(o.pathname="/"+o.pathname);var s=!t.protocol||":"===t.protocol||t.protocol===r.protocol,c=t.hostname===r.hostname&&t.port===r.port;return o.sameOrigin=s&&(!t.hostname||c),"/"===o.pathname&&(i[e]=o),o}},50:(e,t,r)=>{function n(e,t){"function"==typeof console.warn&&(console.warn("New Relic: ".concat(e)),t&&console.warn(t))}r.d(t,{Z:()=>n})},2587:(e,t,r)=>{r.d(t,{N:()=>c,T:()=>u});var n=r(2177),i=r(5546),o=r(8e3),a=r(3325);const s={stn:[a.D.sessionTrace],err:[a.D.jserrors,a.D.metrics],ins:[a.D.pageAction],spa:[a.D.spa],sr:[a.D.sessionReplay,a.D.sessionTrace]};function c(e,t){const r=n.ee.get(t);e&&"object"==typeof e&&(Object.entries(e).forEach((e=>{let[t,n]=e;void 0===u[t]&&(s[t]?s[t].forEach((e=>{n?(0,i.p)("feat-"+t,[],void 0,e,r):(0,i.p)("block-"+t,[],void 0,e,r),(0,i.p)("rumresp-"+t,[Boolean(n)],void 0,e,r)})):n&&(0,i.p)("feat-"+t,[],void 0,void 0,r),u[t]=Boolean(n))})),Object.keys(s).forEach((e=>{void 0===u[e]&&(s[e]?.forEach((t=>(0,i.p)("rumresp-"+e,[!1],void 0,t,r))),u[e]=!1)})),(0,o.L)(t,a.D.pageViewEvent))}const u={}},2210:(e,t,r)=>{r.d(t,{X:()=>i});var n=Object.prototype.hasOwnProperty;function i(e,t,r){if(n.call(e,t))return e[t];var i=r();if(Object.defineProperty&&Object.keys)try{return Object.defineProperty(e,t,{value:i,writable:!0,enumerable:!1}),i}catch(e){}return e[t]=i,i}},1284:(e,t,r)=>{r.d(t,{D:()=>n});const n=(e,t)=>Object.entries(e||{}).map((e=>{let[r,n]=e;return t(r,n)}))},4351:(e,t,r)=>{r.d(t,{P:()=>o});var n=r(2177);const i=()=>{const e=new WeakSet;return(t,r)=>{if("object"==typeof r&&null!==r){if(e.has(r))return;e.add(r)}return r}};function o(e){try{return JSON.stringify(e,i())}catch(e){try{n.ee.emit("internal-error",[e])}catch(e){}}}},3960:(e,t,r)=>{r.d(t,{K:()=>a,b:()=>o});var n=r(3239);function i(){return"undefined"==typeof document||"complete"===document.readyState}function o(e,t){if(i())return e();(0,n.bP)("load",e,t)}function a(e){if(i())return e();(0,n.iz)("DOMContentLoaded",e)}},8632:(e,t,r)=>{r.d(t,{EZ:()=>u,Qy:()=>c,ce:()=>o,fP:()=>a,gG:()=>d,mF:()=>s});var n=r(7894),i=r(385);const o={beacon:"bam.nr-data.net",errorBeacon:"bam.nr-data.net"};function a(){return i._A.NREUM||(i._A.NREUM={}),void 0===i._A.newrelic&&(i._A.newrelic=i._A.NREUM),i._A.NREUM}function s(){let e=a();return e.o||(e.o={ST:i._A.setTimeout,SI:i._A.setImmediate,CT:i._A.clearTimeout,XHR:i._A.XMLHttpRequest,REQ:i._A.Request,EV:i._A.Event,PR:i._A.Promise,MO:i._A.MutationObserver,FETCH:i._A.fetch}),e}function c(e,t,r){let i=a();const o=i.initializedAgents||{},s=o[e]||{};return Object.keys(s).length||(s.initializedAt={ms:(0,n.z)(),date:new Date}),i.initializedAgents={...o,[e]:{...s,[r]:t}},i}function u(e,t){a()[e]=t}function d(){return function(){let e=a();const t=e.info||{};e.info={beacon:o.beacon,errorBeacon:o.errorBeacon,...t}}(),function(){let e=a();const t=e.init||{};e.init={...t}}(),s(),function(){let e=a();const t=e.loader_config||{};e.loader_config={...t}}(),a()}},7956:(e,t,r)=>{r.d(t,{N:()=>i});var n=r(3239);function i(e){let t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],r=arguments.length>2?arguments[2]:void 0,i=arguments.length>3?arguments[3]:void 0;return void(0,n.iz)("visibilitychange",(function(){if(t)return void("hidden"==document.visibilityState&&e());e(document.visibilityState)}),r,i)}},1214:(e,t,r)=>{r.d(t,{em:()=>v,u5:()=>N,QU:()=>S,_L:()=>I,Gm:()=>L,Lg:()=>M,gy:()=>U,BV:()=>Q,Kf:()=>ee});var n=r(2177);const i="nr@original";var o=Object.prototype.hasOwnProperty,a=!1;function s(e,t){return e||(e=n.ee),r.inPlace=function(e,t,n,i,o){n||(n="");var a,s,c,u="-"===n.charAt(0);for(c=0;c<t.length;c++)d(a=e[s=t[c]])||(e[s]=r(a,u?s+n:n,i,s,o))},r.flag=i,r;function r(t,r,n,a,s){return d(t)?t:(r||(r=""),nrWrapper[i]=t,u(t,nrWrapper,e),nrWrapper);function nrWrapper(){var i,u,d,f;try{u=this,i=[...arguments],d="function"==typeof n?n(i,u):n||{}}catch(t){c([t,"",[i,u,a],d],e)}o(r+"start",[i,u,a],d,s);try{return f=t.apply(u,i)}catch(e){throw o(r+"err",[i,u,e],d,s),e}finally{o(r+"end",[i,u,f],d,s)}}}function o(r,n,i,o){if(!a||t){var s=a;a=!0;try{e.emit(r,n,i,t,o)}catch(t){c([t,r,n,i],e)}a=s}}}function c(e,t){t||(t=n.ee);try{t.emit("internal-error",e)}catch(e){}}function u(e,t,r){if(Object.defineProperty&&Object.keys)try{return Object.keys(e).forEach((function(r){Object.defineProperty(t,r,{get:function(){return e[r]},set:function(t){return e[r]=t,t}})})),t}catch(e){c([e],r)}for(var n in e)o.call(e,n)&&(t[n]=e[n]);return t}function d(e){return!(e&&e instanceof Function&&e.apply&&!e[i])}var f=r(2210),l=r(385);const h={},g=XMLHttpRequest,p="addEventListener",m="removeEventListener";function v(e){var t=function(e){return(e||n.ee).get("events")}(e);if(h[t.debugId]++)return t;h[t.debugId]=1;var r=s(t,!0);function i(e){r.inPlace(e,[p,m],"-",o)}function o(e,t){return e[1]}return"getPrototypeOf"in Object&&(l.il&&b(document,i),b(l._A,i),b(g.prototype,i)),t.on(p+"-start",(function(e,t){var n=e[1];if(null!==n&&("function"==typeof n||"object"==typeof n)){var i=(0,f.X)(n,"nr@wrapped",(function(){var e={object:function(){if("function"!=typeof n.handleEvent)return;return n.handleEvent.apply(n,arguments)},function:n}[typeof n];return e?r(e,"fn-",null,e.name||"anonymous"):n}));this.wrapped=e[1]=i}})),t.on(m+"-start",(function(e){e[1]=this.wrapped||e[1]})),t}function b(e,t){let r=e;for(;"object"==typeof r&&!Object.prototype.hasOwnProperty.call(r,p);)r=Object.getPrototypeOf(r);for(var n=arguments.length,i=new Array(n>2?n-2:0),o=2;o<n;o++)i[o-2]=arguments[o];r&&t(r,...i)}var y="fetch-",w=y+"body-",x=["arrayBuffer","blob","json","text","formData"],A=l._A.Request,E=l._A.Response,T="prototype",_="nr@context";const D={};function N(e){const t=function(e){return(e||n.ee).get("fetch")}(e);if(!(A&&E&&l._A.fetch))return t;if(D[t.debugId]++)return t;function r(e,r,n){var i=e[r];"function"==typeof i&&(e[r]=function(){var e,r=[...arguments],o={};t.emit(n+"before-start",[r],o),o[_]&&o[_].dt&&(e=o[_].dt);var a=i.apply(this,r);return t.emit(n+"start",[r,e],a),a.then((function(e){return t.emit(n+"end",[null,e],a),e}),(function(e){throw t.emit(n+"end",[e],a),e}))})}return D[t.debugId]=1,x.forEach((e=>{r(A[T],e,w),r(E[T],e,w)})),r(l._A,"fetch",y),t.on(y+"end",(function(e,r){var n=this;if(r){var i=r.headers.get("content-length");null!==i&&(n.rxSize=i),t.emit(y+"done",[null,r],n)}else t.emit(y+"done",[e],n)})),t}const O={},j=["pushState","replaceState"];function S(e){const t=function(e){return(e||n.ee).get("history")}(e);return!l.il||O[t.debugId]++||(O[t.debugId]=1,s(t).inPlace(window.history,j,"-")),t}var P=r(3239);const C={},R=["appendChild","insertBefore","replaceChild"];function I(e){const t=function(e){return(e||n.ee).get("jsonp")}(e);if(!l.il||C[t.debugId])return t;C[t.debugId]=!0;var r=s(t),i=/[?&](?:callback|cb)=([^&#]+)/,o=/(.*)\.([^.]+)/,a=/^(\w+)(\.|$)(.*)$/;function c(e,t){var r=e.match(a),n=r[1],i=r[3];return i?c(i,t[n]):t[n]}return r.inPlace(Node.prototype,R,"dom-"),t.on("dom-start",(function(e){!function(e){if(!e||"string"!=typeof e.nodeName||"script"!==e.nodeName.toLowerCase())return;if("function"!=typeof e.addEventListener)return;var n=(a=e.src,s=a.match(i),s?s[1]:null);var a,s;if(!n)return;var u=function(e){var t=e.match(o);if(t&&t.length>=3)return{key:t[2],parent:c(t[1],window)};return{key:e,parent:window}}(n);if("function"!=typeof u.parent[u.key])return;var d={};function f(){t.emit("jsonp-end",[],d),e.removeEventListener("load",f,(0,P.m$)(!1)),e.removeEventListener("error",l,(0,P.m$)(!1))}function l(){t.emit("jsonp-error",[],d),t.emit("jsonp-end",[],d),e.removeEventListener("load",f,(0,P.m$)(!1)),e.removeEventListener("error",l,(0,P.m$)(!1))}r.inPlace(u.parent,[u.key],"cb-",d),e.addEventListener("load",f,(0,P.m$)(!1)),e.addEventListener("error",l,(0,P.m$)(!1)),t.emit("new-jsonp",[e.src],d)}(e[0])})),t}var k=r(5763);const H={};function L(e){const t=function(e){return(e||n.ee).get("mutation")}(e);if(!l.il||H[t.debugId])return t;H[t.debugId]=!0;var r=s(t),i=k.Yu.MO;return i&&(window.MutationObserver=function(e){return this instanceof i?new i(r(e,"fn-")):i.apply(this,arguments)},MutationObserver.prototype=i.prototype),t}const z={};function M(e){const t=function(e){return(e||n.ee).get("promise")}(e);if(z[t.debugId])return t;z[t.debugId]=!0;var r=n.c,o=s(t),a=k.Yu.PR;return a&&function(){function e(r){var n=t.context(),i=o(r,"executor-",n,null,!1);const s=Reflect.construct(a,[i],e);return t.context(s).getCtx=function(){return n},s}l._A.Promise=e,Object.defineProperty(e,"name",{value:"Promise"}),e.toString=function(){return a.toString()},Object.setPrototypeOf(e,a),["all","race"].forEach((function(r){const n=a[r];e[r]=function(e){let i=!1;[...e||[]].forEach((e=>{this.resolve(e).then(a("all"===r),a(!1))}));const o=n.apply(this,arguments);return o;function a(e){return function(){t.emit("propagate",[null,!i],o,!1,!1),i=i||!e}}}})),["resolve","reject"].forEach((function(r){const n=a[r];e[r]=function(e){const r=n.apply(this,arguments);return e!==r&&t.emit("propagate",[e,!0],r,!1,!1),r}})),e.prototype=a.prototype;const n=a.prototype.then;a.prototype.then=function(){var e=this,i=r(e);i.promise=e;for(var a=arguments.length,s=new Array(a),c=0;c<a;c++)s[c]=arguments[c];s[0]=o(s[0],"cb-",i,null,!1),s[1]=o(s[1],"cb-",i,null,!1);const u=n.apply(this,s);return i.nextPromise=u,t.emit("propagate",[e,!0],u,!1,!1),u},a.prototype.then[i]=n,t.on("executor-start",(function(e){e[0]=o(e[0],"resolve-",this,null,!1),e[1]=o(e[1],"resolve-",this,null,!1)})),t.on("executor-err",(function(e,t,r){e[1](r)})),t.on("cb-end",(function(e,r,n){t.emit("propagate",[n,!0],this.nextPromise,!1,!1)})),t.on("propagate",(function(e,r,n){this.getCtx&&!r||(this.getCtx=function(){if(e instanceof Promise)var r=t.context(e);return r&&r.getCtx?r.getCtx():this})}))}(),t}const B={},F="requestAnimationFrame";function U(e){const t=function(e){return(e||n.ee).get("raf")}(e);if(!l.il||B[t.debugId]++)return t;B[t.debugId]=1;var r=s(t);return r.inPlace(window,[F],"raf-"),t.on("raf-start",(function(e){e[0]=r(e[0],"fn-")})),t}const q={},G="setTimeout",V="setInterval",X="clearTimeout",W="-start",Z="-",$=[G,"setImmediate",V,X,"clearImmediate"];function Q(e){const t=function(e){return(e||n.ee).get("timer")}(e);if(q[t.debugId]++)return t;q[t.debugId]=1;var r=s(t);return r.inPlace(l._A,$.slice(0,2),G+Z),r.inPlace(l._A,$.slice(2,3),V+Z),r.inPlace(l._A,$.slice(3),X+Z),t.on(V+W,(function(e,t,n){e[0]=r(e[0],"fn-",null,n)})),t.on(G+W,(function(e,t,n){this.method=n,this.timerDuration=isNaN(e[1])?0:+e[1],e[0]=r(e[0],"fn-",this,n)})),t}var Y=r(50);const K={},J=["open","send"];function ee(e){var t=e||n.ee;const r=function(e){return(e||n.ee).get("xhr")}(t);if(K[r.debugId]++)return r;K[r.debugId]=1,v(t);var i=s(r),o=k.Yu.XHR,a=k.Yu.MO,c=k.Yu.PR,u=k.Yu.SI,d="readystatechange",f=["onload","onerror","onabort","onloadstart","onloadend","onprogress","ontimeout"],h=[],g=l._A.XMLHttpRequest.listeners,p=l._A.XMLHttpRequest=function(e){var t=new o(e);function n(){try{r.emit("new-xhr",[t],t),t.addEventListener(d,b,(0,P.m$)(!1))}catch(e){(0,Y.Z)("An error occured while intercepting XHR",e);try{r.emit("internal-error",[e])}catch(e){}}}return this.listeners=g?[...g,n]:[n],this.listeners.forEach((e=>e())),t};function m(e,t){i.inPlace(t,["onreadystatechange"],"fn-",E)}function b(){var e=this,t=r.context(e);e.readyState>3&&!t.resolved&&(t.resolved=!0,r.emit("xhr-resolved",[],e)),i.inPlace(e,f,"fn-",E)}if(function(e,t){for(var r in e)t[r]=e[r]}(o,p),p.prototype=o.prototype,i.inPlace(p.prototype,J,"-xhr-",E),r.on("send-xhr-start",(function(e,t){m(e,t),function(e){h.push(e),a&&(y?y.then(A):u?u(A):(w=-w,x.data=w))}(t)})),r.on("open-xhr-start",m),a){var y=c&&c.resolve();if(!u&&!c){var w=1,x=document.createTextNode(w);new a(A).observe(x,{characterData:!0})}}else t.on("fn-end",(function(e){e[0]&&e[0].type===d||A()}));function A(){for(var e=0;e<h.length;e++)m(0,h[e]);h.length&&(h=[])}function E(e,t){return t}return r}},7825:(e,t,r)=>{r.d(t,{t:()=>n});const n=r(3325).D.ajax},6660:(e,t,r)=>{r.d(t,{A:()=>i,t:()=>n});const n=r(3325).D.jserrors,i="nr@seenError"},3081:(e,t,r)=>{r.d(t,{gF:()=>o,mY:()=>i,t9:()=>n,vz:()=>s,xS:()=>a});const n=r(3325).D.metrics,i="sm",o="cm",a="storeSupportabilityMetrics",s="storeEventMetrics"},4649:(e,t,r)=>{r.d(t,{t:()=>n});const n=r(3325).D.pageAction},7633:(e,t,r)=>{r.d(t,{Dz:()=>i,OJ:()=>a,qw:()=>o,t9:()=>n});const n=r(3325).D.pageViewEvent,i="firstbyte",o="domcontent",a="windowload"},9251:(e,t,r)=>{r.d(t,{t:()=>n});const n=r(3325).D.pageViewTiming},3614:(e,t,r)=>{r.d(t,{BST_RESOURCE:()=>i,END:()=>s,FEATURE_NAME:()=>n,FN_END:()=>u,FN_START:()=>c,PUSH_STATE:()=>d,RESOURCE:()=>o,START:()=>a});const n=r(3325).D.sessionTrace,i="bstResource",o="resource",a="-start",s="-end",c="fn"+a,u="fn"+s,d="pushState"},7836:(e,t,r)=>{r.d(t,{BODY:()=>A,CB_END:()=>E,CB_START:()=>u,END:()=>x,FEATURE_NAME:()=>i,FETCH:()=>_,FETCH_BODY:()=>v,FETCH_DONE:()=>m,FETCH_START:()=>p,FN_END:()=>c,FN_START:()=>s,INTERACTION:()=>l,INTERACTION_API:()=>d,INTERACTION_EVENTS:()=>o,JSONP_END:()=>b,JSONP_NODE:()=>g,JS_TIME:()=>T,MAX_TIMER_BUDGET:()=>a,REMAINING:()=>f,SPA_NODE:()=>h,START:()=>w,originalSetTimeout:()=>y});var n=r(5763);const i=r(3325).D.spa,o=["click","submit","keypress","keydown","keyup","change"],a=999,s="fn-start",c="fn-end",u="cb-start",d="api-ixn-",f="remaining",l="interaction",h="spaNode",g="jsonpNode",p="fetch-start",m="fetch-done",v="fetch-body-",b="jsonp-end",y=n.Yu.ST,w="-start",x="-end",A="-body",E="cb"+x,T="jsTime",_="fetch"},5938:(e,t,r)=>{r.d(t,{W:()=>o});var n=r(5763),i=r(2177);class o{constructor(e,t,r){this.agentIdentifier=e,this.aggregator=t,this.ee=i.ee.get(e,(0,n.OP)(this.agentIdentifier).isolatedBacklog),this.featureName=r,this.blocked=!1}}},9144:(e,t,r)=>{r.d(t,{j:()=>m});var n=r(3325),i=r(5763),o=r(5546),a=r(2177),s=r(7894),c=r(8e3),u=r(3960),d=r(385),f=r(50),l=r(3081),h=r(8632);function g(){const e=(0,h.gG)();["setErrorHandler","finished","addToTrace","inlineHit","addRelease","addPageAction","setCurrentRouteName","setPageViewName","setCustomAttribute","interaction","noticeError","setUserId"].forEach((t=>{e[t]=function(){for(var r=arguments.length,n=new Array(r),i=0;i<r;i++)n[i]=arguments[i];return function(t){for(var r=arguments.length,n=new Array(r>1?r-1:0),i=1;i<r;i++)n[i-1]=arguments[i];let o=[];return Object.values(e.initializedAgents).forEach((e=>{e.exposed&&e.api[t]&&o.push(e.api[t](...n))})),o.length>1?o:o[0]}(t,...n)}}))}var p=r(2587);function m(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},m=arguments.length>2?arguments[2]:void 0,v=arguments.length>3?arguments[3]:void 0,{init:b,info:y,loader_config:w,runtime:x={loaderType:m},exposed:A=!0}=t;const E=(0,h.gG)();y||(b=E.init,y=E.info,w=E.loader_config),(0,i.Dg)(e,b||{}),(0,i.GE)(e,w||{}),(0,i.sU)(e,x),y.jsAttributes??={},d.v6&&(y.jsAttributes.isWorker=!0),(0,i.CX)(e,y),g();const T=function(e,t){t||(0,c.R)(e,"api");const h={};var g=a.ee.get(e),p=g.get("tracer"),m="api-",v=m+"ixn-";function b(t,r,n,o){const a=(0,i.C5)(e);return null===r?delete a.jsAttributes[t]:(0,i.CX)(e,{...a,jsAttributes:{...a.jsAttributes,[t]:r}}),x(m,n,!0,o||null===r?"session":void 0)(t,r)}function y(){}["setErrorHandler","finished","addToTrace","inlineHit","addRelease"].forEach((e=>h[e]=x(m,e,!0,"api"))),h.addPageAction=x(m,"addPageAction",!0,n.D.pageAction),h.setCurrentRouteName=x(m,"routeName",!0,n.D.spa),h.setPageViewName=function(t,r){if("string"==typeof t)return"/"!==t.charAt(0)&&(t="/"+t),(0,i.OP)(e).customTransaction=(r||"http://custom.transaction")+t,x(m,"setPageViewName",!0)()},h.setCustomAttribute=function(e,t){let r=arguments.length>2&&void 0!==arguments[2]&&arguments[2];if("string"==typeof e){if(["string","number"].includes(typeof t)||null===t)return b(e,t,"setCustomAttribute",r);(0,f.Z)("Failed to execute setCustomAttribute.\nNon-null value must be a string or number type, but a type of <".concat(typeof t,"> was provided."))}else(0,f.Z)("Failed to execute setCustomAttribute.\nName must be a string type, but a type of <".concat(typeof e,"> was provided."))},h.setUserId=function(e){if("string"==typeof e||null===e)return b("enduser.id",e,"setUserId",!0);(0,f.Z)("Failed to execute setUserId.\nNon-null value must be a string type, but a type of <".concat(typeof e,"> was provided."))},h.interaction=function(){return(new y).get()};var w=y.prototype={createTracer:function(e,t){var r={},i=this,a="function"==typeof t;return(0,o.p)(v+"tracer",[(0,s.z)(),e,r],i,n.D.spa,g),function(){if(p.emit((a?"":"no-")+"fn-start",[(0,s.z)(),i,a],r),a)try{return t.apply(this,arguments)}catch(e){throw p.emit("fn-err",[arguments,this,"string"==typeof e?new Error(e):e],r),e}finally{p.emit("fn-end",[(0,s.z)()],r)}}}};function x(e,t,r,i){return function(){return(0,o.p)(l.xS,["API/"+t+"/called"],void 0,n.D.metrics,g),i&&(0,o.p)(e+t,[(0,s.z)(),...arguments],r?null:this,i,g),r?void 0:this}}function A(){r.e(439).then(r.bind(r,7438)).then((t=>{let{setAPI:r}=t;r(e),(0,c.L)(e,"api")})).catch((()=>(0,f.Z)("Downloading runtime APIs failed...")))}return["actionText","setName","setAttribute","save","ignore","onEnd","getContext","end","get"].forEach((e=>{w[e]=x(v,e,void 0,n.D.spa)})),h.noticeError=function(e,t){"string"==typeof e&&(e=new Error(e)),(0,o.p)(l.xS,["API/noticeError/called"],void 0,n.D.metrics,g),(0,o.p)("err",[e,(0,s.z)(),!1,t],void 0,n.D.jserrors,g)},d.il?(0,u.b)((()=>A()),!0):A(),h}(e,v);return(0,h.Qy)(e,T,"api"),(0,h.Qy)(e,A,"exposed"),(0,h.EZ)("activatedFeatures",p.T),T}},3325:(e,t,r)=>{r.d(t,{D:()=>n,p:()=>i});const n={ajax:"ajax",jserrors:"jserrors",metrics:"metrics",pageAction:"page_action",pageViewEvent:"page_view_event",pageViewTiming:"page_view_timing",sessionReplay:"session_replay",sessionTrace:"session_trace",spa:"spa"},i={[n.pageViewEvent]:1,[n.pageViewTiming]:2,[n.metrics]:3,[n.jserrors]:4,[n.ajax]:5,[n.sessionTrace]:6,[n.pageAction]:7,[n.spa]:8,[n.sessionReplay]:9}}},n={};function i(e){var t=n[e];if(void 0!==t)return t.exports;var o=n[e]={exports:{}};return r[e](o,o.exports,i),o.exports}i.m=r,i.d=(e,t)=>{for(var r in t)i.o(t,r)&&!i.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},i.f={},i.e=e=>Promise.all(Object.keys(i.f).reduce(((t,r)=>(i.f[r](e,t),t)),[])),i.u=e=>(({78:"page_action-aggregate",147:"metrics-aggregate",242:"session-manager",317:"jserrors-aggregate",348:"page_view_timing-aggregate",412:"lazy-feature-loader",439:"async-api",538:"recorder",590:"session_replay-aggregate",675:"compressor",733:"session_trace-aggregate",786:"page_view_event-aggregate",873:"spa-aggregate",898:"ajax-aggregate"}[e]||e)+"."+{78:"ac76d497",147:"3dc53903",148:"1a20d5fe",242:"2a64278a",317:"49e41428",348:"bd6de33a",412:"2f55ce66",439:"30bd804e",538:"1b18459f",590:"cf0efb30",675:"ae9f91a8",733:"83105561",786:"06482edd",860:"03a8b7a5",873:"e6b09d52",898:"998ef92b"}[e]+"-1.236.0.min.js"),i.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),e={},t="NRBA:",i.l=(r,n,o,a)=>{if(e[r])e[r].push(n);else{var s,c;if(void 0!==o)for(var u=document.getElementsByTagName("script"),d=0;d<u.length;d++){var f=u[d];if(f.getAttribute("src")==r||f.getAttribute("data-webpack")==t+o){s=f;break}}s||(c=!0,(s=document.createElement("script")).charset="utf-8",s.timeout=120,i.nc&&s.setAttribute("nonce",i.nc),s.setAttribute("data-webpack",t+o),s.src=r),e[r]=[n];var l=(t,n)=>{s.onerror=s.onload=null,clearTimeout(h);var i=e[r];if(delete e[r],s.parentNode&&s.parentNode.removeChild(s),i&&i.forEach((e=>e(n))),t)return t(n)},h=setTimeout(l.bind(null,void 0,{type:"timeout",target:s}),12e4);s.onerror=l.bind(null,s.onerror),s.onload=l.bind(null,s.onload),c&&document.head.appendChild(s)}},i.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.j=364,i.p="https://js-agent.newrelic.com/",(()=>{var e={364:0,953:0};i.f.j=(t,r)=>{var n=i.o(e,t)?e[t]:void 0;if(0!==n)if(n)r.push(n[2]);else{var o=new Promise(((r,i)=>n=e[t]=[r,i]));r.push(n[2]=o);var a=i.p+i.u(t),s=new Error;i.l(a,(r=>{if(i.o(e,t)&&(0!==(n=e[t])&&(e[t]=void 0),n)){var o=r&&("load"===r.type?"missing":r.type),a=r&&r.target&&r.target.src;s.message="Loading chunk "+t+" failed.\n("+o+": "+a+")",s.name="ChunkLoadError",s.type=o,s.request=a,n[1](s)}}),"chunk-"+t,t)}};var t=(t,r)=>{var n,o,[a,s,c]=r,u=0;if(a.some((t=>0!==e[t]))){for(n in s)i.o(s,n)&&(i.m[n]=s[n]);if(c)c(i)}for(t&&t(r);u<a.length;u++)o=a[u],i.o(e,o)&&e[o]&&e[o][0](),e[o]=0},r=window.webpackChunkNRBA=window.webpackChunkNRBA||[];r.forEach(t.bind(null,0)),r.push=t.bind(null,r.push.bind(r))})();var o={};(()=>{i.r(o);var e=i(3325),t=i(5763);const r=Object.values(e.D);function n(e){const n={};return r.forEach((r=>{n[r]=function(e,r){return!1!==(0,t.Mt)(r,"".concat(e,".enabled"))}(r,e)})),n}var a=i(9144);var s=i(5546),c=i(385),u=i(8e3),d=i(5938),f=i(3960),l=i(50);class h extends d.W{constructor(e,t,r){let n=!(arguments.length>3&&void 0!==arguments[3])||arguments[3];super(e,t,r),this.auto=n,this.abortHandler,this.featAggregate,this.onAggregateImported,n&&(0,u.R)(e,r)}importAggregator(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(this.featAggregate||!this.auto)return;const r=c.il&&!0===(0,t.Mt)(this.agentIdentifier,"privacy.cookies_enabled");let n;this.onAggregateImported=new Promise((e=>{n=e}));const o=async()=>{let t;try{if(r){const{setupAgentSession:e}=await Promise.all([i.e(860),i.e(242)]).then(i.bind(i,3228));t=e(this.agentIdentifier)}}catch(e){(0,l.Z)("A problem occurred when starting up session manager. This page will not start or extend any session.",e)}try{if(!this.shouldImportAgg(this.featureName,t))return void(0,u.L)(this.agentIdentifier,this.featureName);const{lazyFeatureLoader:r}=await i.e(412).then(i.bind(i,8582)),{Aggregate:o}=await r(this.featureName,"aggregate");this.featAggregate=new o(this.agentIdentifier,this.aggregator,e),n(!0)}catch(e){(0,l.Z)("Downloading and initializing ".concat(this.featureName," failed..."),e),this.abortHandler?.(),n(!1)}};c.il?(0,f.b)((()=>o()),!0):o()}shouldImportAgg(r,n){return r!==e.D.sessionReplay||!1!==(0,t.Mt)(this.agentIdentifier,"session_trace.enabled")&&(!!n?.isNew||!!n?.state.sessionReplay)}}var g=i(7633),p=i(7894);class m extends h{static featureName=g.t9;constructor(r,n){let i=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];if(super(r,n,g.t9,i),("undefined"==typeof PerformanceNavigationTiming||c.Tt)&&"undefined"!=typeof PerformanceTiming){const n=(0,t.OP)(r);n[g.Dz]=Math.max(Date.now()-n.offset,0),(0,f.K)((()=>n[g.qw]=Math.max((0,p.z)()-n[g.Dz],0))),(0,f.b)((()=>{const t=(0,p.z)();n[g.OJ]=Math.max(t-n[g.Dz],0),(0,s.p)("timing",["load",t],void 0,e.D.pageViewTiming,this.ee)}))}this.importAggregator()}}var v=i(1117),b=i(1284);class y extends v.w{constructor(e){super(e),this.aggregatedData={}}store(e,t,r,n,i){var o=this.getBucket(e,t,r,i);return o.metrics=function(e,t){t||(t={count:0});return t.count+=1,(0,b.D)(e,(function(e,r){t[e]=w(r,t[e])})),t}(n,o.metrics),o}merge(e,t,r,n,i){var o=this.getBucket(e,t,n,i);if(o.metrics){var a=o.metrics;a.count+=r.count,(0,b.D)(r,(function(e,t){if("count"!==e){var n=a[e],i=r[e];i&&!i.c?a[e]=w(i.t,n):a[e]=function(e,t){if(!t)return e;t.c||(t=x(t.t));return t.min=Math.min(e.min,t.min),t.max=Math.max(e.max,t.max),t.t+=e.t,t.sos+=e.sos,t.c+=e.c,t}(i,a[e])}}))}else o.metrics=r}storeMetric(e,t,r,n){var i=this.getBucket(e,t,r);return i.stats=w(n,i.stats),i}getBucket(e,t,r,n){this.aggregatedData[e]||(this.aggregatedData[e]={});var i=this.aggregatedData[e][t];return i||(i=this.aggregatedData[e][t]={params:r||{}},n&&(i.custom=n)),i}get(e,t){return t?this.aggregatedData[e]&&this.aggregatedData[e][t]:this.aggregatedData[e]}take(e){for(var t={},r="",n=!1,i=0;i<e.length;i++)t[r=e[i]]=A(this.aggregatedData[r]),t[r].length&&(n=!0),delete this.aggregatedData[r];return n?t:null}}function w(e,t){return null==e?function(e){e?e.c++:e={c:1};return e}(t):t?(t.c||(t=x(t.t)),t.c+=1,t.t+=e,t.sos+=e*e,e>t.max&&(t.max=e),e<t.min&&(t.min=e),t):{t:e}}function x(e){return{t:e,min:e,max:e,sos:e*e,c:1}}function A(e){return"object"!=typeof e?[]:(0,b.D)(e,E)}function E(e,t){return t}var T=i(8632),_=i(4402),D=i(4351);var N=i(7956),O=i(3239),j=i(9251);class S extends h{static featureName=j.t;constructor(e,r){let n=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];super(e,r,j.t,n),c.il&&((0,t.OP)(e).initHidden=Boolean("hidden"===document.visibilityState),(0,N.N)((()=>(0,s.p)("docHidden",[(0,p.z)()],void 0,j.t,this.ee)),!0),(0,O.bP)("pagehide",(()=>(0,s.p)("winPagehide",[(0,p.z)()],void 0,j.t,this.ee))),this.importAggregator())}}var P=i(3081);class C extends h{static featureName=P.t9;constructor(e,t){let r=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];super(e,t,P.t9,r),this.importAggregator()}}var R,I=i(2210),k=i(1214),H=i(2177),L={};try{R=localStorage.getItem("__nr_flags").split(","),console&&"function"==typeof console.log&&(L.console=!0,-1!==R.indexOf("dev")&&(L.dev=!0),-1!==R.indexOf("nr_dev")&&(L.nrDev=!0))}catch(e){}function z(e){try{L.console&&z(e)}catch(e){}}L.nrDev&&H.ee.on("internal-error",(function(e){z(e.stack)})),L.dev&&H.ee.on("fn-err",(function(e,t,r){z(r.stack)})),L.dev&&(z("NR AGENT IN DEVELOPMENT MODE"),z("flags: "+(0,b.D)(L,(function(e,t){return e})).join(", ")));var M=i(6660);class B extends h{static featureName=M.t;constructor(r,n){let i=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];super(r,n,M.t,i),this.skipNext=0;try{this.removeOnAbort=new AbortController}catch(e){}const o=this;o.ee.on("fn-start",(function(e,t,r){o.abortHandler&&(o.skipNext+=1)})),o.ee.on("fn-err",(function(t,r,n){o.abortHandler&&!n[M.A]&&((0,I.X)(n,M.A,(function(){return!0})),this.thrown=!0,(0,s.p)("err",[n,(0,p.z)()],void 0,e.D.jserrors,o.ee))})),o.ee.on("fn-end",(function(){o.abortHandler&&!this.thrown&&o.skipNext>0&&(o.skipNext-=1)})),o.ee.on("internal-error",(function(t){(0,s.p)("ierr",[t,(0,p.z)(),!0],void 0,e.D.jserrors,o.ee)})),this.origOnerror=c._A.onerror,c._A.onerror=this.onerrorHandler.bind(this),c._A.addEventListener("unhandledrejection",(t=>{const r=function(e){let t="Unhandled Promise Rejection: ";if(e instanceof Error)try{return e.message=t+e.message,e}catch(t){return e}if(void 0===e)return new Error(t);try{return new Error(t+(0,D.P)(e))}catch(e){return new Error(t)}}(t.reason);(0,s.p)("err",[r,(0,p.z)(),!1,{unhandledPromiseRejection:1}],void 0,e.D.jserrors,this.ee)}),(0,O.m$)(!1,this.removeOnAbort?.signal)),(0,k.gy)(this.ee),(0,k.BV)(this.ee),(0,k.em)(this.ee),(0,t.OP)(r).xhrWrappable&&(0,k.Kf)(this.ee),this.abortHandler=this.#e,this.importAggregator()}#e(){this.removeOnAbort?.abort(),this.abortHandler=void 0}onerrorHandler(t,r,n,i,o){"function"==typeof this.origOnerror&&this.origOnerror(...arguments);try{this.skipNext?this.skipNext-=1:(0,s.p)("err",[o||new F(t,r,n),(0,p.z)()],void 0,e.D.jserrors,this.ee)}catch(t){try{(0,s.p)("ierr",[t,(0,p.z)(),!0],void 0,e.D.jserrors,this.ee)}catch(e){}}return!1}}function F(e,t,r){this.message=e||"Uncaught error with no additional information",this.sourceURL=t,this.line=r}let U=1;const q="nr@id";function G(e){const t=typeof e;return!e||"object"!==t&&"function"!==t?-1:e===c._A?0:(0,I.X)(e,q,(function(){return U++}))}function V(e){if("string"==typeof e&&e.length)return e.length;if("object"==typeof e){if("undefined"!=typeof ArrayBuffer&&e instanceof ArrayBuffer&&e.byteLength)return e.byteLength;if("undefined"!=typeof Blob&&e instanceof Blob&&e.size)return e.size;if(!("undefined"!=typeof FormData&&e instanceof FormData))try{return(0,D.P)(e).length}catch(e){return}}}var X=i(7243);class W{constructor(e){this.agentIdentifier=e,this.generateTracePayload=this.generateTracePayload.bind(this),this.shouldGenerateTrace=this.shouldGenerateTrace.bind(this)}generateTracePayload(e){if(!this.shouldGenerateTrace(e))return null;var r=(0,t.DL)(this.agentIdentifier);if(!r)return null;var n=(r.accountID||"").toString()||null,i=(r.agentID||"").toString()||null,o=(r.trustKey||"").toString()||null;if(!n||!i)return null;var a=(0,_.M)(),s=(0,_.Ht)(),c=Date.now(),u={spanId:a,traceId:s,timestamp:c};return(e.sameOrigin||this.isAllowedOrigin(e)&&this.useTraceContextHeadersForCors())&&(u.traceContextParentHeader=this.generateTraceContextParentHeader(a,s),u.traceContextStateHeader=this.generateTraceContextStateHeader(a,c,n,i,o)),(e.sameOrigin&&!this.excludeNewrelicHeader()||!e.sameOrigin&&this.isAllowedOrigin(e)&&this.useNewrelicHeaderForCors())&&(u.newrelicHeader=this.generateTraceHeader(a,s,c,n,i,o)),u}generateTraceContextParentHeader(e,t){return"00-"+t+"-"+e+"-01"}generateTraceContextStateHeader(e,t,r,n,i){return i+"@nr=0-1-"+r+"-"+n+"-"+e+"----"+t}generateTraceHeader(e,t,r,n,i,o){if(!("function"==typeof c._A?.btoa))return null;var a={v:[0,1],d:{ty:"Browser",ac:n,ap:i,id:e,tr:t,ti:r}};return o&&n!==o&&(a.d.tk=o),btoa((0,D.P)(a))}shouldGenerateTrace(e){return this.isDtEnabled()&&this.isAllowedOrigin(e)}isAllowedOrigin(e){var r=!1,n={};if((0,t.Mt)(this.agentIdentifier,"distributed_tracing")&&(n=(0,t.P_)(this.agentIdentifier).distributed_tracing),e.sameOrigin)r=!0;else if(n.allowed_origins instanceof Array)for(var i=0;i<n.allowed_origins.length;i++){var o=(0,X.e)(n.allowed_origins[i]);if(e.hostname===o.hostname&&e.protocol===o.protocol&&e.port===o.port){r=!0;break}}return r}isDtEnabled(){var e=(0,t.Mt)(this.agentIdentifier,"distributed_tracing");return!!e&&!!e.enabled}excludeNewrelicHeader(){var e=(0,t.Mt)(this.agentIdentifier,"distributed_tracing");return!!e&&!!e.exclude_newrelic_header}useNewrelicHeaderForCors(){var e=(0,t.Mt)(this.agentIdentifier,"distributed_tracing");return!!e&&!1!==e.cors_use_newrelic_header}useTraceContextHeadersForCors(){var e=(0,t.Mt)(this.agentIdentifier,"distributed_tracing");return!!e&&!!e.cors_use_tracecontext_headers}}var Z=i(7825),$=["load","error","abort","timeout"],Q=$.length,Y=t.Yu.REQ,K=c._A.XMLHttpRequest;class J extends h{static featureName=Z.t;constructor(r,n){let i=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];super(r,n,Z.t,i),(0,t.OP)(r).xhrWrappable&&(this.dt=new W(r),this.handler=(e,t,r,n)=>(0,s.p)(e,t,r,n,this.ee),(0,k.u5)(this.ee),(0,k.Kf)(this.ee),function(r,n,i,o){function a(e){var t=this;t.totalCbs=0,t.called=0,t.cbTime=0,t.end=E,t.ended=!1,t.xhrGuids={},t.lastSize=null,t.loadCaptureCalled=!1,t.params=this.params||{},t.metrics=this.metrics||{},e.addEventListener("load",(function(r){_(t,e)}),(0,O.m$)(!1)),c.IF||e.addEventListener("progress",(function(e){t.lastSize=e.loaded}),(0,O.m$)(!1))}function s(e){this.params={method:e[0]},T(this,e[1]),this.metrics={}}function u(e,n){var i=(0,t.DL)(r);i.xpid&&this.sameOrigin&&n.setRequestHeader("X-NewRelic-ID",i.xpid);var a=o.generateTracePayload(this.parsedOrigin);if(a){var s=!1;a.newrelicHeader&&(n.setRequestHeader("newrelic",a.newrelicHeader),s=!0),a.traceContextParentHeader&&(n.setRequestHeader("traceparent",a.traceContextParentHeader),a.traceContextStateHeader&&n.setRequestHeader("tracestate",a.traceContextStateHeader),s=!0),s&&(this.dt=a)}}function d(e,t){var r=this.metrics,i=e[0],o=this;if(r&&i){var a=V(i);a&&(r.txSize=a)}this.startTime=(0,p.z)(),this.listener=function(e){try{"abort"!==e.type||o.loadCaptureCalled||(o.params.aborted=!0),("load"!==e.type||o.called===o.totalCbs&&(o.onloadCalled||"function"!=typeof t.onload)&&"function"==typeof o.end)&&o.end(t)}catch(e){try{n.emit("internal-error",[e])}catch(e){}}};for(var s=0;s<Q;s++)t.addEventListener($[s],this.listener,(0,O.m$)(!1))}function f(e,t,r){this.cbTime+=e,t?this.onloadCalled=!0:this.called+=1,this.called!==this.totalCbs||!this.onloadCalled&&"function"==typeof r.onload||"function"!=typeof this.end||this.end(r)}function l(e,t){var r=""+G(e)+!!t;this.xhrGuids&&!this.xhrGuids[r]&&(this.xhrGuids[r]=!0,this.totalCbs+=1)}function h(e,t){var r=""+G(e)+!!t;this.xhrGuids&&this.xhrGuids[r]&&(delete this.xhrGuids[r],this.totalCbs-=1)}function g(){this.endTime=(0,p.z)()}function m(e,t){t instanceof K&&"load"===e[0]&&n.emit("xhr-load-added",[e[1],e[2]],t)}function v(e,t){t instanceof K&&"load"===e[0]&&n.emit("xhr-load-removed",[e[1],e[2]],t)}function b(e,t,r){t instanceof K&&("onload"===r&&(this.onload=!0),("load"===(e[0]&&e[0].type)||this.onload)&&(this.xhrCbStart=(0,p.z)()))}function y(e,t){this.xhrCbStart&&n.emit("xhr-cb-time",[(0,p.z)()-this.xhrCbStart,this.onload,t],t)}function w(e){var t,r=e[1]||{};"string"==typeof e[0]?t=e[0]:e[0]&&e[0].url?t=e[0].url:c._A?.URL&&e[0]&&e[0]instanceof URL&&(t=e[0].href),t&&(this.parsedOrigin=(0,X.e)(t),this.sameOrigin=this.parsedOrigin.sameOrigin);var n=o.generateTracePayload(this.parsedOrigin);if(n&&(n.newrelicHeader||n.traceContextParentHeader))if("string"==typeof e[0]||c._A?.URL&&e[0]&&e[0]instanceof URL){var i={};for(var a in r)i[a]=r[a];i.headers=new Headers(r.headers||{}),s(i.headers,n)&&(this.dt=n),e.length>1?e[1]=i:e.push(i)}else e[0]&&e[0].headers&&s(e[0].headers,n)&&(this.dt=n);function s(e,t){var r=!1;return t.newrelicHeader&&(e.set("newrelic",t.newrelicHeader),r=!0),t.traceContextParentHeader&&(e.set("traceparent",t.traceContextParentHeader),t.traceContextStateHeader&&e.set("tracestate",t.traceContextStateHeader),r=!0),r}}function x(e,t){this.params={},this.metrics={},this.startTime=(0,p.z)(),this.dt=t,e.length>=1&&(this.target=e[0]),e.length>=2&&(this.opts=e[1]);var r,n=this.opts||{},i=this.target;"string"==typeof i?r=i:"object"==typeof i&&i instanceof Y?r=i.url:c._A?.URL&&"object"==typeof i&&i instanceof URL&&(r=i.href),T(this,r);var o=(""+(i&&i instanceof Y&&i.method||n.method||"GET")).toUpperCase();this.params.method=o,this.txSize=V(n.body)||0}function A(t,r){var n;this.endTime=(0,p.z)(),this.params||(this.params={}),this.params.status=r?r.status:0,"string"==typeof this.rxSize&&this.rxSize.length>0&&(n=+this.rxSize);var o={txSize:this.txSize,rxSize:n,duration:(0,p.z)()-this.startTime};i("xhr",[this.params,o,this.startTime,this.endTime,"fetch"],this,e.D.ajax)}function E(t){var r=this.params,n=this.metrics;if(!this.ended){this.ended=!0;for(var o=0;o<Q;o++)t.removeEventListener($[o],this.listener,!1);r.aborted||(n.duration=(0,p.z)()-this.startTime,this.loadCaptureCalled||4!==t.readyState?null==r.status&&(r.status=0):_(this,t),n.cbTime=this.cbTime,i("xhr",[r,n,this.startTime,this.endTime,"xhr"],this,e.D.ajax))}}function T(e,t){var r=(0,X.e)(t),n=e.params;n.hostname=r.hostname,n.port=r.port,n.protocol=r.protocol,n.host=r.hostname+":"+r.port,n.pathname=r.pathname,e.parsedOrigin=r,e.sameOrigin=r.sameOrigin}function _(e,t){e.params.status=t.status;var r=function(e,t){var r=e.responseType;return"json"===r&&null!==t?t:"arraybuffer"===r||"blob"===r||"json"===r?V(e.response):"text"===r||""===r||void 0===r?V(e.responseText):void 0}(t,e.lastSize);if(r&&(e.metrics.rxSize=r),e.sameOrigin){var n=t.getResponseHeader("X-NewRelic-App-Data");n&&(e.params.cat=n.split(", ").pop())}e.loadCaptureCalled=!0}n.on("new-xhr",a),n.on("open-xhr-start",s),n.on("open-xhr-end",u),n.on("send-xhr-start",d),n.on("xhr-cb-time",f),n.on("xhr-load-added",l),n.on("xhr-load-removed",h),n.on("xhr-resolved",g),n.on("addEventListener-end",m),n.on("removeEventListener-end",v),n.on("fn-end",y),n.on("fetch-before-start",w),n.on("fetch-start",x),n.on("fn-start",b),n.on("fetch-done",A)}(r,this.ee,this.handler,this.dt),this.importAggregator())}}var ee=i(3614);const{BST_RESOURCE:te,RESOURCE:re,START:ne,END:ie,FEATURE_NAME:oe,FN_END:ae,FN_START:se,PUSH_STATE:ce}=ee;var ue=i(7836);const{FEATURE_NAME:de,START:fe,END:le,BODY:he,CB_END:ge,JS_TIME:pe,FETCH:me,FN_START:ve,CB_START:be,FN_END:ye}=ue;var we=i(4649);class xe extends h{static featureName=we.t;constructor(e,t){let r=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];super(e,t,we.t,r),this.importAggregator()}}new class{constructor(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:(0,_.ky)(16);c._A?(this.agentIdentifier=t,this.sharedAggregator=new y({agentIdentifier:this.agentIdentifier}),this.features={},this.desiredFeatures=new Set(e.features||[]),this.desiredFeatures.add(m),Object.assign(this,(0,a.j)(this.agentIdentifier,e,e.loaderType||"agent")),this.start()):(0,l.Z)("Failed to initial the agent. Could not determine the runtime environment.")}get config(){return{info:(0,t.C5)(this.agentIdentifier),init:(0,t.P_)(this.agentIdentifier),loader_config:(0,t.DL)(this.agentIdentifier),runtime:(0,t.OP)(this.agentIdentifier)}}start(){const t="features";try{const r=n(this.agentIdentifier),i=[...this.desiredFeatures];i.sort(((t,r)=>e.p[t.featureName]-e.p[r.featureName])),i.forEach((t=>{if(r[t.featureName]||t.featureName===e.D.pageViewEvent){const n=function(t){switch(t){case e.D.ajax:return[e.D.jserrors];case e.D.sessionTrace:return[e.D.ajax,e.D.pageViewEvent];case e.D.sessionReplay:return[e.D.sessionTrace];case e.D.pageViewTiming:return[e.D.pageViewEvent];default:return[]}}(t.featureName);n.every((e=>r[e]))||(0,l.Z)("".concat(t.featureName," is enabled but one or more dependent features has been disabled (").concat((0,D.P)(n),"). This may cause unintended consequences or missing data...")),this.features[t.featureName]=new t(this.agentIdentifier,this.sharedAggregator)}})),(0,T.Qy)(this.agentIdentifier,this.features,t)}catch(e){(0,l.Z)("Failed to initialize all enabled instrument classes (agent aborted) -",e);for(const e in this.features)this.features[e].abortHandler?.();const r=(0,T.fP)();return delete r.initializedAgents[this.agentIdentifier]?.api,delete r.initializedAgents[this.agentIdentifier]?.[t],delete this.sharedAggregator,r.ee?.abort(),delete r.ee?.get(this.agentIdentifier),!1}}}({features:[J,m,S,class extends h{static featureName=oe;constructor(t,r){if(super(t,r,oe,!(arguments.length>2&&void 0!==arguments[2])||arguments[2]),!c.il)return;const n=this.ee;let i;(0,k.QU)(n),this.eventsEE=(0,k.em)(n),this.eventsEE.on(se,(function(e,t){this.bstStart=(0,p.z)()})),this.eventsEE.on(ae,(function(t,r){(0,s.p)("bst",[t[0],r,this.bstStart,(0,p.z)()],void 0,e.D.sessionTrace,n)})),n.on(ce+ne,(function(e){this.time=(0,p.z)(),this.startPath=location.pathname+location.hash})),n.on(ce+ie,(function(t){(0,s.p)("bstHist",[location.pathname+location.hash,this.startPath,this.time],void 0,e.D.sessionTrace,n)}));try{i=new PerformanceObserver((t=>{const r=t.getEntries();(0,s.p)(te,[r],void 0,e.D.sessionTrace,n)})),i.observe({type:re,buffered:!0})}catch(e){}this.importAggregator({resourceObserver:i})}},C,xe,B,class extends h{static featureName=de;constructor(e,r){if(super(e,r,de,!(arguments.length>2&&void 0!==arguments[2])||arguments[2]),!c.il)return;if(!(0,t.OP)(e).xhrWrappable)return;try{this.removeOnAbort=new AbortController}catch(e){}let n,i=0;const o=this.ee.get("tracer"),a=(0,k._L)(this.ee),s=(0,k.Lg)(this.ee),u=(0,k.BV)(this.ee),d=(0,k.Kf)(this.ee),f=this.ee.get("events"),l=(0,k.u5)(this.ee),h=(0,k.QU)(this.ee),g=(0,k.Gm)(this.ee);function m(e,t){h.emit("newURL",[""+window.location,t])}function v(){i++,n=window.location.hash,this[ve]=(0,p.z)()}function b(){i--,window.location.hash!==n&&m(0,!0);var e=(0,p.z)();this[pe]=~~this[pe]+e-this[ve],this[ye]=e}function y(e,t){e.on(t,(function(){this[t]=(0,p.z)()}))}this.ee.on(ve,v),s.on(be,v),a.on(be,v),this.ee.on(ye,b),s.on(ge,b),a.on(ge,b),this.ee.buffer([ve,ye,"xhr-resolved"],this.featureName),f.buffer([ve],this.featureName),u.buffer(["setTimeout"+le,"clearTimeout"+fe,ve],this.featureName),d.buffer([ve,"new-xhr","send-xhr"+fe],this.featureName),l.buffer([me+fe,me+"-done",me+he+fe,me+he+le],this.featureName),h.buffer(["newURL"],this.featureName),g.buffer([ve],this.featureName),s.buffer(["propagate",be,ge,"executor-err","resolve"+fe],this.featureName),o.buffer([ve,"no-"+ve],this.featureName),a.buffer(["new-jsonp","cb-start","jsonp-error","jsonp-end"],this.featureName),y(l,me+fe),y(l,me+"-done"),y(a,"new-jsonp"),y(a,"jsonp-end"),y(a,"cb-start"),h.on("pushState-end",m),h.on("replaceState-end",m),window.addEventListener("hashchange",m,(0,O.m$)(!0,this.removeOnAbort?.signal)),window.addEventListener("load",m,(0,O.m$)(!0,this.removeOnAbort?.signal)),window.addEventListener("popstate",(function(){m(0,i>1)}),(0,O.m$)(!0,this.removeOnAbort?.signal)),this.abortHandler=this.#e,this.importAggregator()}#e(){this.removeOnAbort?.abort(),this.abortHandler=void 0}}],loaderType:"spa"})})(),window.NRBA=o})();</script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="/favicon.ico">
<link type="application/opensearchdescription+xml" rel="search" href="/OpensearchDescription.xml" />
<title>ERN to ETH: Ethernity Chain Price in Ether | CoinGecko</title>
<meta name="description" content="Get live charts for ERN to ETH. Convert Ethernity Chain (ERN) to Ether (ETH)." />
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-NP34MX7');</script>
<link rel="preload" fetchpriority="high" as="image" href="https://static.coingecko.com/s/coingecko-logo-8903d34ce19ca4be1c81f0db30e924154750d208683fad7ae6f2ce06c76d0a56.png" />
<link rel="preconnect" href="https://static.coingecko.com" crossorigin="anonymous" />
<link rel="dns-prefetch" href="https://static.coingecko.com" crossorigin="anonymous" />
<link rel="preconnect" href="//www.googletagmanager.com" />
<link rel="preconnect" href="https://cdn4.buysellads.net">
<script type="text/javascript" defer src="https://cdn4.buysellads.net/pub/coingecko.js"></script>
<script type="text/javascript" defer src="//m.servedby-buysellads.com/monetization.js"></script>
<meta property="og:title" content="ERN to ETH: Ethernity Chain Price in Ether | CoinGecko">
<meta property="og:type" content="website" />
<meta property="og:description" content="Get live charts for ERN to ETH. Convert Ethernity Chain (ERN) to Ether (ETH).">
<meta property="og:image" content="https://assets.coingecko.com/coins/images/14238/large/LOGO_HIGH_QUALITY.png?1647831402">
<meta property="og:url" content="https://www.coingecko.com/en/coins/ethernity-chain/eth">
<meta property="og:site_name" content="CoinGecko">
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@coingecko">
<meta name="twitter:creator" content="@coingecko">
<meta name="twitter:title" content="ERN to ETH: Ethernity Chain Price in Ether | CoinGecko">
<meta name="twitter:description" content="Get live charts for ERN to ETH. Convert Ethernity Chain (ERN) to Ether (ETH).">
<meta name="twitter:image" content="https://assets.coingecko.com/coins/images/14238/large/LOGO_HIGH_QUALITY.png?1647831402">
<link rel="canonical" href="https://www.coingecko.com/en/coins/ethernity-chain/eth" />
<link rel="alternate" hreflang="en" href="https://www.coingecko.com/en/coins/ethernity-chain/eth" />
<link rel="alternate" hreflang="de" href="https://www.coingecko.com/de/munze/ethernity-chain/eth" />
<link rel="alternate" hreflang="fr" href="https://www.coingecko.com/fr/pi%C3%A8ces/ethernity-chain/eth" />
<link rel="alternate" hreflang="es" href="https://www.coingecko.com/es/monedas/ethernity-chain/eth" />
<link rel="alternate" hreflang="ja" href="https://www.coingecko.com/ja/%E3%82%B3%E3%82%A4%E3%83%B3/ethernity-chain/eth" />
<link rel="alternate" hreflang="id" href="https://www.coingecko.com/id/koin_koin/ethernity-chain/eth" />
<link rel="alternate" hreflang="ru" href="https://www.coingecko.com/ru/%D0%9A%D1%80%D0%B8%D0%BF%D1%82%D0%BE%D0%B2%D0%B0%D0%BB%D1%8E%D1%82%D1%8B/ethernity-chain/eth" />
<link rel="alternate" hreflang="it" href="https://www.coingecko.com/it/monete/ethernity-chain/eth" />
<link rel="alternate" hreflang="pt" href="https://www.coingecko.com/pt/moedas/ethernity-chain/eth" />
<link rel="alternate" hreflang="pl" href="https://www.coingecko.com/pl/waluty/ethernity-chain/eth" />
<link rel="alternate" hreflang="tr" href="https://www.coingecko.com/tr/coins/ethernity-chain/eth" />
<link rel="alternate" hreflang="nl" href="https://www.coingecko.com/nl/coins/ethernity-chain/eth" />
<link rel="stylesheet" href="https://static.coingecko.com/packs/css/application-f60c6cac.chunk.css" />
<link rel="preload" href="https://static.coingecko.com/s/fonts-268ccdfc4188db1b3c491e7cf787186de337223a655a34d6532fb99f6d0fec71.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://static.coingecko.com/s/fonts-268ccdfc4188db1b3c491e7cf787186de337223a655a34d6532fb99f6d0fec71.css"></noscript>
<link rel="preload" href="https://static.coingecko.com/s/secondary-c60783d1cbe3c628a2a89711bfd8f1ec84b7154b9876f9158c8176cce96ae8e1.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://static.coingecko.com/s/secondary-c60783d1cbe3c628a2a89711bfd8f1ec84b7154b9876f9158c8176cce96ae8e1.css"></noscript>
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="/favicon-16x16.png" sizes="16x16" />
<meta name="application-name" content="CoinGecko" />
<meta name="action-cable-url" content="wss://cables.coingecko.com/cable" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "How much is 1 Ethernity Chain worth in ETH?",
"acceptedAnswer": {
"@type": "Answer",
"text": "As of now, the price of 1 Ethernity Chain (ERN) in Ether (ETH) is about ETH0.00082274."
}
},
{
"@type": "Question",
"name": "How many ERN can I buy for ETH1?",
"acceptedAnswer": {
"@type": "Answer",
"text": "You can buy approximately 1215 ERN for ETH1 today."
}
},
{
"@type": "Question",
"name": "How do I convert the price of ERN to ETH?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Calculate the price of ERN in ETH by inputting your desired amount on CoinGecko’s ERN to ETH converter. For a detailed view of ERN’s historical price movements in ETH, you may refer to the ERN to ETH chart."
}
},
{
"@type": "Question",
"name": "What is the highest price of ERN/ETH in history?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The all-time high price of 1 ERN in ETH is ETH0.04356687, recorded on Mar 27, 2021 (over 2 years). It remains to be seen if the value of 1 ERN/ETH will exceed the current all-time high."
}
},
{
"@type": "Question",
"name": "What is the price trend of Ethernity Chain in ETH?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Over the last month, the price of Ethernity Chain (ERN) has gone down by -17.70% against the Ether (ETH). In fact, Ethernity Chain has underperformed against the broader crypto market, which is up by 2.80%."
}
}
]
}
</script>
<script async defer src="https://www.googletagmanager.com/gtag/js?id=UA-49392197-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-49392197-1');
</script>
</head>
<body data-locale="en" data-controller="csrf-meta currency currency-selector-modal price percent-change application ads index-trending-coins update-sign-in-modal-title add-coin-id-to-cookies add-nft-contract-id-to-cookies" data-currency-symbols="{"btc":"BTC","eth":"ETH","ltc":"LTC","bch":"BCH","bnb":"BNB","eos":"EOS","xrp":"XRP","xlm":"XLM","link":"LINK","dot":"DOT","yfi":"YFI","usd":"$","aed":"DH","ars":"$","aud":"A$","bdt":"৳","bhd":"BD","bmd":"$","brl":"R$","cad":"CA$","chf":"Fr.","clp":"CLP$","cny":"¥","czk":"Kč","dkk":"kr.","eur":"€","gbp":"£","hkd":"HK$","huf":"Ft","idr":"Rp","ils":"₪","inr":"₹","jpy":"¥","krw":"₩","kwd":"KD","lkr":"Rs","mmk":"K","mxn":"MX$","myr":"RM","ngn":"₦","nok":"kr","nzd":"NZ$","php":"₱","pkr":"₨","pln":"zł","rub":"₽","sar":"SR","sek":"kr","sgd":"S$","thb":"฿","try":"₺","twd":"NT$","uah":"₴","vef":"Bs.F","vnd":"₫","zar":"R","xdr":"XDR","xag":"XAG","xau":"XAU","bits":"μBTC","sats":"sats"}" data-currency-override="eth" data-exchange-rate-json="{"usd":"30847.022","gbp":"24281.634","eur":"28361.153","cny":"223128.854","jpy":"4459692.89","cad":"40819.402","rub":"2776287.849","hkd":"241544.403","sek":"334261.022","sgd":"41665.536","krw":"40236609.205","aud":"46156.153","zar":"576021.879","inr":"2529767.451","myr":"143207.303","idr":"462956090.255","brl":"149342.806","nzd":"49787.187","mxn":"526270.258","php":"1710775.82","dkk":"211238.653","pln":"125752.515","xau":"16.0364417172094","xag":"1344.8382677862","twd":"960724.385","xdr":"23210.749","chf":"27679.496","eth":"15.8942771596972","aed":"113301.423","ars":"7995258.334","kwd":"9478.919","lkr":"9447123.525","sar":"115681.239","try":"802454.449","thb":"1077486.504","pkr":"8487385.874","nok":"328898.853","ils":"114234.545","huf":"10653944.717","czk":"673301.05","clp":"24656950.695","bdt":"3345012.865","bhd":"11628.494","bmd":"30847.022","mmk":"64832836.672","vef":"3088.712","bch":"111.216707433453","ltc":"292.311145256016","eos":"40778.5781927695","bnb":"126.846697988678","xlm":"297475.087167084","xrp":"62943.1693037575","vnd":"732300608.336","uah":"1140153.989","byn":"77180.2380260312","link":"4710.30879385232","dot":"5743.2568294495","yfi":"4.41516796706136","ngn":"23632709.976","bits":"1000000.0","sats":"100000000.0"}" data-controller-name="price_charts" data-action-name="show" data-category-key="" data-coin-name="ethernity-chain" data-disable-currency-dropdown="false" x-data="{ missing_tokenomic_content_open: false }">
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NP34MX7"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<header class="header dashboard tw-flex tw-flex-col">
<div data-controller="top-announcement-header" class="top-header tw-p-0 tw-flex tw-justify-center tw-items-center tw-order-1">
<div id="top-announcement-header" class="tw-flex tw-justify-between tw-items-center text-xs tw-py-2 tw-px-4" data-target="top-announcement-header.topAnnouncementHeaderContainer" style="width: 1300px">
<div class="mr-3">
📊 Now LIVE: <a href="https://gcko.io/7y8yo0d" target="_blank" rel="noopener"><b>State of Decentralized Perpetuals (2023) Report</a></b>
</div>
<div>
<div data-action="click->top-announcement-header#closeHeader" class="text-xl cursor-pointer"><i class="far fa-fa fa-times"></i></div>
</div>
</div>
</div>
<div class='fixed-bottom mb-md-4 offset-lg-8' id='cookie-notice' style="background: rgb(63, 63, 63 ,0.9); color: #fff; display: none;" data-controller="cookie-note">
<div class='lg:tw-p-4 tw-mx-6 tw-my-2 tw-flex'>
<span>This website uses cookies for functionality, analytics and advertising purposes as described in our <a href=/en/privacy>Privacy Policy</a>. If you agree to our use of cookies, please continue to use our site.</span>
<div class="tw-grid tw-content-center">
<button class="btn btn-sm btn-danger float-right ml-2" data-action="click->cookie-note#accept">OK</button>
</div>
</div>
</div>
<div class="2lg:tw-block nav-border-bottom tw-order-last 2lg:tw-order-2">
<div class="tw-overflow-auto 2lg:tw-overflow-visible container tw-whitespace-nowrap tw-text-black tw-text-2xs tw-py-1.5">
<div class="tw-flex tw-justify-between tw-items-center tw-h-5 2lg:tw-h-10">
<span data-target="application.navigationOverallStats">
<div class="tw-flex flex-row" style="font-size: 11px">
<div class="mr-3">
<span class="tw-text-gray-500 dark:tw-text-white dark:tw-text-opacity-60">Coins:</span>
<a class="tw-text-blue-500" href="/">
9878
</a> </div>
<div class="mr-3">
<span class="tw-text-gray-500 dark:tw-text-white dark:tw-text-opacity-60">Exchanges:</span>
<a class="tw-text-blue-500" href="/en/exchanges">
769
</a> </div>
<div class="mr-3">
<span class="tw-text-gray-500 dark:tw-text-white dark:tw-text-opacity-60">Market Cap:</span>
<a href="/en/global-charts">
<span class="tw-text-blue-500" data-target="price.price" data-price-btc="40555099.65387066">
$1,251,302,101,859
</span> <span class="text-danger">-0.7%<i class="far fa-level-down" data-icon-up-class="fa-level-up" data-icon-down-class="fa-level-down"></i></span>
</a> </div>
<div class="mr-3">
<span class="tw-text-gray-500 dark:tw-text-white dark:tw-text-opacity-60">24h Vol:</span>
<a href="/en/global-charts">
<span class="tw-text-blue-500" data-target="price.price" data-price-btc="1167394.9506319137">
$36,019,237,233
</span></a> </div>
<div class="mr-1 tw-text-gray-500 dark:tw-text-white dark:tw-text-opacity-60">
Dominance:
</div>
<div class="mr-2">
<a class="tw-text-blue-500" href="/en/global-charts">
BTC 47.9%
</a> </div>
<div class="mr-2">
<a class="tw-text-blue-500" href="/en/global-charts">
ETH 18.7%
</a> </div>
<div data-toggle="tooltip" data-placement="left" data-html="true" title="<div class='tw-flex tw-justify-between'>
<div>Fast:</div>
<div>41 gwei</div>
</div>
<div class='tw-flex tw-justify-between'>
<div>Standard:</div>
<div>40 gwei</div>
</div>
<div class='tw-flex tw-justify-between'>
<div>Safe:</div>
<div>40 gwei</div>
</div>
<div style='font-size: 1px'>
Data by Etherscan
</div>">
<span class="tw-text-gray-500 dark:tw-text-white dark:tw-text-opacity-60"><i type="brand" class="fab mr-1 fa-ethereum"></i>Gas: </span>
<span class="tw-text-blue-500">40 GWEI</span>
</div>
</div>
</span>
<div class="tw-hidden 2lg:tw-flex 2lg:tw-justify-end 2lg:tw-items-center">
<div class="tw-flex tw-justify-end tw-items-center">
<div data-action="click->application#showLanguageSelectorModal" class="tw-w-13 tw-mr-4">
<span class="tw-cursor-pointer text-black">
EN
<i class="fas fa-caret-down"></i>
</span>
</div>
<span data-action="click->currency-selector-modal#showModal" class="tw-w-16 tw-text-black tw-cursor-pointer tw-py-1">
<span data-currency-selector-modal-target="button">USD</span>
<i class="fas fa-caret-down tw-pl-1"></i>
</span>
<div data-controller="dark">
<button type="button" class="border-0 p-0 text-2xs bg-transparent text-black" data-action="click->dark#toggle">
<i type="solid" data-target="dark.icon" data-dark-class-name="fa-sun" data-light-class-name="fa-moon" class="fas text-2xs fa-moon"></i>
</button>
</div>
<span class="tw-w-24">
<div class="tailwind-reset">
<a href="/en/api/pricing" data-target="csrf-meta.subscribeButton" role="button" data-view-component="true" class="tw-ml-4 tw-hidden index-api-key-btn dark:hover:tw-bg-opacity-5 dark:tw-text-primary-500 disabled:tw-opacity-50 focus:tw-border-opacity-0 focus:tw-outline-none focus:tw-ring-2 focus:tw-ring-offset-0 focus:tw-ring-primary-500 focus:tw-text-primary-500 hover:tw-bg-primary-50 hover:tw-text-primary-500 tw-bg-transparent tw-border tw-border-primary-500 tw-font-medium tw-inline-flex tw-items-center tw-leading-4 tw-rounded-md tw-text-primary-500 tw-justify-center tw-px-2.5 tw-py-1.5 tw-text-xs">
API Key
</a>
</div>
</span>
</div>
</div>
</div>
</div>
</div>
<div class="nav-border-bottom tw-order-3">
<div class="container 2lg:tw-flex tw-py-2">
<div class="2lg:tw-hidden tw-py-2 tw-flex tw-items-center tw-gap-x-4">
<nav>
<span data-toggle="modal" data-target="#mobile-user-menu" class="text-body text-2xl tw-cursor-pointer">
<i class="far tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 fa-bars"></i>
</span> <div class="modal fade" id="mobile-user-menu">
<div class="modal-dialog h-sm-100 sm-m-0">
<div class="modal-content h-sm-100 rounded-0 tw-flex flex-column h-sm-100 tw-py-2 tw-px-4">
<div class="tw-flex tw-items-center tw-gap-x-4">
<button type="button" class="close" data-dismiss="modal">
<i class="fa-times far tw-text-2xl tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60"></i>
</button>
<div class="tw-text-center">
<a href="/">
<img alt="CoinGecko Logo" height="39px" class="darkhide" src="https://static.coingecko.com/s/coingecko-logo-8903d34ce19ca4be1c81f0db30e924154750d208683fad7ae6f2ce06c76d0a56.png" />
<img alt="CoinGecko Logo (White)" height="39px" class="darkshow" src="https://static.coingecko.com/s/coingecko-logo-white-ea42ded10e4d106e14227d48ea6140dc32214230aa82ef63d0499f9c1e109656.png" />
</a></div>
<div class="tailwind-reset tw-flex-1 tw-text-right">
<a class="tw-hidden index-mobile-api-key-btn" data-target="csrf-meta.subscribeButton" href="/en/api/pricing">
<button type="button" data-view-component="true" class="dark:focus:tw-text-white dark:hover:tw-bg-opacity-5 dark:hover:tw-bg-white dark:hover:tw-text-white dark:tw-border-opacity-10 dark:tw-border-white dark:tw-text-opacity-87 dark:tw-text-white disabled:tw-opacity-50 focus:tw-border-opacity-0 focus:tw-outline-none focus:tw-ring-2 focus:tw-ring-offset-0 focus:tw-ring-primary-500 tw-bg-transparent tw-border tw-border-gray-300 tw-font-medium tw-inline-flex tw-items-center tw-leading-4 tw-rounded-md tw-text-gray-700 tw-justify-center tw-px-2.5 tw-py-1.5 tw-text-xs">
API Key
</button>
</a> </div>
</div>
<nav class="tw-flex flex-column">
<span class="text-normal text-black hover:tw-text-primary-600 tw-cursor-pointer" data-toggle="collapse" aria-expanded="false" data-target="#mobile-nav-cryptocurrencies">
<div class="tw-flex tw-justify-between tw-items-center tw-border-solid tw-border-0 tw-border-b tw-border-gray-200 dark:tw-border-opacity-12 dark:tw-border-white tw-py-4">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
Cryptocurrencies
</span>
<i class="far fa-angle-down tw-text-sm tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60"></i>
<i class="far fa-angle-up tw-text-sm tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60"></i>
</div>
</span>
<div class="collapse transition-none" id="mobile-nav-cryptocurrencies">
<div class="text-normal tw-border-solid tw-border-0 tw-border-b tw-border-gray-200 dark:tw-border-opacity-12 dark:tw-border-white">
<div class="tw-p-4 tw-grid tw-grid-cols-1 tw-gap-y-4">
<a href="/">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
By Market Cap
</span>
</a> <a href="/en/new-cryptocurrencies">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
New Cryptocurrencies
</span>
</a> </div>
<span data-view-component="true" class="tw-text-xs tw-text-gray-500 dark:tw-text-white dark:tw-text-opacity-60 tw-font-normal separator">
Popular
</span>
<div class="tw-p-4 tw-grid tw-grid-cols-1 tw-gap-y-4">
<a href="/en/categories">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
Categories
</span>
</a> <a href="/en/watchlists">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
Watchlists
</span>
</a> <a href="/en/crypto-gainers-losers">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
Gainers & Losers
</span>
</a> <a href="/en/watchlists/high-volume">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
High Volume
</span>
</a> </div>
<span data-view-component="true" class="tw-text-xs tw-text-gray-500 dark:tw-text-white dark:tw-text-opacity-60 tw-font-normal separator">
Tools
</span>
<div class="tw-p-4 tw-grid tw-grid-cols-1 tw-gap-y-4">
<a href="/en/all-cryptocurrencies">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
All Coins
</span>
</a> <a href="/en/compare-cryptocurrencies">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
Compare Coins
</span>
</a> <a href="/en/converter">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
Converter
</span>
</a> <a href="/en/global-charts">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
Global Chart
</span>
</a> </div>
</div>
</div>
<span class="text-normal text-black hover:tw-text-primary-600 tw-cursor-pointer" data-toggle="collapse" aria-expanded="false" data-target="#mobile-nav-exchanges">
<div class="tw-flex tw-justify-between tw-items-center tw-border-solid tw-border-0 tw-border-b tw-border-gray-200 dark:tw-border-opacity-12 dark:tw-border-white tw-py-4">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
Exchanges
</span>
<i class="far fa-angle-down tw-text-sm tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60"></i>
<i class="far fa-angle-up tw-text-sm tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60"></i>
</div>
</span>
<div class="collapse transition-none" id="mobile-nav-exchanges">
<div class="tw-border-solid tw-border-0 tw-border-b tw-border-gray-200 dark:tw-border-opacity-12 dark:tw-border-white">
<div class="tw-p-4 tw-grid tw-grid-cols-1 tw-gap-y-4">
<a href="/en/exchanges">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
Crypto Exchanges
</span>
</a> <a href="/en/exchanges/decentralized">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
Decentralized Exchanges
</span>
</a> <a href="/en/exchanges/derivatives">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
Derivatives
</span>
</a> </div>
</div>
</div>
<span class="text-normal text-black hover:tw-text-primary-600 tw-cursor-pointer" data-toggle="collapse" aria-expanded="false" data-target="#mobile-nav-nft">
<div class="tw-flex tw-justify-between tw-items-center tw-border-solid tw-border-0 tw-border-b tw-border-gray-200 dark:tw-border-opacity-12 dark:tw-border-white tw-py-4">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
NFT
</span>
<i class="far fa-angle-down tw-text-sm tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60"></i>
<i class="far fa-angle-up tw-text-sm tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60"></i>
</div>
</span>
<div class="collapse transition-none" id="mobile-nav-nft">
<div class="tw-border-solid tw-border-0 tw-border-b tw-border-gray-200 dark:tw-border-opacity-12 dark:tw-border-white">
<div class="tw-p-4 tw-grid tw-grid-cols-1 tw-gap-y-4">
<a href="/en/nft">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
NFT Floor Price
</span>
</a> <a href="/en/categories/non-fungible-tokens-nft">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
NFT Related Coins
</span>
</a> </div>
</div>
</div>
<span class="text-normal text-black hover:tw-text-primary-600 tw-cursor-pointer" data-toggle="collapse" aria-expanded="false" data-target="#mobile-nav-learn-crypto">
<div class="tw-flex tw-justify-between tw-items-center tw-border-solid tw-border-0 tw-border-b tw-border-gray-200 dark:tw-border-opacity-12 dark:tw-border-white tw-py-4">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
Learn Crypto
</span>
<i class="far fa-angle-down tw-text-sm tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60"></i>
<i class="far fa-angle-up tw-text-sm tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60"></i>
</div>
</span>
<div class="collapse transition-none" id="mobile-nav-learn-crypto">
<div class="tw-border-solid tw-border-0 tw-border-b tw-border-gray-200 dark:tw-border-opacity-12 dark:tw-border-white">
<div class="tw-p-4 tw-grid tw-grid-cols-1 tw-gap-y-4">
<a href="/learn">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
All Crypto Articles
</span>
</a> <a href="/learn/category/tutorials">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
Tutorials
</span>
</a> <a href="/learn/category/guides">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
Guides
</span>
</a> </div>
<span data-view-component="true" class="tw-text-xs tw-text-gray-500 dark:tw-text-white dark:tw-text-opacity-60 tw-font-normal separator">
Crypto Terms
</span>
<div class="tw-p-4 tw-grid tw-grid-cols-1 tw-gap-y-4">
<a href="/en/glossary">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
Glossary
</span>
</a> <a href="/en/methodology">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
Methodology
</span>
</a> </div>
<span data-view-component="true" class="tw-text-xs tw-text-gray-500 dark:tw-text-white dark:tw-text-opacity-60 tw-font-normal separator">
Learn Crypto Everyday
</span>
<div class="tw-p-4 tw-grid tw-grid-cols-1 tw-gap-y-4">
<a href="https://www.youtube.com/c/CoinGeckoTV?sub_confirmation=1">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
Videos
</span>
</a> <a href="https://podcast.coingecko.com/">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
Podcast
</span>
</a> <a href="https://landing.coingecko.com/newsletter/">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
Newsletter
</span>
</a> <a href="/en/publications/reports">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
Research Reports
</span>
</a> </div>
</div>
</div>
<span class="text-normal text-black hover:tw-text-primary-600 tw-cursor-pointer" data-toggle="collapse" aria-expanded="false" data-target="#collapseProducts">
<div class="tw-flex tw-justify-between tw-items-center tw-border-solid tw-border-0 tw-border-b tw-border-gray-200 dark:tw-border-opacity-12 dark:tw-border-white tw-py-4">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
Products
</span>
<i class="far fa-angle-down tw-text-sm tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60"></i>
<i class="far fa-angle-up tw-text-sm tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60"></i>
</div>
</span>
<div class="collapse transition-none" id="collapseProducts">
<div class="tw-border-solid tw-border-0 tw-border-b tw-border-gray-200 dark:tw-border-opacity-12 dark:tw-border-white">
<div class="tw-p-4 tw-grid tw-grid-cols-1 tw-gap-y-4">
<a target="_blank" rel="noopener" href="https://www.geckoterminal.com?utm_source=coingecko&utm_medium=referral&utm_campaign=mobile_navigation">
<div class="tw-flex tw-items-center">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
GeckoTerminal
</span>
<div class="tw-inline-flex">
<span data-view-component="true" class="tw-inline-flex tw-items-center tw-font-medium tw-bg-primary-100 tw-text-primary-800 hover:tw-bg-primary-200 hover:tw-text-primary-900 dark:tw-bg-white dark:tw-bg-opacity-12 hover:dark:tw-bg-opacity-24 dark:tw-text-primary-400 tw-px-2 tw-py-0.5 tw-rounded tw-text-xs tw-max-h-5 tw-ml-2">
Real-time charts
</span></div>
</div>
</a> <a href="/research">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
CoinGecko Research
</span>
</a> <a href="/en/mobile">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
CoinGecko App
</span>
</a> <a href="/en/portfolio">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
Crypto Portfolio
</span>
</a> <a href="/en/api">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
Crypto API
</span>
</a> <a href="/en/widgets">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
Crypto Widget
</span>
</a> </div>
<span data-view-component="true" class="tw-text-xs tw-text-gray-500 dark:tw-text-white dark:tw-text-opacity-60 tw-font-normal separator">
Books & Merchandise
</span>
<div class="tw-p-4 tw-grid tw-grid-cols-1 tw-gap-y-4">
<a href="https://store.coingecko.com/">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
CoinGecko Store
</span>
</a> </div>
</div>
</div>
<span class="text-normal text-black hover:tw-text-primary-600 tw-cursor-pointer" data-toggle="collapse" aria-expanded="false" data-target="#mobile-nav-my-portfolio">
<div class="tw-flex tw-justify-between tw-items-center tw-border-solid tw-border-0 tw-border-b tw-border-gray-200 dark:tw-border-opacity-12 dark:tw-border-white tw-py-4">
<div class="tw-flex tw-gap-x-2 tw-items-center">
<i type="solid" class="fas star-color fa-fw fa-star"></i>
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
My Portfolio
</span>
</div>
<i class="far fa-angle-down tw-text-sm tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60"></i>
<i class="far fa-angle-up tw-text-sm tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60"></i>
</div>
</span>
<div class="collapse transition-none" id="mobile-nav-my-portfolio">
<div class="tw-border-solid tw-border-0 tw-border-b tw-border-gray-200 dark:tw-border-opacity-12 dark:tw-border-white">
<div class="tw-p-4 tw-grid tw-grid-cols-1 tw-gap-y-4">
<a href="/en/portfolio">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
My Coins
</span>
</a> <a href="/en/nft-portfolio">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
My NFTs
</span>
</a> </div>
</div>
</div>
<a data-target="csrf-meta.candyIcon" data-url="/account/rewards?locale=en" class="text-normal text-black" href="/account/candy?locale=en">
<div class="tw-flex tw-gap-x-2 tw-items-center tw-border-solid tw-border-0 tw-border-b tw-border-gray-200 dark:tw-border-opacity-12 dark:tw-border-white tw-py-4">
<img loading="lazy" height="18" class="tw-object-contain fa-fw" alt="coingecko candy jar" src="https://static.coingecko.com/s/candy_notification-62af2d17629b138154e3fac22a492b51d914d18461f9283ae4bd5ad5730d8763.svg" />
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
My Rewards
</span>
</div>
</a>
<div data-target="csrf-meta.loggedInNavi">
<span class="text-normal text-black hover:tw-text-primary-600 tw-cursor-pointer" data-toggle="collapse" aria-expanded="false" data-target="#mobile-nav-my-account">
<div class="tw-flex tw-justify-between tw-items-center tw-border-solid tw-border-0 tw-border-b tw-border-gray-200 dark:tw-border-opacity-12 dark:tw-border-white tw-py-4">
<div class="tw-flex tw-gap-x-2 tw-items-center">
<i class="fas fa-circle-user fa-fw tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-6"></i>
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
My Account
</span>
</div>
<i class="far fa-angle-down tw-text-sm tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60"></i>
<i class="far fa-angle-up tw-text-sm tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60"></i>
</div>
</span>
<div class="collapse transition-none" id="mobile-nav-my-account">
<div class="text-normal tw-border-solid tw-border-0 tw-border-b tw-border-gray-200 dark:tw-border-opacity-12 dark:tw-border-white tw-p-4">
<div class="tw-grid tw-grid-cols-1 tw-gap-x-8 tw-gap-y-4">
<a href="/en/alerts">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
Price Alert
</span>
</a> <a href="/account/security?locale=en">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
Login and Security
</span>
</a> <a data-target="csrf-meta.developerMenu" class="tw-hidden" href="/en/developers/dashboard">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
Developer's Dashboard
</span>
</a> <a href="/account/subscriptions?locale=en">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
Subscription
</span>
</a> <a rel="nofollow" data-method="delete" href="/account/sign_out?locale=en">
<span data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
Sign Out
</span>
</a> </div>
</div>
</div>
</div>
<div class="tailwind-reset tw-grid tw-gap-y-2 tw-mt-6" data-target="csrf-meta.loggedOutNavi">
<button data-toggle="modal" data-target="#signUpModal" type="button" data-view-component="true" class="tw-w-full tw-shadow-sm dark:focus:tw-outline-none dark:focus:tw-text-white dark:hover:tw-bg-primary-400 dark:hover:tw-text-white dark:tw-text-white disabled:tw-opacity-50 focus:tw-outline-none focus:tw-text-white hover:tw-bg-primary-700 hover:tw-text-white tw-bg-primary-500 tw-border tw-border-transparent tw-font-medium tw-inline-flex tw-items-center tw-leading-4 tw-rounded-md tw-text-white tw-justify-center tw-px-4 tw-py-2.5 tw-text-sm">
Sign Up
</button>
<button data-toggle="modal" data-target="#signInModal" type="button" data-view-component="true" class="tw-w-full tw-shadow-sm dark:hover:tw-bg-opacity-5 dark:tw-text-primary-500 disabled:tw-opacity-50 focus:tw-border-opacity-0 focus:tw-outline-none focus:tw-ring-2 focus:tw-ring-offset-0 focus:tw-ring-primary-500 focus:tw-text-primary-500 hover:tw-bg-primary-50 hover:tw-text-primary-500 tw-bg-transparent tw-border tw-border-primary-500 tw-font-medium tw-inline-flex tw-items-center tw-leading-4 tw-rounded-md tw-text-primary-500 tw-justify-center tw-px-4 tw-py-2.5 tw-text-sm">
Login
</button>
</div>
</nav>
<div class="tw-flex tw-gap-x-2 tw-items-center tw-mt-6 tailwind-reset">
<div data-action="click->application#showLanguageSelectorModal" class="tw-inline-flex tw-items-center tw-justify-center tw-w-1/3 tw-py-2 tw-border tw-border-gray-300 tw-text-sm tw-leading-4 tw-font-medium tw-rounded-md tw-text-gray-700 tw-bg-transparent hover:tw-bg-gray-50 hover:tw-border-gray-400 focus:tw-outline-none focus:tw-ring-2 focus:tw-ring-offset-0 focus:tw-ring-primary-500 focus:tw-border-opacity-0 dark:tw-text-white dark:tw-text-opacity-87 dark:hover:tw-bg-white dark:hover:tw-bg-opacity-5 dark:tw-border-white dark:tw-border-opacity-12 dark:hover:tw-border-opacity-24 tw-shadow-sm">
<span class="tw-w-full tw-inline-flex tw-justify-center tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-87">
EN
</span>
</div>
<div data-action="click->currency-selector-modal#showModal" class="tw-inline-flex tw-items-center tw-justify-center tw-w-1/3 tw-py-2 tw-border tw-border-gray-300 tw-text-sm tw-leading-4 tw-font-medium tw-rounded-md tw-text-gray-700 tw-bg-transparent hover:tw-bg-gray-50 hover:tw-border-gray-400 focus:tw-outline-none focus:tw-ring-2 focus:tw-ring-offset-0 focus:tw-ring-primary-500 focus:tw-border-opacity-0 dark:tw-text-white dark:tw-text-opacity-87 dark:hover:tw-bg-white dark:hover:tw-bg-opacity-5 dark:tw-border-white dark:tw-border-opacity-12 dark:hover:tw-border-opacity-24 tw-shadow-sm">
<span class="tw-w-full tw-inline-flex tw-justify-center tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-87">
<span data-currency-selector-modal-target="button">USD</span>
</span>
</div>
<div data-controller="dark" class="tw-inline-flex tw-items-center tw-justify-center tw-w-1/3 tw-py-2 tw-border tw-border-gray-300 tw-text-sm tw-leading-4 tw-font-medium tw-rounded-md tw-text-gray-700 tw-bg-transparent hover:tw-bg-gray-50 hover:tw-border-gray-400 focus:tw-outline-none focus:tw-ring-2 focus:tw-ring-offset-0 focus:tw-ring-primary-500 focus:tw-border-opacity-0 dark:tw-text-white dark:tw-text-opacity-87 dark:hover:tw-bg-white dark:hover:tw-bg-opacity-5 dark:tw-border-white dark:tw-border-opacity-12 dark:hover:tw-border-opacity-24 tw-shadow-sm">
<div class="tw-w-full tw-inline-flex tw-justify-center" data-action="click->dark#toggle">
<i type="solid" data-target="dark.icon" data-dark-class-name="fa-sun" data-light-class-name="fa-moon" class="fas text-base fa-moon"></i>
</div>
</div>
</div>
</div>
</div>
</div>
</nav>
<div>
<div class="tw-text-center">
<a href="/">
<img alt="CoinGecko Logo" height="39px" class="darkhide" src="https://static.coingecko.com/s/coingecko-logo-8903d34ce19ca4be1c81f0db30e924154750d208683fad7ae6f2ce06c76d0a56.png" />
<img alt="CoinGecko Logo (White)" height="39px" class="darkshow" src="https://static.coingecko.com/s/coingecko-logo-white-ea42ded10e4d106e14227d48ea6140dc32214230aa82ef63d0499f9c1e109656.png" />
</a></div>
</div>
<nav class="tw-flex tw-justify-end tw-flex-1">
<div class="tw-relative" data-target="csrf-meta.candyNotificationIcon">
<div class="candy-notification-dot tw-hidden" data-target="csrf-meta.candyNotificationIcon"></div>
<a data-target="csrf-meta.candyIcon" data-url="/account/rewards?locale=en" href="/account/candy?locale=en">
<img loading="lazy" height="25" width="16" class="candy-notification-icon" alt="coingecko candy jar" src="https://static.coingecko.com/s/candy_notification-62af2d17629b138154e3fac22a492b51d914d18461f9283ae4bd5ad5730d8763.svg" />
</a> </div>
</nav>
</div>
<div class="tw-hidden 2lg:tw-block 2lg:tw-flex tw-justify-between tw-items-center tw-py-2 lg:tw-flex-1">
<div class="tw-flex tw-flex-row tw-items-center">
<div class="tw-text-center">
<a href="/">
<img alt="CoinGecko Logo" height="39px" class="darkhide" src="https://static.coingecko.com/s/coingecko-logo-8903d34ce19ca4be1c81f0db30e924154750d208683fad7ae6f2ce06c76d0a56.png" />
<img alt="CoinGecko Logo (White)" height="39px" class="darkshow" src="https://static.coingecko.com/s/coingecko-logo-white-ea42ded10e4d106e14227d48ea6140dc32214230aa82ef63d0499f9c1e109656.png" />
</a></div>
<nav class="tw-ml-6 tw-hidden lg:tw-flex">
<ul class="nav coingecko" data-controller="navigation-new-indicator">
<li class="hover-to-dropdown center tw-pr-6">
<div class="dropdown">
<a data-toggle="dropdown" class="tw-cursor-pointer">
<span class="tw-text-sm">Cryptocurrencies</span>
</a>
<div class="dropdown-menu text-2xs tw-mt-0 tw-border-b tw-border-gray-200 dark:tw-border-white dark:tw-border-opacity-12">
<div class="border-bottom tw-pb-2">
<a class="dropdown-item tw-py-2" href="/">By Market Cap</a>
<a class="dropdown-item tw-py-2" href="/en/new-cryptocurrencies">New Cryptocurrencies</a>
</div>
<div class="border-bottom tw-pt-2 tw-pb-2">
<a class="dropdown-item tw-py-2" href="/en/categories">
Categories
<div class="tw-inline-flex">
<span data-view-component="true" class="tw-inline-flex tw-items-center tw-font-medium tw-bg-primary-100 tw-text-primary-800 hover:tw-bg-primary-200 hover:tw-text-primary-900 dark:tw-bg-white dark:tw-bg-opacity-12 hover:dark:tw-bg-opacity-24 dark:tw-text-primary-400 tw-px-2 tw-py-0.5 tw-rounded tw-text-xs tw-max-h-5 tw-ml-1">
New
</span></div>
</a> <a class="dropdown-item tw-py-2" href="/en/watchlists">Watchlists</a>
<a class="dropdown-item tw-py-2" href="/en/crypto-gainers-losers">Gainers & Losers</a>
<a class="dropdown-item tw-py-2" href="/en/watchlists/high-volume">High Volume</a>
</div>
<div class="tw-pt-2">
<a class="dropdown-item tw-py-2" href="/en/all-cryptocurrencies">All Coins</a>
<a class="dropdown-item tw-py-2" href="/en/compare-cryptocurrencies">
Compare Coins
<div class="tw-inline-flex">
<span data-view-component="true" class="tw-inline-flex tw-items-center tw-font-medium tw-bg-primary-100 tw-text-primary-800 hover:tw-bg-primary-200 hover:tw-text-primary-900 dark:tw-bg-white dark:tw-bg-opacity-12 hover:dark:tw-bg-opacity-24 dark:tw-text-primary-400 tw-px-2 tw-py-0.5 tw-rounded tw-text-xs tw-max-h-5 tw-ml-1">
New
</span></div>
</a> <a class="dropdown-item tw-py-2" href="/en/converter">
Converter
<div class="tw-inline-flex">
<span data-view-component="true" class="tw-inline-flex tw-items-center tw-font-medium tw-bg-primary-100 tw-text-primary-800 hover:tw-bg-primary-200 hover:tw-text-primary-900 dark:tw-bg-white dark:tw-bg-opacity-12 hover:dark:tw-bg-opacity-24 dark:tw-text-primary-400 tw-px-2 tw-py-0.5 tw-rounded tw-text-xs tw-max-h-5 tw-ml-1">
New
</span></div>
</a> <a class="dropdown-item tw-py-2" href="/en/global-charts">Global Chart</a>
</div>
</div>
</div>
</li>
<li class="hover-to-dropdown center tw-pr-6">
<div class="dropdown">
<a data-toggle="dropdown" class="tw-cursor-pointer">
<span class="tw-text-sm">Exchanges</span>
</a>
<div class="dropdown-menu text-2xs tw-mt-0">
<a class="dropdown-item tw-py-2" href="/en/exchanges">Crypto Exchanges</a>
<a class="dropdown-item tw-py-2" href="/en/exchanges/decentralized">Decentralized Exchanges</a>
<a class="dropdown-item tw-py-2" href="/en/exchanges/derivatives">Derivatives</a>
</div>
</div>
</li>
<li class="hover-to-dropdown center tw-pr-6">
<div class="dropdown">
<a data-toggle="dropdown" class="tw-cursor-pointer">
<span class="tw-text-sm">NFT</span>
</a>
<div class="dropdown-menu text-2xs tw-mt-0">
<a class="dropdown-item tw-py-2" href="/en/nft">
NFT Floor Price
<div class="tw-inline-flex">
<span data-view-component="true" class="tw-inline-flex tw-items-center tw-font-medium tw-bg-primary-100 tw-text-primary-800 hover:tw-bg-primary-200 hover:tw-text-primary-900 dark:tw-bg-white dark:tw-bg-opacity-12 hover:dark:tw-bg-opacity-24 dark:tw-text-primary-400 tw-px-2 tw-py-0.5 tw-rounded tw-text-xs tw-max-h-5 tw-ml-1">
New
</span></div>
</a> <a class="dropdown-item tw-py-2" href="/en/categories/non-fungible-tokens-nft">NFT Related Coins</a>
</div>
</div>
</li>
<li class="hover-to-dropdown center tw-pr-6">
<div class="dropdown">
<a data-toggle="dropdown" class="tw-cursor-pointer">
<span class="tw-text-sm">Learn Crypto</span>
</a>
<div class="dropdown-menu text-2xs tw-mt-0">
<div class="border-bottom tw-pb-2">
<a class="dropdown-item tw-py-2" href="/learn">All Crypto Articles</a>
<a class="dropdown-item tw-py-2" href="/learn/category/tutorials">Tutorials</a>
<a class="dropdown-item tw-py-2" href="/learn/category/guides">Guides</a>
</div>
<div class="border-bottom tw-pb-2 tw-pt-2">
<a class="dropdown-item tw-py-2" href="/en/glossary">Glossary</a>
<a class="dropdown-item tw-py-2" href="/en/methodology">Methodology</a>
</div>
<div class="tw-pt-2">
<a class="dropdown-item tw-py-2" target="_blank" rel="noopener" href="https://www.youtube.com/c/CoinGeckoTV?sub_confirmation=1">Videos</a>
<a class="dropdown-item tw-py-2" href="https://podcast.coingecko.com/">Podcast</a>
<a class="dropdown-item tw-py-2" href="https://landing.coingecko.com/newsletter/">Newsletter</a>
<a class="dropdown-item tw-py-2" href="/en/publications/reports">Research Reports</a>
</div>
</div>
</div>
</li>
<li data-action="mouseover->navigation-new-indicator#hoverProductsNav" class="hover-to-dropdown center tw-pr-6 tw-relative tw-inline-flex">
<div class="dropdown">
<a data-toggle="dropdown" class="tw-cursor-pointer">
<span class="tw-text-sm">Products</span>
</a>
<div class="dropdown-menu text-2xs tw-mt-0">
<div class="border-bottom tw-pb-2">
<a target="_blank" rel="noopener" class="dropdown-item tw-py-2" href="https://www.geckoterminal.com?utm_source=coingecko&utm_medium=referral&utm_campaign=desktop_navigation">
GeckoTerminal
<div class="tw-inline-flex">
<span data-view-component="true" class="tw-inline-flex tw-items-center tw-font-medium tw-bg-primary-100 tw-text-primary-800 hover:tw-bg-primary-200 hover:tw-text-primary-900 dark:tw-bg-white dark:tw-bg-opacity-12 hover:dark:tw-bg-opacity-24 dark:tw-text-primary-400 tw-px-2 tw-py-0.5 tw-rounded tw-text-xs tw-max-h-5 tw-ml-1">
New
</span></div>
</a> <a class="dropdown-item tw-py-2" href="/research">CoinGecko Research</a>
<a class="dropdown-item tw-py-2" href="/en/mobile">CoinGecko App</a>
<a class="dropdown-item tw-py-2" href="/en/portfolio">Crypto Portfolio</a>
<a class="dropdown-item tw-py-2" href="/en/api">Crypto API</a>
<a class="dropdown-item tw-py-2" href="/en/widgets">Crypto Widget</a>
</div>
<div class="tw-pt-2">
<a class="dropdown-item tw-py-2" href="https://store.coingecko.com/">CoinGecko Store</a>
</div>
</div>
</div>
<span data-navigation-new-indicator-target="products" class="tw-flex tw-absolute tw-h-2 tw-w-2 tw-top-0 tw-right-3 tw-hidden">
<span class="tw-animate-ping tw-absolute tw-inline-flex tw-h-full tw-w-full tw-rounded-full tw-bg-primary-400 tw-opacity-75"></span>
<span class="tw-relative tw-inline-flex tw-rounded-full tw-h-2 tw-w-2 tw-bg-primary-500"></span>
</span>
</li>
</ul>
</nav>
</div>
<nav class="tw-flex tw-flex-row tw-items-center">
<div class="mr-3 candy-notification-icon-section">
<div class="candy-notification-dot tw-hidden" data-target="csrf-meta.candyNotificationIcon"></div>
<a data-target="csrf-meta.candyIcon" data-url="/account/rewards?locale=en" href="/account/candy?locale=en">
<img loading="lazy" height="20" width="13" class="candy-notification-icon" alt="coingecko candy jar" src="https://static.coingecko.com/s/candy_notification-62af2d17629b138154e3fac22a492b51d914d18461f9283ae4bd5ad5730d8763.svg" />
</a></div>
<div>
<div class="dropdown">
<a class="text-black tw-mr-4 tw-text-sm" data-target="csrf-meta.portfolioIcon" href="/en/portfolio">Portfolio</a>
</div>
</div>
<div class="hover-to-dropdown">
<div class="dropdown tw-hidden mr-3" data-target="csrf-meta.loggedInNavi">
<span data-toggle="dropdown" class="text-black tw-cursor-pointer">
<i class="fas fa-user"></i>
</span>
<div class="dropdown-menu dropdown-menu-center text-sm mt-0">
<span class="dropdown-item py-2 tw-cursor-pointer" data-action="click->application#navigateToUrl" data-url="/en/portfolio">
Portfolio
<div class="tw-inline-flex">
<span data-view-component="true" class="tw-inline-flex tw-items-center tw-font-medium tw-bg-primary-100 tw-text-primary-800 hover:tw-bg-primary-200 hover:tw-text-primary-900 dark:tw-bg-white dark:tw-bg-opacity-12 hover:dark:tw-bg-opacity-24 dark:tw-text-primary-400 tw-px-2 tw-py-0.5 tw-rounded tw-text-xs tw-max-h-5">
New
</span></div>
</span>
<span class="dropdown-item py-2 tw-cursor-pointer" data-action="click->application#navigateToUrl" data-url="/en/alerts">
Price Alert
</span>
<span class="dropdown-item py-2 tw-cursor-pointer" data-action="click->application#navigateToUrl" data-url="/account/security?locale=en">
Login and Security
</span>
<span class="dropdown-item py-2 tw-cursor-pointer tw-hidden" data-action="click->application#navigateToUrl" data-url="/en/developers/dashboard" data-target="csrf-meta.developerMenu">
Developer's Dashboard
</span>
<span class="dropdown-item py-2 tw-cursor-pointer" data-action="click->application#navigateToUrl" data-url="/account/subscriptions?locale=en">
Subscription
<i type="solid" class="fas tw-text-danger fa-heart-square"></i>
</span>
<span class="dropdown-item py-2 tw-text-sm tw-cursor-pointer" data-action="click->application#navigateToUrl" data-method="delete" data-url="/account/sign_out?locale=en">
Sign Out
</span>
</div>
</div>
</div>
<div class="tw-hidden mr-3" data-target="csrf-meta.loggedOutNavi">
<div class="tw-flex tw-row tw-items-center">
<span data-toggle="modal" data-target="#signInModal" class="tw-mr-4 text-black tw-text-sm tw-cursor-pointer hover:tw-text-primary-600">Login</span>
<button data-toggle="modal" data-target="#signUpModal" type="button" data-view-component="true" class="tw-mr-1 dark:focus:tw-outline-none dark:focus:tw-text-white dark:hover:tw-bg-primary-400 dark:hover:tw-text-white dark:tw-text-white disabled:tw-opacity-50 focus:tw-outline-none focus:tw-text-white hover:tw-bg-primary-700 hover:tw-text-white tw-bg-primary-500 tw-border tw-border-transparent tw-font-medium tw-inline-flex tw-items-center tw-leading-4 tw-rounded-md tw-text-white tw-justify-center tw-px-2.5 tw-py-1.5 tw-text-xs">
Sign Up
</button>
</div>
</div>
</nav>
</div>
<div>
<div data-controller="search buy-sell-ads" class="tw-flex flex-column tw-justify-center h-100 search-container" data-search-trending="{"coins":[{"item":{"id":"apecoin","coin_id":24383,"name":"ApeCoin","symbol":"APE","market_cap_rank":55,"thumb":"https://assets.coingecko.com/coins/images/24383/thumb/apecoin.jpg?1647476455","small":"https://assets.coingecko.com/coins/images/24383/small/apecoin.jpg?1647476455","large":"https://assets.coingecko.com/coins/images/24383/large/apecoin.jpg?1647476455","slug":"apecoin","price_btc":6.960727684583949e-05,"score":0}},{"item":{"id":"matic-network","coin_id":4713,"name":"Polygon","symbol":"MATIC","market_cap_rank":14,"thumb":"https://assets.coingecko.com/coins/images/4713/thumb/matic-token-icon.png?1624446912","small":"https://assets.coingecko.com/coins/images/4713/small/matic-token-icon.png?1624446912","large":"https://assets.coingecko.com/coins/images/4713/large/matic-token-icon.png?1624446912","slug":"polygon","price_btc":2.2728608345014283e-05,"score":1}},{"item":{"id":"curve-dao-token","coin_id":12124,"name":"Curve DAO","symbol":"CRV","market_cap_rank":68,"thumb":"https://assets.coingecko.com/coins/images/12124/thumb/Curve.png?1597369484","small":"https://assets.coingecko.com/coins/images/12124/small/Curve.png?1597369484","large":"https://assets.coingecko.com/coins/images/12124/large/Curve.png?1597369484","slug":"curve-dao-token","price_btc":2.5996812704571385e-05,"score":2}},{"item":{"id":"pink-bnb","coin_id":29479,"name":"Pink BNB","symbol":"PNB","market_cap_rank":657,"thumb":"https://assets.coingecko.com/coins/images/29479/thumb/200px.png?1679130446","small":"https://assets.coingecko.com/coins/images/29479/small/200px.png?1679130446","large":"https://assets.coingecko.com/coins/images/29479/large/200px.png?1679130446","slug":"pink-bnb","price_btc":7.353011292349747e-12,"score":3}},{"item":{"id":"bitdao","coin_id":17627,"name":"BitDAO","symbol":"BIT","market_cap_rank":65,"thumb":"https://assets.coingecko.com/coins/images/17627/thumb/rI_YptK8.png?1653983088","small":"https://assets.coingecko.com/coins/images/17627/small/rI_YptK8.png?1653983088","large":"https://assets.coingecko.com/coins/images/17627/large/rI_YptK8.png?1653983088","slug":"bitdao","price_btc":1.6262582165944674e-05,"score":4}},{"item":{"id":"pendle","coin_id":15069,"name":"Pendle","symbol":"PENDLE","market_cap_rank":287,"thumb":"https://assets.coingecko.com/coins/images/15069/thumb/Pendle_Logo_Normal-03.png?1634196276","small":"https://assets.coingecko.com/coins/images/15069/small/Pendle_Logo_Normal-03.png?1634196276","large":"https://assets.coingecko.com/coins/images/15069/large/Pendle_Logo_Normal-03.png?1634196276","slug":"pendle","price_btc":2.9587938891104145e-05,"score":5}},{"item":{"id":"pepe","coin_id":29850,"name":"Pepe","symbol":"PEPE","market_cap_rank":63,"thumb":"https://assets.coingecko.com/coins/images/29850/thumb/pepe-token.jpeg?1682922725","small":"https://assets.coingecko.com/coins/images/29850/small/pepe-token.jpeg?1682922725","large":"https://assets.coingecko.com/coins/images/29850/large/pepe-token.jpeg?1682922725","slug":"pepe","price_btc":5.650891274715088e-11,"score":6}}],"nft":[{"id":"meebits","name":"Meebits","symbol":"⚇","thumb":"https://assets.coingecko.com/nft_contracts/images/28/thumb/meebits.png?1644852788","nft_contract_id":28},{"id":"otherside-koda","name":"Otherside Koda","symbol":"KODA","thumb":"https://assets.coingecko.com/nft_contracts/images/3167/thumb/otherside-koda.png?1680791922","nft_contract_id":3167},{"id":"moonbirds","name":"Moonbirds","symbol":"MOONBIRD","thumb":"https://assets.coingecko.com/nft_contracts/images/349/thumb/moonbirds.png?1650248236","nft_contract_id":349},{"id":"veefriends-series-2","name":"VeeFriends Series 2","symbol":"VF2","thumb":"https://assets.coingecko.com/nft_contracts/images/445/thumb/veefriends-series-2.jpg?1657606653","nft_contract_id":445},{"id":"invisible-friends","name":"Invisible Friends","symbol":"INVSBLE","thumb":"https://assets.coingecko.com/nft_contracts/images/281/thumb/invisible-friends.png?1646476620","nft_contract_id":281}],"exchanges":[]}" data-search-trending-categories="[{"id":14,"name":"Gambling","market_cap_1h_change":1.0213276018682276,"slug":"gambling"},{"id":180,"name":"Layer 2 (L2)","market_cap_1h_change":0.4689996269657741,"slug":"layer-2"},{"id":181,"name":"Zero Knowledge (ZK)","market_cap_1h_change":0.4658750073618853,"slug":"zero-knowledge-zk"},{"id":1,"name":"Artificial Intelligence (AI)","market_cap_1h_change":0.31148761548775455,"slug":"artificial-intelligence"},{"id":69,"name":"NFT","market_cap_1h_change":0.2796758312128134,"slug":"non-fungible-tokens-nft"},{"id":57,"name":"Governance","market_cap_1h_change":0.23802677465797048,"slug":"governance"}]">
<span class="tw-hidden" data-url="https://www.coingecko.com/en/search_redirect" data-target="search.path"></span>
<div class="2lg:tw-relative my-2" data-action="keydown->search#onKeydown">
<div id="search-bar" class="tw-inline-flex tw-items-center tw-w-full 2lg:tw-w-36 tw-px-3 tw-py-2.5 tw-border tw-border-transparent tw-text-sm tw-rounded-md tw-text-gray-400 tw-bg-gray-100 hover:tw-text-gray-500 focus:tw-outline-none dark:tw-bg-white dark:tw-bg-opacity-12 dark:tw-text-white dark:tw-text-opacity-60 dark:hover:tw-text-opacity-87" data-action="click->search#showSearchPopup click->buy-sell-ads#loadLazily" data-ads-target-type="sponsoredSearch" data-target="search.searchbar index-trending-coins.searchbar search.inputOverlay">
<i class="far tw-w-6 fa-search"></i>
<div class="tw-truncate">
Search
</div>
</div>
<div id="search-popover" class="search-results tw-w-full 2lg:tw-w-96 tw-right-0 tw-top-0 tw-rounded-md 2lg:tw-shadow-lg tw-hidden" data-target="search.searchPopup">
<div class="container tw-px-0 tw-h-full">
<div class="tw-flex tw-flex-row tw-items-center tw-px-4 tw-py-1 tw-shadow-sm 2lg:tw-shadow-none tw-rounded-lg">
<div>
<i class="far tw-text-sm tw-mr-1 fa-search"></i>
</div>
<div class="tw-flex-1">
<input id="search-input-field" class="tw-w-full tw-border-none tw-px-2 tw-py-3 search-input-dark dark:tw-text-white tw-text-base lg:tw-text-sm" data-action="input->search#onInputChanged focus->search#onFocus" data-target="search.input search.searchInput" placeholder="Search token name or exchange" />
</div>
<div class="tw-flex tw-items-center">
<div class="tw-inline-flex">
<span data-action="click->search#clearSearch" data-view-component="true" class="tw-inline-flex tw-items-center tw-font-medium tw-bg-gray-100 tw-text-gray-800 hover:tw-bg-gray-200 dark:tw-bg-white dark:tw-bg-opacity-12 hover:dark:tw-bg-opacity-24 dark:tw-text-white dark:tw-text-opacity-87 tw-px-2 tw-py-0.5 tw-rounded tw-text-xs tw-max-h-5 tw-cursor-pointer tw-mr-2 lg:tw-hidden">
Clear
</span></div>
<i data-action="click->search#hideSearchPopup" class="fas fa-times tw-text-xl 2lg:tw-text-base tw-p-3 tw-pr-0 lg:tw-p-2 lg:tw-pr-0 tw-text-gray-500 tw-text-base dark:tw-text-white dark:tw-opacity-60 tw-cursor-pointer"></i>
</div>
</div>
<div>
<div id="sponsored-search-desktop" data-target="buy-sell-ads.sponsoredSearch" data-zone-key="CEAI45QJ"></div>
</div>
<div class="search-results-box tw-overflow-scroll tw-h-full 2lg:tw-h-auto tw-pt-2 lg:tw-pt-0" data-target="search.results" data-action="mouseover->search#onMouseover"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<script>
// cookie LCP
var cookie_notice_accept = document.cookie.split(';').filter(function(item) { return item.indexOf('cookie_notice_accept=1') >= 0 }).length
if (!cookie_notice_accept) {
document.getElementById("cookie-notice").style.display = "block";
}
// declare darkmode function
function applyBackgroundTheme(color) {
var css = "html { background: " + color + "; }",
head = document.head || document.getElementsByTagName('head')[0],
style = document.createElement('style');
head.appendChild(style);
style.type = 'text/css';
if (style.styleSheet){
style.styleSheet.cssText = css;
} else {
style.appendChild(document.createTextNode(css));
}
}
function darkmode() {
applyBackgroundTheme("#252525")
}
// Prioritize night mode
var isDarkMode = document.cookie.split(';').filter(function(item) { return item.indexOf('is_dark=true') >= 0 }).length
if (isDarkMode) {
document.body.classList.add('darktheme');
darkmode();
} else {
document.body.classList.remove('darktheme');
}
// search bar
var isTopAnnouncementHeaderDisabled = document.cookie.split(';').filter(function(item) { return item.indexOf('top_announcement_header_disabled=1') >= 0 }).length
if (isTopAnnouncementHeaderDisabled) {
document.getElementById("top-announcement-header").style.display = "none";
}
</script>
<div class="tw-flex container tw-justify-center tw-items-center tw-mt-2 tw-h-50px md:tw-h-100px" data-target="ads.banner">
<div id="bsa-zone_1509402283990-0_123456"></div>
</div>
<div class="filter-menu">
<div class="container">
<div class="tw-flex tw-justify-between tw-items-center">
<div class='breadcrumb'>
<nav class="tw-flex tw-truncate" aria-label="Breadcrumbs"><div><div class="tw-flex tw-items-center tw-text-sm tw-font-medium tw-text-gray-400 dark:tw-text-white dark:tw-text-opacity-38"><a class="tw-text-sm tw-font-medium tw-text-primary-500 hover:tw-text-primary-700
dark:tw-text-primary-500 dark:hover:tw-text-primary-700" href="/">Cryptocurrencies</a><i class="far fa-lg fa-angle-right tw-mx-4 tw-text-primary-500"></i></div></div><div><div class="tw-flex tw-items-center tw-text-sm tw-font-medium tw-text-gray-400 dark:tw-text-white dark:tw-text-opacity-38"><a class="tw-text-sm tw-font-medium tw-text-primary-500 hover:tw-text-primary-700
dark:tw-text-primary-500 dark:hover:tw-text-primary-700" href="/en/coins/ethernity-chain">Ethernity Chain</a><i class="far fa-lg fa-angle-right tw-mx-4 tw-text-primary-500"></i></div></div><div aria-current="page"><div class="tw-flex tw-items-center tw-text-sm tw-font-medium tw-text-gray-400 dark:tw-text-white dark:tw-text-opacity-38">ERN / ETH</div></div></nav>
</div>
</div>
</div>
</div>
<div class="container ">
<div id="unobtrusive-flash-messages" class='mt-2'></div>
<main>
<span id="vs-currency-override" data-iso-code="ETH"></span>
<div class="tw-grid tw-grid-cols-1 2lg:tw-grid-cols-3 tw-mt-6">
<div class="tw-flex tw-flex-col" x-data="{ create_portfolio_modal_open: false }" data-controller="coins-information">
<div class="tw-col-span-2 md:tw-col-span-2">
<div class="tw-inline-flex tw-items-center tw-px-2 tw-py-0.5 tw-rounded-md tw-text-xs tw-font-medium tw-bg-gray-800 tw-text-gray-100 tw-mb-1 md:tw-mb-0 md:tw-mt-0 dark:tw-bg-gray-600 dark:tw-bg-opacity-40">
Rank #567
</div>
<div class="tw-flex tw-text-gray-900 dark:tw-text-white tw-mt-2 tw-items-center">
<img class="tw-rounded-full" alt="Ethernity Chain Price (ERN)" height="28" width="28" src="https://assets.coingecko.com/coins/images/14238/small/LOGO_HIGH_QUALITY.png?1647831402" />
<h1 class="tw-m-0 tw-text-base tw-break-all">
<span data-view-component="true" class="tw-font-bold tw-text-gray-900 dark:tw-text-white dark:tw-text-opacity-87 md:tw-text-xl tw-text-lg tw-ml-2 tw-mr-1">
Ethernity Chain
</span>
<span data-view-component="true" class="tw-font-normal tw-text-gray-500 dark:tw-text-white dark:tw-text-opacity-60 tw-text-base tw-mt-0.5">
ERN / ETH
</span>
</h1> </div>
<div class="tw-grid-cols-3 tw-mb-1 md:tw-flex">
<div class="tw-col-span-3 lg:tw-col-span-2">
<div class="tw-text-4xl tw-font-bold tw-my-2 tw-flex tw-items-center">
<span class="tw-text-gray-900 dark:tw-text-white tw-text-3xl"><span class="no-wrap" data-price-btc="0.0000517633011226554" data-coin-id="14238" data-coin-symbol="ern" data-target="price.price">ETH0.00082274</span></span>
<span class="live-percent-change tw-ml-2 tw-text-xl"><span class="text-green" data-json="{"aed":1.023,"ars":1.508,"aud":0.87,"bch":3.37,"bdt":1.388,"bhd":1.025,"bmd":1.022,"bnb":2.262,"brl":1.722,"btc":2.324,"cad":0.873,"chf":1.1,"clp":1.026,"cny":0.907,"czk":1.329,"dkk":1.274,"dot":2.507,"eos":1.937,"eth":1.837,"eur":1.268,"gbp":0.876,"hkd":1.003,"huf":1.543,"idr":0.831,"ils":1.17,"inr":1.139,"jpy":0.987,"krw":1.188,"kwd":0.972,"lkr":0.61,"ltc":2.566,"mmk":1.268,"mxn":1.084,"myr":0.529,"ngn":2.474,"nok":0.672,"nzd":0.341,"php":1.363,"pkr":-2.823,"pln":1.288,"rub":1.56,"sar":1.016,"sek":1.027,"sgd":0.988,"thb":0.567,"try":1.18,"twd":1.033,"uah":1.262,"usd":1.022,"vef":1.022,"vnd":1.302,"xag":0.9,"xau":0.918,"xdr":1.27,"xlm":2.643,"xrp":0.719,"yfi":0.151,"zar":0.542,"bits":2.324,"link":1.345,"sats":2.324}" data-coin-id="14238" data-up-class="text-green" data-down-class="text-danger" data-24h="true" data-target="percent-change.percent" data-show-solid-arrow="true" data-formatted="false">1.0%<i class="far fa-level-up" data-icon-up-class="fa-level-up" data-icon-down-class="fa-level-down"></i></span></span>
<span class="tw-text-base tw-ml-2">
<div data-controller="gecko-primer--tooltip" data-gecko-primer--tooltip-tooltip-placement-value="bottom" data-action="mouseleave->gecko-primer--tooltip#hide">
<div data-gecko-primer--tooltip-target="anchor" data-action="mouseenter->gecko-primer--tooltip#show" aria-describedby="tooltip" class="tw-inline-block">
<i data-view-component="true" class="fa-info-circle tw-text-gray-500 far"></i>
</div>
<div class="tailwind-reset">
<div id="tooltip" role="tooltip" class="tw-max-w-sm tw-font-normal tw-z-50 tw-max-w-xs tw-text-left tw-inline-flex tw-items-center tw-rounded-md tw-text-sm tw-shadow-lg tw-hidden tw-border tw-border-tooltipoutline dark:tw-border dark:tw-border-white dark:tw-border-opacity-12 dark:tw-bg-dark-10 dark:tw-text-white dark:tw-text-opacity-60 tw-bg-white tw-text-gray-500 tw-p-4" data-gecko-primer--tooltip-target="tooltip">
<div class="tw-flex tw-flex-col tw-gap-y-3">
<p data-view-component="true" class="tw-font-medium tw-text-gray-700 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
How is the price of ERN/ETH calculated?
</p><p data-view-component="true" class="tw-font-normal tw-text-gray-500 dark:tw-text-white dark:tw-text-opacity-60 tw-text-sm">
The price of ERN in ETH is calculated in real-time by aggregating the latest data across 23 exchanges and 30 markets, using a global volume-weighted average formula, before converting the price to Ether (ETH) based on live exchange rates. Learn more about <a href="https://www.coingecko.com/en/methodology">how prices are calculated</a> on CoinGecko.
</p>
</div>
<div id="arrow" data-popper-arrow></div>
</div>
</div>
</div> </span>
</div>
<div class="tw-text-gray-500 text-normal dark:tw-text-white dark:tw-text-opacity-60 tw-mb-3">
<div class="tw-mb-0.5">
0.00005176 BTC
<span class="live-percent-change">
<span class="text-green" data-json="{"aed":1.023,"ars":1.508,"aud":0.87,"bch":3.37,"bdt":1.388,"bhd":1.025,"bmd":1.022,"bnb":2.262,"brl":1.722,"btc":2.324,"cad":0.873,"chf":1.1,"clp":1.026,"cny":0.907,"czk":1.329,"dkk":1.274,"dot":2.507,"eos":1.937,"eth":1.837,"eur":1.268,"gbp":0.876,"hkd":1.003,"huf":1.543,"idr":0.831,"ils":1.17,"inr":1.139,"jpy":0.987,"krw":1.188,"kwd":0.972,"lkr":0.61,"ltc":2.566,"mmk":1.268,"mxn":1.084,"myr":0.529,"ngn":2.474,"nok":0.672,"nzd":0.341,"php":1.363,"pkr":-2.823,"pln":1.288,"rub":1.56,"sar":1.016,"sek":1.027,"sgd":0.988,"thb":0.567,"try":1.18,"twd":1.033,"uah":1.262,"usd":1.022,"vef":1.022,"vnd":1.302,"xag":0.9,"xau":0.918,"xdr":1.27,"xlm":2.643,"xrp":0.719,"yfi":0.151,"zar":0.542,"bits":2.324,"link":1.345,"sats":2.324}" data-coin-id="14238" data-up-class="text-green" data-down-class="text-danger" data-24h="true" data-target="" data-show-solid-arrow="false" data-formatted="false">2.3%<i class="far fa-level-up" data-icon-up-class="fa-level-up" data-icon-down-class="fa-level-down"></i></span>
</span>
</div>
<div>
0.00082274 ETH
<span class="live-percent-change">
<span class="text-green" data-json="{"aed":1.023,"ars":1.508,"aud":0.87,"bch":3.37,"bdt":1.388,"bhd":1.025,"bmd":1.022,"bnb":2.262,"brl":1.722,"btc":2.324,"cad":0.873,"chf":1.1,"clp":1.026,"cny":0.907,"czk":1.329,"dkk":1.274,"dot":2.507,"eos":1.937,"eth":1.837,"eur":1.268,"gbp":0.876,"hkd":1.003,"huf":1.543,"idr":0.831,"ils":1.17,"inr":1.139,"jpy":0.987,"krw":1.188,"kwd":0.972,"lkr":0.61,"ltc":2.566,"mmk":1.268,"mxn":1.084,"myr":0.529,"ngn":2.474,"nok":0.672,"nzd":0.341,"php":1.363,"pkr":-2.823,"pln":1.288,"rub":1.56,"sar":1.016,"sek":1.027,"sgd":0.988,"thb":0.567,"try":1.18,"twd":1.033,"uah":1.262,"usd":1.022,"vef":1.022,"vnd":1.302,"xag":0.9,"xau":0.918,"xdr":1.27,"xlm":2.643,"xrp":0.719,"yfi":0.151,"zar":0.542,"bits":2.324,"link":1.345,"sats":2.324}" data-coin-id="14238" data-up-class="text-green" data-down-class="text-danger" data-24h="true" data-target="" data-show-solid-arrow="false" data-formatted="false">1.8%<i class="far fa-level-up" data-icon-up-class="fa-level-up" data-icon-down-class="fa-level-down"></i></span>
</span>
</div>
</div>
<div class="tw-col-start-1 md:tw-col-start-4 md:tw-col-end-7">
<div class="tw-flex tw-items-center tw-mt-3">
<div data-controller="gecko-primer--tooltip" data-gecko-primer--tooltip-tooltip-placement-value="bottom" data-action="mouseleave->gecko-primer--tooltip#hide">
<div data-gecko-primer--tooltip-target="anchor" data-action="mouseenter->gecko-primer--tooltip#show" aria-describedby="tooltip" class="tw-inline-block">
<div class="dropdown" data-controller="coin-add-this">
<button class="btn btn-sm tw-outline-btn-md center tw-p-0 tw-w-12 tw-mr-1" type="button" id="dropdownMenuButton" data-toggle="dropdown" data-action="mouseover->coin-add-this#loadAddThis" aria-haspopup="true" aria-expanded="false">
<span><i class="far fa-share"></i></span>
</button>
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
<div class="tw-mb-2 tw-text-sm tw-w-full">
<div class="tw-pl-0 dropdown-item">
<a class="addthis_button_facebook tw-text-black dark:tw-text-white tw-ml-4" data-action="click->application#gtagEventTrackLink" data-source="ethernity-chain" data-destination="facebook" data-event-category="click_share_add_this">
<i class="fab fa-facebook-square tw-pr-2"></i><span>Share on Facebook</span>
</a>
</div>
<div class="tw-pl-0 dropdown-item">
<a class="addthis_button_twitter tw-text-black dark:tw-text-white tw-ml-4" data-action="click->application#gtagEventTrackLink" data-source="ethernity-chain" data-destination="twitter" data-event-category="click_share_add_this">
<i class="fab fa-twitter-square tw-pr-2"></i><span>Share on Twitter</span>
</a>
</div>
</div>
<hr class="tw-my-2 tw-px-0">
<div class="tw-text-sm tw-mb-2 tw-mt-2 tw-px-4">
<i class="fas fa-link tw-text-sm dark:tw-text-white"></i>
<span class="tw-ml-2 tw-text-sm dark:tw-text-white">Copy Link</span>
</div>
<div class="tw-flex tw-text-sm tw-px-4" data-controller="voucher">
<input type="text" class="tw-h-10 tw-bg-primary-100 tw-border-none tw-px-4 tw-rounded tw-rounded-r-none focus:tw-outline-none" value="https://www.coingecko.com/en/coins/ethernity-chain/eth" readonly data-target="voucher.code">
<button type="button" class="btn btn-secondary tw-h-10 tw-rounded tw-rounded-l-none tw-border-primary-100" data-action="voucher#copyCode click->application#gtagEventTrackLink" data-source="ethernity-chain" data-event-category="click_share_copy"><i class="far fa-clone text-2xl" data-target="voucher.buttonIcon"></i></button>
</div>