-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdelisted.html
More file actions
263 lines (257 loc) · 16.5 KB
/
delisted.html
File metadata and controls
263 lines (257 loc) · 16.5 KB
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
<!doctype html>
<html lang="en" class="h-100" data-bs-theme="auto">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Evolidea</title>
<link href="assets/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="assets/dist/js/bootstrap.bundle.min.js"></script>
<link rel="icon" href="assets/img/logo1.png">
<script src="assets/js/vue.global.js"></script>
<script src="assets/js/jquery.js"></script>
<link rel="stylesheet" href="assets/css/dataTables.dataTables.min.css">
<script src="assets/js/dataTables.min.js"></script>
</head>
<body style="background-color: rgba(255, 255, 255);">
<!-- Google tag (gtag.js) ↓ -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-X1X588HRD0"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-X1X588HRD0');
</script>
<!-- Google tag (gtag.js) ↑ -->
<style>
#loadingOverlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(255, 255, 255, 0.5);
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
}
.spinner-border {
width: 3rem;
height: 3rem;
border: 0.25em solid currentColor;
border-right-color: transparent;
border-radius: 50%;
animation: spinner-border 0.75s linear infinite;
}
@keyframes spinner-border {
to {
transform: rotate(360deg);
}
}
</style>
<!-- Fixed navbar ↓ -->
<header>
<style>
.navbar-brand {
line-height: 50px;
}
.navbar-brand img {
vertical-align: middle;
}
</style>
<nav class="navbar navbar-white fixed-top" style="height: 80px; background-color: rgba(255, 255, 255, 0.8);">
<div class="container-fluid">
<a class="navbar-brand" href="https://www.evolidea.com/">
   <img src="assets/img/logo1.png" alt="Logo" width="40" height="40" class="d-inline-block align-top">
<b style="font-size: 28px; font-family: 'Times New Roman'">Evolidea</b>
</a>
<a class="navbar-brand" href="#" data-bs-toggle="modal" data-bs-target="#exampleModal">
<img src="assets/img/menu.svg" alt="Logo" width="20" height="15" class="d-inline-block align-middle">
<b style="font-size: 18px; font-family: 'Times New Roman'">Memu</b>      
</a>
</div>
</nav>
</header>
<!-- Fixed navbar ↑ -->
<div id="loadingOverlay">
<div class="spinner-border" role="status">
</div>
</div>
<!-- Page content ↓ -->
<div class="container col-xxl-8 px-2">
<div class="row flex-lg-row-reverse align-items-center g-5 py-5">
<div class="col-10 col-sm-8 col-lg-5">
   <img src="assets/img/delisted.png" class="d-block mx-lg-auto img-fluid" width="300" height="150" loading="lazy">
</div>
<div class="col-lg-7">
<p class="lead">Delisting is more than a corporate obituary—it is the market’s quiet, relentless act of natural selection. Each removal pinpoints the precise moment when strategy, governance, or timing fatally misaligned. By autopsying these “extinct” companies we obtain a reverse roadmap. Translate their terminal errors into early-warning signals and we can exit, pivot, or regulate long before the same gravity pulls us over the cliff. Elimination, in short, is information; our task is to harvest it before the next species—or stock—arrives at the edge.</p>
</div>
</div>
</div>
<div class="container col-xxl-8 px-2">
<div class="row">
<div class="container col-12" id="vueapp">
<table id="myTable" class="display">
<thead>
<tr>
<th>Date</th><th>Name</th><th>Country</th><th>Founded</th><th>SIC</th><th>Office</th><th>Industry</th><th>Reason</th>
</tr>
</thead>
<tbody>
<tr v-for="(row, idx) in tableData" :key="idx" :style="{ backgroundColor: row[8] === '+' ? '#F0FFF0' : row[8] === '-' ? '#FFE4E1' : '' }">
<td v-for="(cell, cellIdx) in row.slice(0, 8)" :key="cellIdx"><b>{{ cell }}</b></td>
</tr>
</tbody>
</table>
</div>
<div class="container col-0">
</div>
</div>
</div>
<br>
<br>
<br>
<!-- Modal ↓ -->
<div class="modal fade custom-modal" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog modal-fullscreen">
<div class="modal-content" style="border-bottom: none;">
<div class="modal-header">
<a class="navbar-brand" href="https://www.evolidea.com/">
   <img src="assets/img/logo1.png" alt="Logo" width="40" height="40" class="d-inline-block align-top">
