-
Notifications
You must be signed in to change notification settings - Fork 0
Collapse file tree
Files
Search this repository
/
Copy pathindex.html
More file actions
More file actions
Latest commit
30 lines (30 loc) · 1004 Bytes
/
index.html
File metadata and controls
30 lines (30 loc) · 1004 Bytes
You must be signed in to make or propose changes
More edit options
Edit and raw actions
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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<script>
var links = [
"https://matching-affi.jp/optim.php?ms=mi496el3tspl",
"https://preaf.jp/pa.do?s=v19509&o=65715&guid=ON",
"https://preaf.jp/pa.do?s=v19509&o=65541&guid=ON",
"https://preaf.jp/pa.do?s=v19509&o=66323&guid=ON",
"https://preaf.jp/pa.do?s=v19509&o=64838&guid=ON",
"https://preaf.jp/pa.do?s=v19509&o=64830&guid=ON",
"https://preaf.jp/pa.do?s=v19509&o=64632&guid=ON",
"https://preaf.jp/pa.do?s=v19509&o=66950&guid=ON"
];
var w = 95 / 7;
var weights = [5, w, w, w, w, w, w, w];
var r = Math.random() * 100;
var total = 0;
for (var i = 0; i < links.length; i++) {
total += weights[i];
if (r < total) {
window.location.replace(links[i]);
break;
}
}
</script>
</head>
<body></body>
</html>