| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>PrUn gateways</title>
- <link rel="stylesheet" type="text/css" href="style.css">
- <link rel="icon" href="https://www.raylu.net/hammer-man.svg" />
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <meta name="theme-color" content="#222">
- </head>
- <body>
- <a href="/">← back</a>
- <main class="production">
- <form>
- <label>PUNoted API key: <input type="password" size="30" id="api-key"></label>
- <input type="button" value="fetch" id="fetch">
- </form>
- <section id="loader"></section>
- <div id="gateways"></div>
- </main>
- <div id="popover" popover="hint"></div>
- <script type="module">
- import {setupProduction} from './production.js';
- const blueprint = {
- 'SEA': 5000,
- 'LIT': 440,
- 'PSH': 2200,
- 'RSH': 600,
- 'TSH': 600,
- 'TRU': 4000,
- 'ABH': 400,
- 'ADE': 260,
- 'ASE': 360,
- 'ATA': 260,
- 'HSE': 160,
- 'LBH': 400,
- 'LDE': 160,
- 'LSE': 400,
- 'LTA': 80,
- 'RBH': 560,
- 'RDE': 200,
- 'RSE': 560,
- 'RTA': 200,
- 'ADS': 5,
- 'COM': 5,
- 'CBL': 240,
- 'SP': 8000,
- 'GWS': 10,
- 'SST': 1,
- 'SPT': 2600,
- 'TRS': 140,
- 'IMM': 5,
- }
- const buy = new Set([
- 'ADS', 'AMM', 'BBH', 'BSE', 'COM', 'GAL', 'HE', 'IMM', 'NE', 'O', 'SEA',
- ])
- setupProduction(blueprint, buy, 'CI1', document.querySelector('#gateways'));
- </script>
- </body>
- </html>
|