<b style="font-size: 28px; font-family: 'Times New Roman';">Evolidea</b>
</a>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>          
</div>
<div class="modal-body">
<div class="row">
<div class="col-9" style="text-align: center; height: 100%;">
<img src="assets/img/beagle.png" style="max-width: 70%; max-height: 70%; width: auto; height: auto; display: block; margin: 0 auto;">
<p style="max-width: 70%; margin: 1rem auto 0;">From 1831 to 1836, Darwin spent five years aboard HMS Beagle on a global voyage, amassing a wealth of invaluable material and evidence for his later work <em>On the Origin of Species</em>.</p>
</div>
<div class="col-2" style="text-align:right;">
<p style="margin: 2em 0;"><a href="index.html" style="text-decoration: none; color: inherit; font-size: 1.8em; font-weight: bold; display:inline-block;">Home</a></p>
<p style="margin: 2em 0;"><a href="researches.html" style="text-decoration: none; color: inherit; font-size: 1.8em; font-weight: bold; display:inline-block;">Researches</a></p>
<p style="margin: 2em 0;"><a href="investment.html" style="text-decoration: none; color: inherit; font-size: 1.8em; font-weight: bold; display:inline-block;">Investments</a></p>
<p style="margin: 2em 0;"><a href="team.html" style="text-decoration: none; color: inherit; font-size: 1.8em; font-weight: bold; display:inline-block;">Team</a></p>
</div>
<div class="col-1"></div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal ↑ -->
<svg xmlns="http://www.w3.org/2000/svg" class="d-none">
<symbol id="linkedin" viewBox="0 0 16 16">
<path d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z"/>
</symbol>
<symbol id="instagram" viewBox="0 0 16 16">
<path d="M8 0C5.829 0 5.556.01 4.703.048 3.85.088 3.269.222 2.76.42a3.917 3.917 0 0 0-1.417.923A3.927 3.927 0 0 0 .42 2.76C.222 3.268.087 3.85.048 4.7.01 5.555 0 5.827 0 8.001c0 2.172.01 2.444.048 3.297.04.852.174 1.433.372 1.942.205.526.478.972.923 1.417.444.445.89.719 1.416.923.51.198 1.09.333 1.942.372C5.555 15.99 5.827 16 8 16s2.444-.01 3.298-.048c.851-.04 1.434-.174 1.943-.372a3.916 3.916 0 0 0 1.416-.923c.445-.445.718-.891.923-1.417.197-.509.332-1.09.372-1.942C15.99 10.445 16 10.173 16 8s-.01-2.445-.048-3.299c-.04-.851-.175-1.433-.372-1.941a3.926 3.926 0 0 0-.923-1.417A3.911 3.911 0 0 0 13.24.42c-.51-.198-1.092-.333-1.943-.372C10.443.01 10.172 0 7.998 0h.003zm-.717 1.442h.718c2.136 0 2.389.007 3.232.046.78.035 1.204.166 1.486.275.373.145.64.319.92.599.28.28.453.546.598.92.11.281.24.705.275 1.485.039.843.047 1.096.047 3.231s-.008 2.389-.047 3.232c-.035.78-.166 1.203-.275 1.485a2.47 2.47 0 0 1-.599.919c-.28.28-.546.453-.92.598-.28.11-.704.24-1.485.276-.843.038-1.096.047-3.232.047s-2.39-.009-3.233-.047c-.78-.036-1.203-.166-1.485-.276a2.478 2.478 0 0 1-.92-.598 2.48 2.48 0 0 1-.6-.92c-.109-.281-.24-.705-.275-1.485-.038-.843-.046-1.096-.046-3.233 0-2.136.008-2.388.046-3.231.036-.78.166-1.204.276-1.486.145-.373.319-.64.599-.92.28-.28.546-.453.92-.598.282-.11.705-.24 1.485-.276.738-.034 1.024-.044 2.515-.045v.002zm4.988 1.328a.96.96 0 1 0 0 1.92.96.96 0 0 0 0-1.92zm-4.27 1.122a4.109 4.109 0 1 0 0 8.217 4.109 4.109 0 0 0 0-8.217zm0 1.441a2.667 2.667 0 1 1 0 5.334 2.667 2.667 0 0 1 0-5.334z"/>
</symbol>
</svg>
<style>
.custom-container {
max-width: 85%;
margin-left: auto;
margin-right: auto;
padding-left: 30px;
padding-right: 30px;
}
</style>
<!-- Footer content ↓ -->
<footer class="py-5" style="background-color: rgba(245, 245, 245);">
<div class="container custom-container">
<h5>We are supported by</h5><br>
<div class="row">
<div class="col-6 col-md-2 mb-3">
<ul class="nav flex-column">
<li class="nav-item mb-2"><a href="https://www.gov.uk/" target=blank class="nav-link p-0 text-body-secondary">GOV·UK</a></li>
<li class="nav-item mb-2"><a href="https://www.aliyun.com/" target=blank class="nav-link p-0 text-body-secondary">Aliyun</a></li>
<li class="nav-item mb-2"><a href="https://datatables.net/" target=blank class="nav-link p-0 text-body-secondary">DataTable</a></li>
</ul>
</div>
<div class="col-6 col-md-2 mb-3">
<ul class="nav flex-column">
<li class="nav-item mb-2"><a href="https://www.company-go.com/" target=blank class="nav-link p-0 text-body-secondary">Company-Go</a></li>
<li class="nav-item mb-2"><a href="https://analytics.google.com/" target=blank class="nav-link p-0 text-body-secondary">Google Analytics</a></li>
<li class="nav-item mb-2"><a href="https://www.kimi.com/" target=blank class="nav-link p-0 text-body-secondary">Kimi</a></li>
</ul>
</div>
<div class="col-6 col-md-2 mb-3">
<ul class="nav flex-column">
<li class="nav-item mb-2"><a href="https://github.com/" target=blank class="nav-link p-0 text-body-secondary">GitHub</a></li>
<li class="nav-item mb-2"><a href="https://wise.com/" target=blank class="nav-link p-0 text-body-secondary">Wise</a></li>
</ul>
</div>
<div class="col-6 col-md-2 mb-3">
<ul class="nav flex-column">
<li class="nav-item mb-2"><a href="https://picjumbo.com/" target=blank class="nav-link p-0 text-body-secondary">Picjumbo</a></li>
<li class="nav-item mb-2"><a href="https://www.interactivebrokers.com" target=blank class="nav-link p-0 text-body-secondary">Interactive Brokers</a></li>
</ul>
</div>
<div class="col-6 col-md-2 mb-3">
<ul class="nav flex-column">
<li class="nav-item mb-2"><a href="https://umami.is/" target=blank class="nav-link p-0 text-body-secondary">Umami</a></li>
<li class="nav-item mb-2"><a href="https://icoloring.ai/" target=blank class="nav-link p-0 text-body-secondary">iColoring</a></li>
</ul>
</div>
<div class="col-6 col-md-2 mb-3">
<ul class="nav flex-column">
<li class="nav-item mb-2"><a href="https://getbootstrap.com/" target=blank class="nav-link p-0 text-body-secondary">Bootstrap</a></li>
<li class="nav-item mb-2"><a href="https://www.sec.gov/" target=blank class="nav-link p-0 text-body-secondary">SEC</a></li>
</ul>
</div>
</div>
<div class="d-flex flex-column flex-sm-row justify-content-between py-4 my-4 border-top">
<span class="mb-3 mb-md-0 text-body-secondary"><img src="assets/img/logo2.png" alt="Logo" width="25" height="25" >  © 2025 Evolidea Limited</span>
<ul class="list-unstyled d-flex">
<li class="ms-3"><a class="text-body-secondary" href="https://www.linkedin.com/company/evolidea/" target=blank aria-label="LinkedIn"><svg class="bi" width="24" height="24" aria-hidden="true"><use xlink:href="#linkedin"/></svg></a></li>
<li class="ms-3"><a class="text-body-secondary" href="#" aria-label="Instagram"><svg class="bi" width="24" height="24" aria-hidden="true"><use xlink:href="#instagram"/></svg></a></li>
</ul>
</div>
</div>
</footer>
<!-- Footer content ↑ -->
<script>
window.addEventListener('load', function() {
setTimeout(function() {
var loadingOverlay = document.getElementById('loadingOverlay');
if (loadingOverlay) {
loadingOverlay.style.display = 'none';
}
}, 100);
});
</script>
<script src="delisted.js"></script>
<script>
const { createApp } = Vue;
createApp({
data() {
return {
tableData: [],
showItem: true,
};
},
mounted() {
if (Array.isArray(window.data_delisted)) {
this.tableData = window.data_delisted;
this.showItem = false;
} else {
console.warn('未获取到 data_delisted,使用空数组');
}
}
}).mount('#vueapp');
</script>
<script>
$(document).ready( function () {
$('#myTable').DataTable({
order: [[0, 'desc']],
//columnDefs: [
// { searchable: false, targets: [2, 3, 4, 5] }
//]
});
} );
</script>
<script defer src="https://cloud.umami.is/script.js" data-website-id="c25ae95a-37da-4dec-bee2-e385dbf98767"></script>
</body>
</html>