Remove private notes, saved HTML data dump, and training zip; expand gitignore
Browse files- .gitignore +6 -0
- Summary.txt +0 -283
- colab_prompts.md +0 -607
- data/Wildfire Grpo Training - a Hugging Face Space by Eshit.html +0 -168
- data/Wildfire Grpo Training - a Hugging Face Space by Eshit_files/189a01133e93c528ec7ce3835dec068e.svg +0 -1
- data/Wildfire Grpo Training - a Hugging Face Space by Eshit_files/challenge.js.download +0 -0
- data/Wildfire Grpo Training - a Hugging Face Space by Eshit_files/css2 +0 -630
- data/Wildfire Grpo Training - a Hugging Face Space by Eshit_files/css2(1) +0 -135
- data/Wildfire Grpo Training - a Hugging Face Space by Eshit_files/huggingface_logo-noborder.svg +0 -37
- data/Wildfire Grpo Training - a Hugging Face Space by Eshit_files/inner.html +0 -3
- data/Wildfire Grpo Training - a Hugging Face Space by Eshit_files/katex.min.css +0 -1
- data/Wildfire Grpo Training - a Hugging Face Space by Eshit_files/m-outer-15a2b40a058ddff1cffdb63779fe3de1.js.download +0 -1
- data/Wildfire Grpo Training - a Hugging Face Space by Eshit_files/m-outer-3437aaddcdf6922d623e172c2d6f9278.html +0 -3
- data/Wildfire Grpo Training - a Hugging Face Space by Eshit_files/out-4.5.45.js.download +0 -1
- data/Wildfire Grpo Training - a Hugging Face Space by Eshit_files/saved_resource +0 -0
- data/Wildfire Grpo Training - a Hugging Face Space by Eshit_files/saved_resource.html +0 -0
- data/Wildfire Grpo Training - a Hugging Face Space by Eshit_files/script.js.download +0 -1
- data/Wildfire Grpo Training - a Hugging Face Space by Eshit_files/style.css +0 -0
- implementation_plan.md +0 -35
- sft_final.zip +0 -3
- yt.txt +0 -47
.gitignore
CHANGED
|
@@ -83,3 +83,9 @@ AGENTS.md
|
|
| 83 |
*External*Meta*OpenEnv*Hackathon*.pdf
|
| 84 |
private_notes/
|
| 85 |
.private/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 83 |
*External*Meta*OpenEnv*Hackathon*.pdf
|
| 84 |
private_notes/
|
| 85 |
.private/
|
| 86 |
+
|
| 87 |
+
# Local scrapes / dumps
|
| 88 |
+
data/
|
| 89 |
+
|
| 90 |
+
# Training bundle artifacts (regenerate; do not commit)
|
| 91 |
+
sft_*.zip
|
Summary.txt
DELETED
|
@@ -1,283 +0,0 @@
|
|
| 1 |
-
Wildfire Containment Simulator - Project Summary
|
| 2 |
-
================================================
|
| 3 |
-
|
| 4 |
-
1. Project Purpose
|
| 5 |
-
This repository implements a grid-based wildfire containment environment designed for reinforcement learning and LLM-agent evaluation. The project follows an OpenEnv-style API with reset(), step(), and state() methods. The main challenge is resource allocation under uncertainty: an agent must deploy crews, use tankers, build firebreaks, and optionally use recon flights to contain a spreading wildfire before it destroys populated cells.
|
| 6 |
-
|
| 7 |
-
The environment is framed like a hackathon benchmark rather than a full scientific simulator. It is intentionally lightweight, reproducible, and easy to grade, but it still models realistic drivers such as fuel, wind, slope, moisture, smoke, and operational constraints.
|
| 8 |
-
|
| 9 |
-
2. High-Level Repository Structure
|
| 10 |
-
|
| 11 |
-
Root files
|
| 12 |
-
- app.py: top-level FastAPI server entry point used by Docker/Hugging Face deployment.
|
| 13 |
-
- inference.py: LLM-driven rollout script that queries an OpenAI-compatible model and runs it on one or more tasks.
|
| 14 |
-
- openenv.yaml: environment metadata, API contract, task definitions, and baseline declarations.
|
| 15 |
-
- pyproject.toml: package metadata, dependencies, and console scripts.
|
| 16 |
-
- README.md: project overview, task descriptions, API examples, and benchmark summary.
|
| 17 |
-
- Dockerfile: container build for serving the environment on port 7860.
|
| 18 |
-
|
| 19 |
-
Core packages
|
| 20 |
-
- env/: main simulation code.
|
| 21 |
-
- agents/: baseline decision policies.
|
| 22 |
-
- graders/: one grader per difficulty tier.
|
| 23 |
-
- scripts/: evaluation entry point and saved benchmark output.
|
| 24 |
-
- server/: secondary server package entry point for the packaged `serve` / `server` scripts.
|
| 25 |
-
|
| 26 |
-
Notable extra items
|
| 27 |
-
- There is a nested `Wildfire-Containment-Simulator/README.md` which looks like leftover Hugging Face space metadata rather than active source.
|
| 28 |
-
- There is also a strange root directory named `{env,graders,agents,scripts}` that does not appear to be part of the running code.
|
| 29 |
-
- `venv/`, `__pycache__/`, and `*.egg-info` are local/generated artifacts rather than logical project modules.
|
| 30 |
-
|
| 31 |
-
3. Main Runtime Architecture
|
| 32 |
-
The central class is env/wildfire_env.py -> WildfireEnv.
|
| 33 |
-
|
| 34 |
-
WildfireEnv owns five main subsystems:
|
| 35 |
-
- Grid: terrain generation, static cell properties, dynamic cell state, smoke, moisture, and observation filtering.
|
| 36 |
-
- FireSpreadEngine: cellular fire propagation and burn progression.
|
| 37 |
-
- WeatherEngine: wind, humidity, and rain evolution.
|
| 38 |
-
- ResourceManager: crews, tankers, firebreak budget, recon reveal logic, and suppression.
|
| 39 |
-
- RewardCalculator: weighted reward computation and penalties.
|
| 40 |
-
|
| 41 |
-
The environment is configured by TierConfig objects defined in env/models.py. Three presets exist:
|
| 42 |
-
- easy: 15x15 grid, simple conditions, 1 ignition, no fog/smoke complexity.
|
| 43 |
-
- medium: 25x25 grid, smoke, wind shifts, 2 ignitions, limited recon.
|
| 44 |
-
- hard: 40x40 grid, fog of war, staggered ignition, crew loss event, more resources, longer horizon.
|
| 45 |
-
|
| 46 |
-
4. Environment Data Model
|
| 47 |
-
env/models.py is the type contract for the whole project. It defines:
|
| 48 |
-
- enums for fuel type, fire state, movement direction, action type, and intensity bins.
|
| 49 |
-
- static and dynamic cell models.
|
| 50 |
-
- weather state and observed weather.
|
| 51 |
-
- crew and tanker state.
|
| 52 |
-
- Action, Observation, and StepResult Pydantic models.
|
| 53 |
-
|
| 54 |
-
This is important because actions are validated twice:
|
| 55 |
-
- Pydantic validates required fields by action type.
|
| 56 |
-
- WildfireEnv performs semantic checks such as bounds and feasibility.
|
| 57 |
-
|
| 58 |
-
5. How One Episode Works
|
| 59 |
-
An episode begins with env.reset(task_id, seed).
|
| 60 |
-
|
| 61 |
-
Reset sequence:
|
| 62 |
-
- picks the tier configuration.
|
| 63 |
-
- seeds NumPy RNG for reproducibility.
|
| 64 |
-
- creates Grid, FireSpreadEngine, WeatherEngine, ResourceManager, and RewardCalculator.
|
| 65 |
-
- resets resource and weather state.
|
| 66 |
-
- ignites initial fire locations chosen to avoid obviously unwinnable starts near population centers.
|
| 67 |
-
- returns the first Observation.
|
| 68 |
-
|
| 69 |
-
Each env.step(action) follows a fixed sequence:
|
| 70 |
-
- validate the action.
|
| 71 |
-
- execute crew/tanker/firebreak/recon/idle logic.
|
| 72 |
-
- spread the fire.
|
| 73 |
-
- apply crew suppression at deployed crew locations.
|
| 74 |
-
- evolve weather.
|
| 75 |
-
- update terrain moisture.
|
| 76 |
-
- propagate smoke downwind.
|
| 77 |
-
- tick tanker cooldowns.
|
| 78 |
-
- expire recon reveals.
|
| 79 |
-
- trigger hard-mode scripted events such as staggered ignition and forced crew loss.
|
| 80 |
-
- compute reward.
|
| 81 |
-
- check termination.
|
| 82 |
-
- build and return the next observation.
|
| 83 |
-
|
| 84 |
-
This means action effects and environment dynamics are interleaved every tick. The agent does not directly control fire suppression strength; it controls where crews and resources are positioned, and suppression then occurs automatically through ResourceManager.
|
| 85 |
-
|
| 86 |
-
6. Terrain and Grid Logic
|
| 87 |
-
env/grid.py generates both static terrain and dynamic cell state.
|
| 88 |
-
|
| 89 |
-
Static terrain includes:
|
| 90 |
-
- elevation
|
| 91 |
-
- fuel type
|
| 92 |
-
- fuel load
|
| 93 |
-
- water cells
|
| 94 |
-
- population placement
|
| 95 |
-
|
| 96 |
-
Terrain varies by difficulty:
|
| 97 |
-
- easy is mostly flat grass.
|
| 98 |
-
- medium forms a canyon/valley structure with mixed fuel.
|
| 99 |
-
- hard uses more random mixed terrain, roads, water features, and larger settlements.
|
| 100 |
-
|
| 101 |
-
Dynamic state includes:
|
| 102 |
-
- current fire state
|
| 103 |
-
- fire intensity
|
| 104 |
-
- moisture
|
| 105 |
-
- suppression level
|
| 106 |
-
- smoke density
|
| 107 |
-
- crew presence
|
| 108 |
-
|
| 109 |
-
The observation builder applies two visibility systems:
|
| 110 |
-
- smoke occlusion: cells with dense smoke can become UNKNOWN.
|
| 111 |
-
- fog of war: on hard mode, only areas near crews or revealed by recon are visible.
|
| 112 |
-
|
| 113 |
-
7. Fire Spread Model
|
| 114 |
-
env/fire_spread.py implements an 8-neighbor cellular automaton inspired by Rothermel-style wildfire drivers.
|
| 115 |
-
|
| 116 |
-
For each burning cell, the engine attempts to ignite neighboring cells using factors based on:
|
| 117 |
-
- target fuel type and fuel load
|
| 118 |
-
- source fire intensity
|
| 119 |
-
- wind alignment
|
| 120 |
-
- uphill/downhill slope
|
| 121 |
-
- moisture
|
| 122 |
-
- suppression level
|
| 123 |
-
- tier-specific spread scaling
|
| 124 |
-
|
| 125 |
-
After ignition attempts, burning cells progress through intensity growth, plateau, ember state, and burnout. Urban cells are treated specially with higher intensity but lower ignition probability. The model is simplified, but the interaction between terrain, wind, and suppression is coherent enough for benchmarking.
|
| 126 |
-
|
| 127 |
-
8. Resource Mechanics
|
| 128 |
-
env/resources.py manages the controllable operational layer.
|
| 129 |
-
|
| 130 |
-
Ground crews
|
| 131 |
-
- start undeployed.
|
| 132 |
-
- can be deployed to safe cells.
|
| 133 |
-
- can move one cell per step in 8 directions.
|
| 134 |
-
- automatically suppress fire on their current cell every tick.
|
| 135 |
-
- can become casualties if intensity spikes too high.
|
| 136 |
-
|
| 137 |
-
Tankers
|
| 138 |
-
- perform 3x3 retardant drops.
|
| 139 |
-
- increase moisture and suppression while reducing fire intensity.
|
| 140 |
-
- have cooldowns after use.
|
| 141 |
-
- can fail to act when smoke at target is too dense.
|
| 142 |
-
|
| 143 |
-
Firebreaks
|
| 144 |
-
- are built by adjacent deployed crews.
|
| 145 |
-
- consume a limited budget.
|
| 146 |
-
- convert an unburned cell into a non-flammable FIREBREAK state.
|
| 147 |
-
|
| 148 |
-
Recon
|
| 149 |
-
- reveals a 10x10 area temporarily.
|
| 150 |
-
- only matters on tiers with fog/hidden information.
|
| 151 |
-
|
| 152 |
-
9. Reward and Termination
|
| 153 |
-
env/reward.py computes a normalized weighted composite reward with these components:
|
| 154 |
-
- containment
|
| 155 |
-
- population safety
|
| 156 |
-
- efficiency
|
| 157 |
-
- speed
|
| 158 |
-
- area saved
|
| 159 |
-
|
| 160 |
-
Additional penalties apply for:
|
| 161 |
-
- invalid actions
|
| 162 |
-
- population loss
|
| 163 |
-
- crew casualties
|
| 164 |
-
|
| 165 |
-
A crew casualty forces reward to 0.0, which makes hard mode especially unforgiving.
|
| 166 |
-
|
| 167 |
-
Episodes terminate when:
|
| 168 |
-
- the time limit is reached,
|
| 169 |
-
- the fire is fully gone and no delayed ignition remains pending,
|
| 170 |
-
- or all population has been lost.
|
| 171 |
-
|
| 172 |
-
10. Baseline Agents and Evaluation
|
| 173 |
-
agents/random_agent.py is a lower-bound baseline that samples from available action types.
|
| 174 |
-
|
| 175 |
-
agents/heuristic_agent.py is the stronger baseline. Its decision stack is:
|
| 176 |
-
- deploy undeployed crews,
|
| 177 |
-
- move endangered crews,
|
| 178 |
-
- protect population,
|
| 179 |
-
- call air support,
|
| 180 |
-
- contain the fire perimeter,
|
| 181 |
-
- use recon when worthwhile,
|
| 182 |
-
- otherwise idle.
|
| 183 |
-
|
| 184 |
-
scripts/evaluate.py runs both agents across easy, medium, and hard graders with repeated seeds and writes results to scripts/results.json.
|
| 185 |
-
|
| 186 |
-
The graders are intentionally thin. Each grader:
|
| 187 |
-
- creates a WildfireEnv,
|
| 188 |
-
- resets on a fixed task,
|
| 189 |
-
- repeatedly calls agent.act(obs),
|
| 190 |
-
- returns the final reward.
|
| 191 |
-
|
| 192 |
-
11. API and Deployment Layer
|
| 193 |
-
There are two HTTP server entry points:
|
| 194 |
-
- app.py at repo root
|
| 195 |
-
- server/app.py inside the package
|
| 196 |
-
|
| 197 |
-
Both expose similar FastAPI endpoints:
|
| 198 |
-
- GET /
|
| 199 |
-
- GET /health
|
| 200 |
-
- POST /reset
|
| 201 |
-
- POST /step
|
| 202 |
-
- GET /state
|
| 203 |
-
|
| 204 |
-
Docker currently launches `python app.py`, while pyproject console scripts point to `server.app:main`. Functionally they are close, but this duplication is worth cleaning up later because it creates two sources of truth for the same service.
|
| 205 |
-
|
| 206 |
-
12. Inference Flow
|
| 207 |
-
inference.py is the LLM evaluation script. It:
|
| 208 |
-
- reads API credentials and model settings from environment variables,
|
| 209 |
-
- converts the current observation into a compact prompt,
|
| 210 |
-
- asks an OpenAI-compatible chat model for exactly one JSON action,
|
| 211 |
-
- parses the action into the typed Action model,
|
| 212 |
-
- steps the environment until completion,
|
| 213 |
-
- prints structured logs for automated scoring.
|
| 214 |
-
|
| 215 |
-
This is the bridge between the environment and external language models.
|
| 216 |
-
|
| 217 |
-
13. Current Project State
|
| 218 |
-
The project is structurally complete for a hackathon submission:
|
| 219 |
-
- environment logic exists and is modular.
|
| 220 |
-
- typed schemas are in place.
|
| 221 |
-
- baseline agents exist.
|
| 222 |
-
- graders and evaluation scripts exist.
|
| 223 |
-
- REST serving and Docker deployment exist.
|
| 224 |
-
|
| 225 |
-
The codebase is not organized like a production RL training project yet. There is no dedicated training loop, no test suite beyond graders, and some duplication/artifact folders remain in the repo. Still, the simulation itself is reasonably well separated and understandable, especially inside env/.
|
| 226 |
-
|
| 227 |
-
15. Changes Log
|
| 228 |
-
===============
|
| 229 |
-
|
| 230 |
-
Before (original state):
|
| 231 |
-
- app.py and server/app.py were duplicate full server implementations with no single source of truth.
|
| 232 |
-
- Dockerfile pointed to `python app.py` (the duplicate).
|
| 233 |
-
- __pycache__/ directories (16 files) were committed to git alongside a nested Wildfire-Containment-Simulator/ submodule and an empty {env,graders,agents,scripts}/ artifact directory.
|
| 234 |
-
- .gitignore only excluded `venv`, nothing else.
|
| 235 |
-
- No test suite existed.
|
| 236 |
-
- requirements.txt had no test dependencies.
|
| 237 |
-
- StepResult.reward was constrained to [0.0, 1.0].
|
| 238 |
-
- Reward was a single normalized composite in [0, 1] with no terminal spike structure.
|
| 239 |
-
|
| 240 |
-
After (Prompt 1 β Repo Cleanup & Test Scaffolding):
|
| 241 |
-
- app.py reduced to a one-line shim: `from server.app import main; main()`.
|
| 242 |
-
- Dockerfile CMD updated to `python server/app.py`.
|
| 243 |
-
- All committed __pycache__ files removed from git index; nested submodule and brace artifact dir deleted.
|
| 244 |
-
- .gitignore expanded to cover __pycache__/, *.egg-info/, venv/, .venv/, *.pyc, .pytest_cache/, .ruff_cache/, checkpoints/, results/.
|
| 245 |
-
- tests/ directory created with conftest.py (fresh_env fixture) and test_smoke.py (3 passing tests: tier resets, idle stability, determinism).
|
| 246 |
-
- pytest and pytest-cov added to requirements.txt.
|
| 247 |
-
|
| 248 |
-
After (Prompt 2 β Reward Restructuring):
|
| 249 |
-
- StepResult.reward constraint removed; rewards can now range freely (e.g. -5 to +8).
|
| 250 |
-
- RewardCalculator gained two new methods:
|
| 251 |
-
- compute_step_reward(): dense delta-based reward each step (delta_containmentΓ0.4 + delta_pop_safetyΓ0.4 β 0.1 if redundant).
|
| 252 |
-
- compute_terminal_reward(): sparse terminal bonus (+5 if all pop saved + efficiency bonus, or β3Γloss_pct; β2 stacked for crew casualty).
|
| 253 |
-
- wildfire_env.py tracks _prev_action, _invalid_action_count, _crew_casualty_occurred across episodes; step() now returns step_reward + terminal_reward.
|
| 254 |
-
- Legacy composite reward preserved in info["legacy_reward"] for backward compatibility.
|
| 255 |
-
- tests/test_reward.py added with 4 passing tests.
|
| 256 |
-
- Heuristic agent on easy tier now scores ~6.66 Β± 1.64 (target +5 to +8 range confirmed).
|
| 257 |
-
|
| 258 |
-
After (Prompt 3 β Observation-to-Text Serializer):
|
| 259 |
-
- Created env/serialization.py with serialize_observation() producing structured LLM prompts.
|
| 260 |
-
- Sections: SITUATION, GRID SUMMARY (with BFS bounding-box clustering), RESOURCES, RECENT EVENTS, Available actions.
|
| 261 |
-
- BFS clustering caps at 5 regions per category; fog-of-war cells marked [?].
|
| 262 |
-
- tests/test_serialization.py added with 3 passing tests.
|
| 263 |
-
|
| 264 |
-
After (Prompt 4 β LLM Action Parser):
|
| 265 |
-
- Created env/action_parser.py with 3-layer parse_action() fallback: JSON β regex β safe_idle.
|
| 266 |
-
- _extract_json_block() strips ```json fences and surrounding text.
|
| 267 |
-
- Out-of-bounds coords and hallucinated action types downgrade to IDLE, never crash.
|
| 268 |
-
- tests/test_action_parser.py added with 8 passing tests.
|
| 269 |
-
|
| 270 |
-
After (Prompt 5 β Replay / GIF Renderer):
|
| 271 |
-
- Created env/rendering.py with render_frame() (matplotlib 800Γ800px, fire colors, crew markers, stats strip + wind arrow) and render_episode_gif() (imageio 5 fps).
|
| 272 |
-
- Created scripts/replay.py CLI (--tier, --seed, --agent, --output); saves GIF + final PNG.
|
| 273 |
-
- requirements.txt updated: matplotlib>=3.7, imageio>=2.28 added.
|
| 274 |
-
- tests/test_rendering.py added with 2 passing tests (frame shape, GIF >10KB).
|
| 275 |
-
|
| 276 |
-
14. Practical Takeaway
|
| 277 |
-
If you want to extend this repository, the main places to work are:
|
| 278 |
-
- env/: for simulation rules and observation design.
|
| 279 |
-
- agents/: for better baseline or learned policies.
|
| 280 |
-
- scripts/evaluate.py and inference.py: for benchmarking and external-agent experiments.
|
| 281 |
-
- server/app.py or app.py: for deployment cleanup and API consistency.
|
| 282 |
-
|
| 283 |
-
The project is best understood as a benchmark environment plus baseline agents, not as a full end-to-end RL training system.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
colab_prompts.md
DELETED
|
@@ -1,607 +0,0 @@
|
|
| 1 |
-
# Colab training prompts (feed to Claude, in order)
|
| 2 |
-
|
| 3 |
-
Each prompt is self-contained β paste as a fresh message with no prior context.
|
| 4 |
-
|
| 5 |
-
---
|
| 6 |
-
|
| 7 |
-
## Prompt 1 β SFT data generator script
|
| 8 |
-
|
| 9 |
-
```
|
| 10 |
-
Write a standalone Python script `scripts/generate_sft_data.py` for the Wildfire Containment Simulator project.
|
| 11 |
-
|
| 12 |
-
PURPOSE: Generate supervised fine-tuning (SFT) training examples by running the HeuristicAgent through episodes and recording (prompt, action) pairs at every step.
|
| 13 |
-
|
| 14 |
-
REPO STRUCTURE (files that exist):
|
| 15 |
-
- env/wildfire_env.py β WildfireEnv with reset(task_id, seed) and step(action)
|
| 16 |
-
- env/serialization.py β serialize_observation(obs, step_num, max_steps, tier="", prev_cells_burning=0) -> str
|
| 17 |
-
- agents/heuristic_agent.py β HeuristicAgent with act(obs) -> Action
|
| 18 |
-
- env/models.py β TIER_EASY(episode_length=80), TIER_MEDIUM(episode_length=150), TIER_HARD(episode_length=300)
|
| 19 |
-
- env/action_parser.py β parse_action(text, obs) -> (Action, status)
|
| 20 |
-
|
| 21 |
-
SYSTEM_PROMPT constant to use in every example:
|
| 22 |
-
"You are an AI Incident Commander managing wildfire containment. You will receive a situation briefing each step. Respond with ONLY a valid JSON action object and nothing else. Example: {\"action_type\": \"idle\"}"
|
| 23 |
-
|
| 24 |
-
REQUIREMENTS:
|
| 25 |
-
1. For each tier ("easy", "medium", "hard"), for each seed in a configurable range:
|
| 26 |
-
a. Reset the env
|
| 27 |
-
b. Run the heuristic for a random offset (0 to min(30, max_steps//4)) steps to get mid-episode states
|
| 28 |
-
c. Run the heuristic to EPISODE COMPLETION (env.done == True), recording every step
|
| 29 |
-
d. After the episode is complete, check env.state()["population_lost"] == 0. Only keep examples
|
| 30 |
-
from successful episodes (pop_lost == 0 at end). Discard the whole episode otherwise.
|
| 31 |
-
e. From the kept episodes, record every step as a training example EXCEPT: filter out IDLE
|
| 32 |
-
actions unless they represent more than 30% of the episode's actions (keep a realistic idle rate).
|
| 33 |
-
Concretely: keep all non-IDLE steps, then randomly sample IDLE steps to reach at most 20% of
|
| 34 |
-
total examples per episode.
|
| 35 |
-
f. Each example: {"messages": [{"role": "system", ...}, {"role": "user", "content": prompt_text}],
|
| 36 |
-
"completion": action_json_string, "tier": tier, "seed": seed, "step": step_num}
|
| 37 |
-
g. The "completion" field is the action serialised as compact JSON (action.model_dump_json(exclude_none=True))
|
| 38 |
-
|
| 39 |
-
2. Track prev_cells_burning across steps to pass to serialize_observation for spread delta.
|
| 40 |
-
|
| 41 |
-
3. Target counts after filtering: easy=2000 examples, medium=1500, hard=800.
|
| 42 |
-
Iterate seeds starting from 0, incrementing by 1, until targets are met.
|
| 43 |
-
|
| 44 |
-
4. Save to training/sft_data.jsonl (one JSON object per line). Print progress every 50 seeds.
|
| 45 |
-
Print final tier distribution before exiting.
|
| 46 |
-
|
| 47 |
-
5. Add argparse: --output (default training/sft_data.jsonl), --easy-seeds N (max seeds to try),
|
| 48 |
-
--medium-seeds N, --hard-seeds N
|
| 49 |
-
|
| 50 |
-
IMPORTANT:
|
| 51 |
-
- The script runs locally, not in Colab. Use sys.path.insert(0, project_root) to make env/ importable.
|
| 52 |
-
- No GPU needed.
|
| 53 |
-
- Do NOT filter mid-episode observations β they are intentionally included for training diversity.
|
| 54 |
-
The per-episode success filter (pop_lost==0) applies to the whole episode, not individual steps.
|
| 55 |
-
```
|
| 56 |
-
|
| 57 |
-
---
|
| 58 |
-
|
| 59 |
-
## Prompt 2 β SFT training notebook
|
| 60 |
-
|
| 61 |
-
```
|
| 62 |
-
Write a complete Google Colab notebook `training/sft_colab.ipynb` for supervised fine-tuning of
|
| 63 |
-
Qwen2.5-7B-Instruct on wildfire incident command data.
|
| 64 |
-
|
| 65 |
-
CONTEXT:
|
| 66 |
-
- Input: training/sft_data.jsonl, where each line has:
|
| 67 |
-
{"messages": [{"role":"system","content":"..."}, {"role":"user","content":"..."}],
|
| 68 |
-
"completion": "{\"action_type\":...}", "tier": "easy", "seed": 42, "step": 5}
|
| 69 |
-
- Goal: teach the model to output valid JSON action objects given wildfire observations
|
| 70 |
-
- Hardware target: A100 40GB on Colab (HF credits)
|
| 71 |
-
|
| 72 |
-
NOTEBOOK SECTIONS:
|
| 73 |
-
|
| 74 |
-
Section 1 β Install
|
| 75 |
-
- pip install: unsloth[colab-new] from git, trl==0.15.2, datasets==3.4.1
|
| 76 |
-
- assert torch.cuda.is_available(), print GPU name and total memory
|
| 77 |
-
|
| 78 |
-
Section 2 β Load Model
|
| 79 |
-
- unsloth FastLanguageModel.from_pretrained("unsloth/Qwen2.5-7B-Instruct",
|
| 80 |
-
max_seq_length=2048, load_in_4bit=True)
|
| 81 |
-
- FastLanguageModel.get_peft_model with r=32, lora_alpha=64, lora_dropout=0.05
|
| 82 |
-
- target_modules=['q_proj','k_proj','v_proj','o_proj','gate_proj','up_proj','down_proj']
|
| 83 |
-
- Use pad_token = eos_token if no pad token exists
|
| 84 |
-
|
| 85 |
-
Section 3 β Load Data
|
| 86 |
-
- Read sft_data.jsonl
|
| 87 |
-
- Format each example: apply tokenizer.apply_chat_template to the messages list, then append the
|
| 88 |
-
completion string as the assistant turn. The final string is the full conversation for causal LM loss.
|
| 89 |
-
- Use datasets.Dataset.from_list
|
| 90 |
-
- Print tier distribution (counts per tier)
|
| 91 |
-
- Train/val split: 95/5
|
| 92 |
-
|
| 93 |
-
Section 4 β Train
|
| 94 |
-
- Use trl SFTTrainer with:
|
| 95 |
-
- per_device_train_batch_size=2, gradient_accumulation_steps=4 (effective batch 8)
|
| 96 |
-
- num_train_epochs=1
|
| 97 |
-
- learning_rate=2e-4, warmup_ratio=0.05, lr_scheduler_type="cosine"
|
| 98 |
-
- logging_steps=10, save_steps=100, save_total_limit=2
|
| 99 |
-
- output_dir="./sft_checkpoints"
|
| 100 |
-
- report_to="none"
|
| 101 |
-
- max_seq_length=2048, packing=True
|
| 102 |
-
|
| 103 |
-
Section 5 β Quick Eval (runs in Colab, requires env imports)
|
| 104 |
-
- Add sys.path and import WildfireEnv, serialize_observation, parse_action
|
| 105 |
-
- Run 10 full episodes (seeds 42β51) on easy tier with the trained model driving EVERY step:
|
| 106 |
-
- FastLanguageModel.for_inference(model)
|
| 107 |
-
- For each step: build messages, apply_chat_template, model.generate(max_new_tokens=128),
|
| 108 |
-
decode, parse_action(completion, obs), env.step(action)
|
| 109 |
-
- Accumulate total_reward; track parse_status counts
|
| 110 |
-
- Print: mean reward, std, json_success_rate, mean pop_saved_pct
|
| 111 |
-
- assert mean_reward > 2.0, "SFT warm-up insufficient β do not proceed to GRPO"
|
| 112 |
-
- FastLanguageModel.for_training(model) before returning
|
| 113 |
-
|
| 114 |
-
Section 6 β Save
|
| 115 |
-
- model.save_pretrained("./sft_final")
|
| 116 |
-
- tokenizer.save_pretrained("./sft_final")
|
| 117 |
-
- model.push_to_hub("YOUR_HF_USERNAME/wildfire-sft-7b") # leave as placeholder
|
| 118 |
-
- !zip -r sft_final.zip ./sft_final
|
| 119 |
-
- from google.colab import files; files.download("sft_final.zip")
|
| 120 |
-
|
| 121 |
-
IMPORTANT NOTES:
|
| 122 |
-
- parse_action(text, obs) requires a real obs object (it reads obs.grid). Always pass the current obs.
|
| 123 |
-
- serialize_observation signature: (obs, step_num, max_steps, tier="", prev_cells_burning=0)
|
| 124 |
-
- Instantiate a fresh HeuristicAgent (if used) for each episode β it has step_count state.
|
| 125 |
-
```
|
| 126 |
-
|
| 127 |
-
---
|
| 128 |
-
|
| 129 |
-
## Prompt 3 β GRPO training notebook
|
| 130 |
-
|
| 131 |
-
```
|
| 132 |
-
Write a complete Google Colab notebook `training/grpo_v2_colab.ipynb` for GRPO reinforcement
|
| 133 |
-
learning of a wildfire incident command model. This is a redesigned version that fixes five
|
| 134 |
-
critical issues from the previous attempt.
|
| 135 |
-
|
| 136 |
-
FIVE ISSUES FIXED IN THIS VERSION (do not reintroduce them):
|
| 137 |
-
|
| 138 |
-
Issue 1 β Prompt/reward state mismatch (critical):
|
| 139 |
-
Previous: dataset used mid-episode prompts; reward_fn picked a random seed β model was scored
|
| 140 |
-
in a completely different env state than the one that produced its prompt.
|
| 141 |
-
Fix: Dataset uses step-0 prompts ONLY. Each row stores the seed used. The reward_fn resets the
|
| 142 |
-
env to that exact (tier, seed) pair before scoring the completion. Prompt state = reward state.
|
| 143 |
-
|
| 144 |
-
Issue 2 β Truncated rollout reward incomparable to curriculum thresholds (critical):
|
| 145 |
-
Previous: 15-step rollouts never reached min_active_steps=25, so terminal reward (+5.0) never
|
| 146 |
-
fired. GRPO rewards capped at ~1-2 while thresholds were set to 7.0/5.5. Promotion never happened.
|
| 147 |
-
Fix: The reward function runs the FULL episode to completion (model's 1 action at step 0, then
|
| 148 |
-
heuristic until env.done). Terminal reward is always included. Reward is comparable to baselines.
|
| 149 |
-
|
| 150 |
-
Issue 3 β Wasted inner model generations:
|
| 151 |
-
Previous: reward_fn called model.generate() 7 extra times per completion inside the reward loop.
|
| 152 |
-
GRPO gradients only flow through the originally sampled completion, making inner model steps
|
| 153 |
-
expensive noise with no gradient benefit.
|
| 154 |
-
Fix: MODEL_STEPS = 1. Only the sampled completion is applied. Heuristic drives everything after.
|
| 155 |
-
|
| 156 |
-
Issue 4 β GRPO loop too slow:
|
| 157 |
-
Consequence of Issue 3. Fix is same: MODEL_STEPS = 1 reduces reward_fn generate calls to 0.
|
| 158 |
-
|
| 159 |
-
Issue 5 β parse_action(text, None) crashes:
|
| 160 |
-
The parser reads obs.grid at line 1. Cannot pass None.
|
| 161 |
-
Fix: Use a standalone check_json_format(text) function in the format reward that does its own
|
| 162 |
-
JSON validation without needing an obs.
|
| 163 |
-
|
| 164 |
-
CORRECT FULL-EPISODE BASELINES (from scripts/results.json):
|
| 165 |
-
random: easy=+6.23 medium=+1.31 hard=+2.16
|
| 166 |
-
heuristic: easy=+7.53 medium=+6.31 hard=+4.74
|
| 167 |
-
|
| 168 |
-
STARTING POINT: SFT checkpoint at "YOUR_HF_USERNAME/wildfire-sft-7b" (or local sft_final.zip)
|
| 169 |
-
|
| 170 |
-
EXISTING ENV FILES (correct and working β do not reimplement):
|
| 171 |
-
- env/wildfire_env.py: WildfireEnv, reset(task_id, seed), step(action)->StepResult(observation,reward,done,info)
|
| 172 |
-
- env/serialization.py: serialize_observation(obs, step_num, max_steps, tier="", prev_cells_burning=0)->str
|
| 173 |
-
- env/action_parser.py: parse_action(text, obs)->(Action, status); status in ["json_success","regex_fallback","safe_idle"]
|
| 174 |
-
- agents/heuristic_agent.py: HeuristicAgent().act(obs)->Action [stateful: re-instantiate per episode]
|
| 175 |
-
- env/curriculum.py: CurriculumController(start_tier, thresholds); after_episode(reward)->Optional[str]; get_tier()->str
|
| 176 |
-
- env/models.py: TIER_EASY(episode_length=80), TIER_MEDIUM(episode_length=150), TIER_HARD(episode_length=300)
|
| 177 |
-
|
| 178 |
-
NOTEBOOK SECTIONS:
|
| 179 |
-
|
| 180 |
-
Section 1 β Install and assert GPU
|
| 181 |
-
- pip install: unsloth[colab-new] from git, trl==0.15.2, datasets==3.4.1, wandb
|
| 182 |
-
- assert torch.cuda.is_available()
|
| 183 |
-
- print GPU name and total VRAM
|
| 184 |
-
|
| 185 |
-
Section 2 β Load SFT checkpoint
|
| 186 |
-
- FastLanguageModel.from_pretrained("YOUR_HF_USERNAME/wildfire-sft-7b", load_in_4bit=True, max_seq_length=2048)
|
| 187 |
-
OR if loading from local zip: load base model first, then model.load_adapter(sft_path, adapter_name="default")
|
| 188 |
-
- Same LoRA: r=32, lora_alpha=64, target_modules=['q_proj','k_proj','v_proj','o_proj','gate_proj','up_proj','down_proj']
|
| 189 |
-
|
| 190 |
-
Section 3 β Constants and controller setup
|
| 191 |
-
|
| 192 |
-
```python
|
| 193 |
-
import os, random, json
|
| 194 |
-
import torch
|
| 195 |
-
from env import WildfireEnv
|
| 196 |
-
from env.serialization import serialize_observation
|
| 197 |
-
from env.action_parser import parse_action
|
| 198 |
-
from agents.heuristic_agent import HeuristicAgent
|
| 199 |
-
from env.curriculum import CurriculumController
|
| 200 |
-
from datasets import Dataset
|
| 201 |
-
|
| 202 |
-
SEED_POOL = list(range(100)) # training seeds; eval uses 200+
|
| 203 |
-
TIER_MAX_STEPS = {'easy': 80, 'medium': 150, 'hard': 300}
|
| 204 |
-
SYSTEM_PROMPT = (
|
| 205 |
-
'You are an AI Incident Commander managing wildfire containment. '
|
| 206 |
-
'You will receive a situation briefing each step. '
|
| 207 |
-
'Respond with ONLY a valid JSON action object and nothing else. '
|
| 208 |
-
'Example: {"action_type": "idle"}'
|
| 209 |
-
)
|
| 210 |
-
|
| 211 |
-
# Thresholds calibrated to full-episode reward with heuristic continuation.
|
| 212 |
-
# Promote easyβmedium once model's first action consistently beats random (+6.23).
|
| 213 |
-
# Promote mediumβhard once model demonstrates meaningful improvement over random (+1.31).
|
| 214 |
-
controller = CurriculumController(
|
| 215 |
-
start_tier='easy',
|
| 216 |
-
thresholds={'easy': 6.5, 'medium': 3.5},
|
| 217 |
-
)
|
| 218 |
-
|
| 219 |
-
os.makedirs('training/samples', exist_ok=True)
|
| 220 |
-
_reward_call_count = 0
|
| 221 |
-
```
|
| 222 |
-
|
| 223 |
-
Section 4 β Standalone JSON format checker (replaces parse_action for format reward)
|
| 224 |
-
|
| 225 |
-
```python
|
| 226 |
-
import json as _json
|
| 227 |
-
from env.models import ActionType as _AT
|
| 228 |
-
|
| 229 |
-
_VALID_ACTION_TYPES = {a.value for a in _AT}
|
| 230 |
-
|
| 231 |
-
def check_json_format(text: str) -> str:
|
| 232 |
-
"""
|
| 233 |
-
Validate LLM output format without needing an obs object.
|
| 234 |
-
Returns "json_success", "regex_fallback", or "safe_idle".
|
| 235 |
-
Does NOT use parse_action β avoids the obs.grid dependency.
|
| 236 |
-
"""
|
| 237 |
-
# Strip code fences
|
| 238 |
-
import re
|
| 239 |
-
text = re.sub(r"```(?:json)?\s*", "", text).replace("```", "")
|
| 240 |
-
start = text.find("{")
|
| 241 |
-
if start == -1:
|
| 242 |
-
return "safe_idle"
|
| 243 |
-
depth = 0
|
| 244 |
-
end = -1
|
| 245 |
-
for i, ch in enumerate(text[start:], start=start):
|
| 246 |
-
if ch == "{": depth += 1
|
| 247 |
-
elif ch == "}":
|
| 248 |
-
depth -= 1
|
| 249 |
-
if depth == 0:
|
| 250 |
-
end = i
|
| 251 |
-
break
|
| 252 |
-
if end == -1:
|
| 253 |
-
return "safe_idle"
|
| 254 |
-
try:
|
| 255 |
-
obj = _json.loads(text[start:end+1])
|
| 256 |
-
if not isinstance(obj, dict):
|
| 257 |
-
return "safe_idle"
|
| 258 |
-
at = str(obj.get("action_type", "")).lower()
|
| 259 |
-
if at in _VALID_ACTION_TYPES:
|
| 260 |
-
return "json_success"
|
| 261 |
-
return "regex_fallback" # valid JSON but unrecognised action_type
|
| 262 |
-
except Exception:
|
| 263 |
-
return "regex_fallback" # JSON parse failed but had braces
|
| 264 |
-
```
|
| 265 |
-
|
| 266 |
-
Section 5 β Two reward functions
|
| 267 |
-
|
| 268 |
-
reward_fn_outcome(completions, prompts, tier=None, seed=None, **kwargs):
|
| 269 |
-
"""
|
| 270 |
-
Score each GRPO completion by:
|
| 271 |
-
1. Resetting the env to the EXACT (tier, seed) that generated the prompt (Issue 1 fix).
|
| 272 |
-
2. Applying the sampled completion as the single first action (MODEL_STEPS=1, Issue 3/4 fix).
|
| 273 |
-
3. Running HeuristicAgent until episode completion (Issue 2 fix β captures terminal reward).
|
| 274 |
-
|
| 275 |
-
tier and seed are dataset columns forwarded by GRPOTrainer.
|
| 276 |
-
"""
|
| 277 |
-
global _reward_call_count
|
| 278 |
-
_reward_call_count += 1
|
| 279 |
-
rewards = []
|
| 280 |
-
|
| 281 |
-
for i, completion in enumerate(completions):
|
| 282 |
-
ep_tier = tier[i] if tier is not None else controller.get_tier()
|
| 283 |
-
ep_seed = seed[i] if seed is not None else random.choice(SEED_POOL)
|
| 284 |
-
|
| 285 |
-
env = WildfireEnv()
|
| 286 |
-
obs = env.reset(task_id=ep_tier, seed=ep_seed) # step-0: matches prompt state exactly
|
| 287 |
-
total_reward = 0.0
|
| 288 |
-
|
| 289 |
-
# Apply the sampled completion as step 0
|
| 290 |
-
text = completion if isinstance(completion, str) else completion[0]['content']
|
| 291 |
-
action, _ = parse_action(text, obs)
|
| 292 |
-
result = env.step(action)
|
| 293 |
-
total_reward += result.reward
|
| 294 |
-
obs = result.observation
|
| 295 |
-
|
| 296 |
-
# Heuristic drives everything after (full episode to capture terminal reward)
|
| 297 |
-
heuristic = HeuristicAgent() # fresh instance per episode (stateful step_count)
|
| 298 |
-
while not env.done:
|
| 299 |
-
action = heuristic.act(obs)
|
| 300 |
-
result = env.step(action)
|
| 301 |
-
total_reward += result.reward
|
| 302 |
-
obs = result.observation
|
| 303 |
-
|
| 304 |
-
rewards.append(total_reward)
|
| 305 |
-
|
| 306 |
-
# Update curriculum (once per batch, not per completion)
|
| 307 |
-
mean_r = sum(rewards) / len(rewards)
|
| 308 |
-
promoted = controller.after_episode(mean_r)
|
| 309 |
-
if promoted:
|
| 310 |
-
print(f" *** Curriculum promoted to: {promoted} (mean batch reward={mean_r:.2f}) ***")
|
| 311 |
-
|
| 312 |
-
# Sample completions to disk for inspection (Issue 4 in HACKATHON_ALIGNMENT.md)
|
| 313 |
-
if _reward_call_count % 10 == 0:
|
| 314 |
-
sample_path = f'training/samples/call_{_reward_call_count}.txt'
|
| 315 |
-
with open(sample_path, 'w') as f:
|
| 316 |
-
f.write(f"call={_reward_call_count} tier={tier[0] if tier else '?'} reward={rewards[0]:.3f}\n")
|
| 317 |
-
f.write("---\n")
|
| 318 |
-
c = completions[0]
|
| 319 |
-
f.write(c if isinstance(c, str) else c[0]['content'])
|
| 320 |
-
f.write("\n")
|
| 321 |
-
|
| 322 |
-
return rewards
|
| 323 |
-
|
| 324 |
-
|
| 325 |
-
reward_fn_format(completions, prompts, **kwargs):
|
| 326 |
-
"""
|
| 327 |
-
Scores JSON formatting quality using check_json_format() (no obs needed).
|
| 328 |
-
Runs independently of the env β fast and always well-defined.
|
| 329 |
-
"""
|
| 330 |
-
rewards = []
|
| 331 |
-
for completion in completions:
|
| 332 |
-
text = completion if isinstance(completion, str) else completion[0]['content']
|
| 333 |
-
status = check_json_format(text)
|
| 334 |
-
if status == "json_success": r = 0.15
|
| 335 |
-
elif status == "regex_fallback": r = 0.0
|
| 336 |
-
else: r = -0.20 # safe_idle / garbage
|
| 337 |
-
rewards.append(r)
|
| 338 |
-
return rewards
|
| 339 |
-
|
| 340 |
-
Section 6 β Dataset builder (step-0 only; stores seed for reward alignment)
|
| 341 |
-
|
| 342 |
-
```python
|
| 343 |
-
def build_prompt_dataset(n=200):
|
| 344 |
-
"""
|
| 345 |
-
Build step-0 prompts for the current curriculum tier.
|
| 346 |
-
Stores the seed in each row so reward_fn can replay the exact same env state.
|
| 347 |
-
No mid-episode offset β GRPO prompt and reward state are always step-0.
|
| 348 |
-
Mid-episode diversity is handled by SFT, not GRPO.
|
| 349 |
-
"""
|
| 350 |
-
rows = []
|
| 351 |
-
env_tmp = WildfireEnv()
|
| 352 |
-
tier = controller.get_tier()
|
| 353 |
-
max_steps = TIER_MAX_STEPS[tier]
|
| 354 |
-
|
| 355 |
-
for i in range(n):
|
| 356 |
-
seed = SEED_POOL[i % len(SEED_POOL)]
|
| 357 |
-
obs = env_tmp.reset(task_id=tier, seed=seed) # step-0
|
| 358 |
-
prompt = serialize_observation(obs, 0, max_steps, tier=tier, prev_cells_burning=0)
|
| 359 |
-
rows.append({
|
| 360 |
-
'prompt': [
|
| 361 |
-
{'role': 'system', 'content': SYSTEM_PROMPT},
|
| 362 |
-
{'role': 'user', 'content': prompt},
|
| 363 |
-
],
|
| 364 |
-
'tier': tier,
|
| 365 |
-
'seed': seed, # forwarded to reward_fn_outcome for exact state replay
|
| 366 |
-
})
|
| 367 |
-
return rows
|
| 368 |
-
```
|
| 369 |
-
|
| 370 |
-
Section 7 β CurriculumDatasetCallback
|
| 371 |
-
|
| 372 |
-
Implement a trl TrainerCallback subclass that rebuilds the training dataset whenever the
|
| 373 |
-
curriculum controller promotes to a new tier:
|
| 374 |
-
|
| 375 |
-
```python
|
| 376 |
-
from trl import TrainerCallback
|
| 377 |
-
|
| 378 |
-
class CurriculumDatasetCallback(TrainerCallback):
|
| 379 |
-
def __init__(self, trainer_ref):
|
| 380 |
-
self._trainer = trainer_ref
|
| 381 |
-
self._last_tier = controller.get_tier()
|
| 382 |
-
|
| 383 |
-
def on_step_end(self, args, state, control, **kwargs):
|
| 384 |
-
current_tier = controller.get_tier()
|
| 385 |
-
if current_tier != self._last_tier:
|
| 386 |
-
print(f" Rebuilding dataset for tier: {current_tier}")
|
| 387 |
-
new_ds = Dataset.from_list(build_prompt_dataset(200))
|
| 388 |
-
self._trainer.train_dataset = new_ds
|
| 389 |
-
self._last_tier = current_tier
|
| 390 |
-
```
|
| 391 |
-
|
| 392 |
-
Section 8 β GRPOTrainer setup
|
| 393 |
-
|
| 394 |
-
```python
|
| 395 |
-
from trl import GRPOTrainer, GRPOConfig
|
| 396 |
-
|
| 397 |
-
grpo_config = GRPOConfig(
|
| 398 |
-
output_dir="./grpo_checkpoints",
|
| 399 |
-
num_generations=8,
|
| 400 |
-
learning_rate=3e-6,
|
| 401 |
-
max_steps=400,
|
| 402 |
-
save_steps=20,
|
| 403 |
-
per_device_train_batch_size=1,
|
| 404 |
-
gradient_accumulation_steps=4,
|
| 405 |
-
max_completion_length=192, # enough for any valid action JSON
|
| 406 |
-
logging_steps=1,
|
| 407 |
-
report_to="wandb",
|
| 408 |
-
)
|
| 409 |
-
|
| 410 |
-
FastLanguageModel.for_training(model)
|
| 411 |
-
|
| 412 |
-
dataset = Dataset.from_list(build_prompt_dataset(200))
|
| 413 |
-
|
| 414 |
-
trainer = GRPOTrainer(
|
| 415 |
-
model=model,
|
| 416 |
-
processing_class=tokenizer,
|
| 417 |
-
reward_funcs=[reward_fn_outcome, reward_fn_format],
|
| 418 |
-
args=grpo_config,
|
| 419 |
-
train_dataset=dataset,
|
| 420 |
-
)
|
| 421 |
-
trainer.add_callback(CurriculumDatasetCallback(trainer))
|
| 422 |
-
```
|
| 423 |
-
|
| 424 |
-
Section 9 β Run training
|
| 425 |
-
|
| 426 |
-
```python
|
| 427 |
-
import wandb
|
| 428 |
-
wandb.init(project="wildfire-grpo", name="qwen7b-v2")
|
| 429 |
-
|
| 430 |
-
print(f"Starting GRPO β {grpo_config.max_steps} steps, {grpo_config.num_generations} gen/prompt")
|
| 431 |
-
print(f"Reward: 1 model step at step-0, heuristic continuation to episode completion")
|
| 432 |
-
print(f"Start tier: {controller.get_tier()}")
|
| 433 |
-
|
| 434 |
-
trainer.train()
|
| 435 |
-
print("Training complete.")
|
| 436 |
-
|
| 437 |
-
history = controller.get_history()
|
| 438 |
-
stats = [{'step': ep, 'tier': t, 'mean_reward': r} for ep, t, r in history]
|
| 439 |
-
with open('./training_stats.json', 'w') as f:
|
| 440 |
-
json.dump(stats, f, indent=2)
|
| 441 |
-
print("Stats saved -> training_stats.json")
|
| 442 |
-
```
|
| 443 |
-
|
| 444 |
-
Section 10 β Evaluate vs baselines
|
| 445 |
-
|
| 446 |
-
- Load scripts/results.json for heuristic and random baseline scores
|
| 447 |
-
- For each tier in [easy, medium, hard], run 15 full episodes (seeds 42β56):
|
| 448 |
-
- FastLanguageModel.for_inference(model)
|
| 449 |
-
- Instantiate a FRESH LLMAgent per episode (it is stateful: _step, _prev_burning, parse counters)
|
| 450 |
-
- Model drives every step until env.done
|
| 451 |
-
- Record total_reward, pop_saved_pct, json_success_rate
|
| 452 |
-
- Print comparison table: Trained vs Heuristic vs Random, including vs_heuristic delta
|
| 453 |
-
- Print JSON success rate per tier
|
| 454 |
-
- assert: for at least 1 tier, trained_mean > heuristic_mean - 1.0
|
| 455 |
-
|
| 456 |
-
LLMAgent class to implement:
|
| 457 |
-
```python
|
| 458 |
-
class LLMAgent:
|
| 459 |
-
def __init__(self, model, tokenizer, tier, max_steps):
|
| 460 |
-
self.model = model
|
| 461 |
-
self.tokenizer = tokenizer
|
| 462 |
-
self.tier = tier
|
| 463 |
-
self.max_steps = max_steps
|
| 464 |
-
self._step = 0
|
| 465 |
-
self._prev_burning = 0
|
| 466 |
-
self.json_success = self.regex_fallback = self.safe_idle = 0
|
| 467 |
-
|
| 468 |
-
def act(self, obs):
|
| 469 |
-
prompt = serialize_observation(obs, self._step, self.max_steps,
|
| 470 |
-
tier=self.tier,
|
| 471 |
-
prev_cells_burning=self._prev_burning)
|
| 472 |
-
self._prev_burning = obs.stats.cells_burning
|
| 473 |
-
messages = [{"role": "system", "content": SYSTEM_PROMPT},
|
| 474 |
-
{"role": "user", "content": prompt}]
|
| 475 |
-
input_ids = tokenizer.apply_chat_template(
|
| 476 |
-
messages, tokenize=True, add_generation_prompt=True, return_tensors='pt'
|
| 477 |
-
).to(model.device)
|
| 478 |
-
with torch.no_grad():
|
| 479 |
-
out = model.generate(input_ids, max_new_tokens=128,
|
| 480 |
-
pad_token_id=tokenizer.eos_token_id)
|
| 481 |
-
text = tokenizer.decode(out[0][input_ids.shape[1]:], skip_special_tokens=True)
|
| 482 |
-
action, status = parse_action(text, obs)
|
| 483 |
-
if status == "json_success": self.json_success += 1
|
| 484 |
-
elif status == "regex_fallback": self.regex_fallback += 1
|
| 485 |
-
else: self.safe_idle += 1
|
| 486 |
-
self._step += 1
|
| 487 |
-
return action
|
| 488 |
-
```
|
| 489 |
-
|
| 490 |
-
Section 11 β Save and push
|
| 491 |
-
|
| 492 |
-
- model.save_pretrained("./grpo_final")
|
| 493 |
-
- tokenizer.save_pretrained("./grpo_final")
|
| 494 |
-
- model.push_to_hub("YOUR_HF_USERNAME/wildfire-grpo-7b")
|
| 495 |
-
- !zip -r grpo_final.zip ./grpo_final
|
| 496 |
-
- files.download("grpo_final.zip")
|
| 497 |
-
|
| 498 |
-
IMPLEMENTATION CHECKLIST:
|
| 499 |
-
[ ] reward_fn_outcome uses seed from dataset row, NOT random.choice(SEED_POOL)
|
| 500 |
-
[ ] reward_fn_outcome resets env with env.reset(task_id=ep_tier, seed=ep_seed) β step-0 only
|
| 501 |
-
[ ] reward_fn_outcome runs heuristic until env.done (not a fixed step count)
|
| 502 |
-
[ ] reward_fn_format calls check_json_format(), NOT parse_action(text, None)
|
| 503 |
-
[ ] build_prompt_dataset has no step offset β always step-0 β and always saves seed in the row
|
| 504 |
-
[ ] CurriculumDatasetCallback triggers dataset rebuild on tier change
|
| 505 |
-
[ ] LLMAgent instantiated FRESH per episode in the eval section
|
| 506 |
-
[ ] FastLanguageModel.for_inference/for_training toggled correctly around eval calls
|
| 507 |
-
[ ] WildfireEnv instantiated fresh per completion in reward_fn_outcome (not shared)
|
| 508 |
-
[ ] HeuristicAgent instantiated fresh per episode in reward_fn_outcome (it has step_count state)
|
| 509 |
-
```
|
| 510 |
-
|
| 511 |
-
---
|
| 512 |
-
|
| 513 |
-
## Prompt 4 β Evaluation and comparison script
|
| 514 |
-
|
| 515 |
-
```
|
| 516 |
-
Write a standalone Python script `scripts/eval_trained_model.py` that evaluates a trained HF
|
| 517 |
-
adapter model against the heuristic and random baselines on the Wildfire Containment Simulator.
|
| 518 |
-
|
| 519 |
-
PURPOSE: Source-of-truth comparison table after training is complete.
|
| 520 |
-
Saves results to scripts/trained_results.json.
|
| 521 |
-
|
| 522 |
-
INPUTS (argparse):
|
| 523 |
-
- --model-path: HF hub ID or local path to the trained adapter (e.g. "username/wildfire-grpo-7b")
|
| 524 |
-
- --base-model: base model (default "unsloth/Qwen2.5-7B-Instruct")
|
| 525 |
-
- --num-seeds: evaluation seeds per tier (default 15, uses seeds 200β214 to avoid train overlap)
|
| 526 |
-
- --tiers: space-separated list (default "easy medium hard")
|
| 527 |
-
|
| 528 |
-
EXISTING FILES:
|
| 529 |
-
- graders/grader_easy.py, grader_medium.py, grader_hard.py β grade(agent, seed) -> (float, details_dict)
|
| 530 |
-
- agents/heuristic_agent.py β HeuristicAgent
|
| 531 |
-
- agents/random_agent.py β RandomAgent(seed=N)
|
| 532 |
-
- scripts/results.json β existing baselines
|
| 533 |
-
- env/wildfire_env.py, env/serialization.py, env/action_parser.py
|
| 534 |
-
|
| 535 |
-
SYSTEM_PROMPT = (
|
| 536 |
-
'You are an AI Incident Commander managing wildfire containment. '
|
| 537 |
-
'You will receive a situation briefing each step. '
|
| 538 |
-
'Respond with ONLY a valid JSON action object and nothing else. '
|
| 539 |
-
'Example: {"action_type": "idle"}'
|
| 540 |
-
)
|
| 541 |
-
|
| 542 |
-
LLM AGENT CLASS (stateful β MUST be instantiated fresh per episode):
|
| 543 |
-
```python
|
| 544 |
-
class LLMAgent:
|
| 545 |
-
"""
|
| 546 |
-
Wraps the trained model for grader compatibility.
|
| 547 |
-
Must be re-instantiated for every episode β _step and _prev_burning
|
| 548 |
-
are per-episode state and will produce wrong prompts if reused.
|
| 549 |
-
"""
|
| 550 |
-
def __init__(self, model, tokenizer, tier, max_steps):
|
| 551 |
-
self.model = model
|
| 552 |
-
self.tokenizer = tokenizer
|
| 553 |
-
self.tier = tier
|
| 554 |
-
self.max_steps = max_steps
|
| 555 |
-
self._step = 0
|
| 556 |
-
self._prev_burning = 0
|
| 557 |
-
self.json_success = self.regex_fallback = self.safe_idle = 0
|
| 558 |
-
|
| 559 |
-
def act(self, obs):
|
| 560 |
-
import torch
|
| 561 |
-
prompt = serialize_observation(obs, self._step, self.max_steps,
|
| 562 |
-
tier=self.tier,
|
| 563 |
-
prev_cells_burning=self._prev_burning)
|
| 564 |
-
self._prev_burning = obs.stats.cells_burning
|
| 565 |
-
messages = [{"role": "system", "content": SYSTEM_PROMPT},
|
| 566 |
-
{"role": "user", "content": prompt}]
|
| 567 |
-
input_ids = self.tokenizer.apply_chat_template(
|
| 568 |
-
messages, tokenize=True, add_generation_prompt=True, return_tensors='pt'
|
| 569 |
-
).to(self.model.device)
|
| 570 |
-
with torch.no_grad():
|
| 571 |
-
out = self.model.generate(input_ids, max_new_tokens=128,
|
| 572 |
-
pad_token_id=self.tokenizer.eos_token_id)
|
| 573 |
-
text = self.tokenizer.decode(out[0][input_ids.shape[1]:], skip_special_tokens=True)
|
| 574 |
-
action, status = parse_action(text, obs)
|
| 575 |
-
if status == "json_success": self.json_success += 1
|
| 576 |
-
elif status == "regex_fallback": self.regex_fallback += 1
|
| 577 |
-
else: self.safe_idle += 1
|
| 578 |
-
self._step += 1
|
| 579 |
-
return action
|
| 580 |
-
```
|
| 581 |
-
|
| 582 |
-
GRADER WRAPPER (because graders pass agent to grade(), so agent is shared across seeds by default):
|
| 583 |
-
For LLMAgent, override this by not using grade() directly. Instead inline the grader logic and
|
| 584 |
-
instantiate a fresh LLMAgent(model, tokenizer, tier, max_steps) before EACH episode.
|
| 585 |
-
|
| 586 |
-
OUTPUT FORMAT:
|
| 587 |
-
```
|
| 588 |
-
=== Evaluation: Trained Model vs Baselines ===
|
| 589 |
-
Model: username/wildfire-grpo-7b
|
| 590 |
-
Seeds: 200-214 (15 per tier)
|
| 591 |
-
|
| 592 |
-
Tier Trained Heuristic Random vs Heuristic
|
| 593 |
-
-------------------------------------------------------
|
| 594 |
-
easy +7.21Β±0.3 +7.53Β±0.1 +6.23Β±3.1 -0.32
|
| 595 |
-
medium +6.89Β±1.2 +6.31Β±2.8 +1.31Β±3.2 +0.58 β
|
| 596 |
-
hard +4.12Β±2.1 +4.74Β±3.8 +2.16Β±3.0 -0.62
|
| 597 |
-
|
| 598 |
-
JSON success rate: easy=91.2% medium=88.4% hard=85.1%
|
| 599 |
-
Pop saved rate: easy=100% medium=97% hard=93%
|
| 600 |
-
```
|
| 601 |
-
|
| 602 |
-
Also save to scripts/trained_results.json in the same format as scripts/results.json, with an
|
| 603 |
-
additional "json_success_rate" field per tier.
|
| 604 |
-
```
|
| 605 |
-
|
| 606 |
-
---
|
| 607 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
data/Wildfire Grpo Training - a Hugging Face Space by Eshit.html
DELETED
|
@@ -1,168 +0,0 @@
|
|
| 1 |
-
<!DOCTYPE html>
|
| 2 |
-
<!-- saved from url=(0058)https://huggingface.co/spaces/Eshit/wildfire-grpo-training -->
|
| 3 |
-
<html class="dark"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
|
| 7 |
-
|
| 8 |
-
<meta name="description" content="Discover amazing ML apps made by the community">
|
| 9 |
-
|
| 10 |
-
<meta property="fb:app_id" content="1321688464574422">
|
| 11 |
-
|
| 12 |
-
<meta name="twitter:card" content="summary_large_image">
|
| 13 |
-
|
| 14 |
-
<meta name="twitter:site" content="@huggingface">
|
| 15 |
-
|
| 16 |
-
<meta name="twitter:image" content="https://huggingface.co/front/thumbnails/v2-2.png">
|
| 17 |
-
|
| 18 |
-
<meta property="og:title" content="Wildfire Grpo Training - a Hugging Face Space by Eshit">
|
| 19 |
-
|
| 20 |
-
<meta property="og:description" content="Discover amazing ML apps made by the community">
|
| 21 |
-
|
| 22 |
-
<meta property="og:type" content="website">
|
| 23 |
-
|
| 24 |
-
<meta property="og:url" content="https://huggingface.co/spaces/Eshit/wildfire-grpo-training">
|
| 25 |
-
|
| 26 |
-
<meta property="og:image" content="https://huggingface.co/front/thumbnails/v2-2.png">
|
| 27 |
-
|
| 28 |
-
<link rel="stylesheet" href="./Wildfire Grpo Training - a Hugging Face Space by Eshit_files/style.css">
|
| 29 |
-
|
| 30 |
-
<link rel="preconnect" href="https://fonts.gstatic.com/">
|
| 31 |
-
|
| 32 |
-
<link href="./Wildfire Grpo Training - a Hugging Face Space by Eshit_files/css2" rel="stylesheet">
|
| 33 |
-
|
| 34 |
-
<link href="./Wildfire Grpo Training - a Hugging Face Space by Eshit_files/css2(1)" rel="stylesheet">
|
| 35 |
-
|
| 36 |
-
<link rel="stylesheet" href="./Wildfire Grpo Training - a Hugging Face Space by Eshit_files/katex.min.css" as="style" onload="
|
| 37 |
-
this.onload = null;
|
| 38 |
-
this.rel = 'stylesheet';
|
| 39 |
-
">
|
| 40 |
-
|
| 41 |
-
<noscript>
|
| 42 |
-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.12.0/katex.min.css" />
|
| 43 |
-
</noscript>
|
| 44 |
-
<script>const guestTheme = document.cookie.match(/theme=(\w+)/)?.[1]; document.documentElement.classList.toggle('dark', guestTheme === 'dark' || ( (!guestTheme || guestTheme === 'system') && window.matchMedia('(prefers-color-scheme: dark)').matches));</script>
|
| 45 |
-
<link rel="canonical" href="https://huggingface.co/spaces/Eshit/wildfire-grpo-training"> <script type="application/ld+json">{
|
| 46 |
-
"@context": "https:\/\/schema.org",
|
| 47 |
-
"@type": "WebApplication",
|
| 48 |
-
"name": "Wildfire Grpo Training",
|
| 49 |
-
"identifier": "Eshit\/wildfire-grpo-training",
|
| 50 |
-
"creator": {
|
| 51 |
-
"@type": "Person",
|
| 52 |
-
"name": "Eshit Saini",
|
| 53 |
-
"url": "https:\/\/huggingface.co\/Eshit"
|
| 54 |
-
},
|
| 55 |
-
"applicationCategory": "AIApplication",
|
| 56 |
-
"license": "https:\/\/choosealicense.com\/licenses\/mit\/",
|
| 57 |
-
"sameAs": "eshit-wildfire-grpo-training",
|
| 58 |
-
"url": "https:\/\/huggingface.co\/spaces\/Eshit\/wildfire-grpo-training",
|
| 59 |
-
"operatingSystem": "Web"
|
| 60 |
-
}</script>
|
| 61 |
-
<title>Wildfire Grpo Training - a Hugging Face Space by Eshit</title>
|
| 62 |
-
|
| 63 |
-
<script defer="" src="./Wildfire Grpo Training - a Hugging Face Space by Eshit_files/script.js.download"></script>
|
| 64 |
-
|
| 65 |
-
<script>
|
| 66 |
-
((window.plausible =
|
| 67 |
-
window.plausible
|
| 68 |
-
|| function () {
|
| 69 |
-
(plausible.q = plausible.q || []).push(arguments);
|
| 70 |
-
}),
|
| 71 |
-
(plausible.init =
|
| 72 |
-
plausible.init
|
| 73 |
-
|| function (i) {
|
| 74 |
-
plausible.o = i || {};
|
| 75 |
-
}));
|
| 76 |
-
plausible.init({
|
| 77 |
-
customProperties: {
|
| 78 |
-
loggedIn: "true",
|
| 79 |
-
},
|
| 80 |
-
endpoint: "/api/event",
|
| 81 |
-
});
|
| 82 |
-
</script>
|
| 83 |
-
|
| 84 |
-
<script>
|
| 85 |
-
window.hubConfig = {"features":{"signupDisabled":false},"sshGitUrl":"git@hf.co","moonHttpUrl":"https:\/\/huggingface.co","captchaApiKey":"bd5f2066-93dc-4bdd-a64b-a24646ca3859","datasetViewerPublicUrl":"https:\/\/datasets-server.huggingface.co","stripePublicKey":"pk_live_x2tdjFXBCvXo2FFmMybezpeM00J6gPCAAc","environment":"production","userAgent":"HuggingFace (production)","spacesIframeDomain":"hf.space","spacesApiUrl":"https:\/\/api.hf.space","logoDev":{"apiUrl":"https:\/\/img.logo.dev\/","apiKey":"pk_UHS2HZOeRnaSOdDp7jbd5w"}};
|
| 86 |
-
window.requestId = "Root=1-69eda1e1-2625053f6b9bec762c059885";
|
| 87 |
-
window.featureFlags = {"placeholder":false};
|
| 88 |
-
</script>
|
| 89 |
-
<script type="text/javascript" src="./Wildfire Grpo Training - a Hugging Face Space by Eshit_files/challenge.js.download" defer=""></script>
|
| 90 |
-
<script src="./Wildfire Grpo Training - a Hugging Face Space by Eshit_files/saved_resource" async=""></script><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/ClientErrorCatcher-CoeNy6fS.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/ViewUtils-D7Jz2LVC.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/chunk-BKBlUVio.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/index-client-BJFU2hDo.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/disclose-version-CYLFKb47.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/DeviceProvider-H-SgW9yW.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/DeviceProvider-C7KsCf3s.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/legacy-CryiGEH9.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/index-client-DaxueBPK.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/SystemThemeMonitor-BldPCa6D.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/SpaceHeader-C7dvvqlW.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/SpaceDevModeControls-BtDt-0Bv.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/index.browser-CpKRAias.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/SSEUtils-u2Vk31jK.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/fetch-B7nuKdqu.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/CopyButton-CrizEfvT.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/tooltip-ByDH5UE1.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/position-EVSBvRur.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconCopy-DltMCsu4.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconCheckmark-B4v0DnYA.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconCursor-BN3K2mBh.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconDevMode-CZFOfhN7.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconInfo-DfgiT_nt.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconSpinner-dkpFBhM4.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconVscode-DcvXNzVK.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconWarning-BSvXUeun.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/animate-DL5O0aQs.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/easing-Dbu1NtZt.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/SharedTypes-DNHqqzKA.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/SpaceHardwareFlavor-DsCssnFo.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconFan-BAhvyH8C.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconSleeping-bLZCqn9s.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconStop-DyzaXqgD.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/Spaces-sS8xqQbP.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/NfaaConstants-BZeHxlTY.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/analytics-V2AKSucY.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/AuthorAvatar-BzoUWSgS.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconProSparkle-D7eggp0N.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/handlers-CS-00Y5h.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/BillingProducts-BVNPJSRr.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/AddPaymentMethodModal-BY64yieY.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/StripeCardUpdateForm-BURtQfQ8.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/Spinner-1_RVyzZL.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/BillingPrepaidCreditsModal-ybgfU5kt.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/BillingPrepaidCreditsForm-C7DMlwfg.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/consts-C7t0Rb3X.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconAws-Q9dShx0U.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconCreditCard-BNM-ffWs.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconSettings-BGx7aBiV.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/StripePaymentIntent-DPWGxelX.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconPlus-CoD5Y14L.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/ModalBody-U2B6_4c1.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/noBodyScroll-ous8vHbv.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/MenuHeader-BEc0Zwjz.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/urlWatcher-Cps0M-mZ.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/DescriptionTooltip-jYbCQY0W.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconEnterprise-E36lk7Yq.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconKey-CCKkyyek.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconSubscribeDisk-DAi__IdP.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconTeam-BUIMqhVp.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconVariable-C_Cl3AKK.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/RichTextContent-ClTCDI4l.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconCube-oTC-n_Pa.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconDataset-gms6xl_a.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconDiscussion-DKEE9jz7.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconPaper-BzJDc7iL.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconSpace-CAxOoiB_.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/OrgMention-F5n27Dq6.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/OrgPopover-3L_oa6Di.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/FollowButton-BW7cGkT1.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/transition-DgTXsp--.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconBellWatching-DBGT0Vf_.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconCommunity-yyq7zDNd.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconMerge-BvACNOUy.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/Popover-B9Tu1qq8.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/outclick-DHUdaV32.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/portal-hJzU05X1.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconOrgPlan-BjbSilpq.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconEnterprisePlus-BKeG66Rv.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconPeopleFilled-Gdq-0s_E.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/SocialPostCode-Chi14ab-.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/UserMention-C59VtBA7.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/UserPopover-CqpD92W1.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconHeartFilled-DskPcla9.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconUpvoteFilled-DUAbk4me.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/LabelPro-HlWlB97d.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconBellWarning-PJO20e_3.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconCheckmarkFilled-Eg9WxU30.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconDuplicate-BO_Xv77O.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconFlag-CnD6fJEk.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconLinkExternal-CqN7vZVq.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconXet-Alj7sdC9.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/MarkdownEditor-Dnb6EveX.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/EmojiAutocompleteMenu-D7_5B4c5.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/CommitTabs-XPAlayzI.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/ThemeSwitcher-Cn3qTGME.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/Dropdown-BOKAOwDG.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconCaret-BqgSRpfe.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconSunFull-CegBuu-y.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconImageFilled-BUf4LbwO.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/MarkdownContent-DeDTON_P.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/interceptImages-DCWB9y3t.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/MediaViewer-l7A3IkiU.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconCaretDown-CqUJofdt.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconCaretLeft-Clsf_HOB.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconCaretRight-B4QoVryG.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconCaretUp-D3dg3Z8m.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconModalityDocument-D1mDEBWn.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/Overlay-QxT6BeYV.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/PDFViewer-Cx-aCwLu.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/Media-CpD7T-Sb.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/CloneInstructions-C-fQs_tB.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/RepoCloning-CA2EJh9F.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/VolumeOverview-CeaA-H2-.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/CollectionModal-CF9JUVfV.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/CollectionOverview-2qMwFc4D.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconUpvote-C5p149AB.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/DatasetOverview-C8_Md1ET.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconAgent-CBLjNUg2.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconDataTable-CngU-0eT.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconEye-DnrLzyPc.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconRows-DqhEP-Ug.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconTrophy-CvH4oFjQ.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/RepoOverview-CIHh37pQ.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconDownload-DYJ5Liwm.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconHeart-SZeiD3j4.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/PrivateTag-YdCt1npg.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/ResourceGroupTag-DGRewCga.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconArrowRight-Bh6vJ4qy.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconNavigationExpand-B2UYwG78.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconCaretV2-B6UQqydB.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconCode-wUKTJJJ9.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconCogFlat-jB-8Hyxp.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconEmbed-Bk9KGKhb.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconForbidden-DWpk5U10.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconHuggingFace-Cvz6tAVw.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconKebabMenu-CcYYb3m_.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconLinked-Dna0l6A9.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconList-CnSdBE9r.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconUnMute-BM7F3Scg.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconMute-CnmENGKS.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconNotForAllEyes-BBPWe_5p.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconRestart-Q0kyMboE.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconWarningFilled-BVJBAtFc.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/RepoTabs-7dB5R6GY.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/UsersListModal-D0u3PtjJ.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconSearch-CU7qfLEU.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/RepoTitle-CITu4X_k.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/Tabs-Dab6yn7b.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/ModalQuickLinks-BBc6wAcC.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconPaperClip-Cjquygwb.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/ModelOverview-D_bLZWbF.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/esm-HCairBgN.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconLightning-BcDZVEdZ.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconParameters-BShmd3xn.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/Image-n0NWYavQ.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/PipelineIcon-Cxg54x4o.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconImageTextToVideo-DbMLUlNv.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconConversational-BS0rpRO9.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconReinforcementLearning-C24qg_6c.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/PrivateStorageLimitBanner-BFrqgiuj.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/SSOBanner-M5hVLmGe.js"><style id="svelte-1ly73cu">.pro-border-glow.svelte-1ly73cu::before {content:"";position:absolute;inset:-100%;background:conic-gradient(from 0deg, #f9a8d4, #86efac, #fde68a, #f9a8d4);
|
| 91 |
-
animation: svelte-1ly73cu-spin-gradient 3s linear infinite;}
|
| 92 |
-
|
| 93 |
-
@keyframes svelte-1ly73cu-spin-gradient {
|
| 94 |
-
to {
|
| 95 |
-
transform: rotate(360deg);
|
| 96 |
-
}
|
| 97 |
-
}</style><style id="svelte-lge2by">.pro-border-glow.svelte-lge2by::before {content:"";position:absolute;inset:-100%;background:conic-gradient(from 0deg, #f9a8d4, #86efac, #fde68a, #f9a8d4);
|
| 98 |
-
animation: svelte-lge2by-spin-gradient 3s linear infinite;}
|
| 99 |
-
|
| 100 |
-
@keyframes svelte-lge2by-spin-gradient {
|
| 101 |
-
to {
|
| 102 |
-
transform: rotate(360deg);
|
| 103 |
-
}
|
| 104 |
-
}</style><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/SpacePageInner-DI8BAkZH.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/SpaceIframe-B4RKyGfu.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/iframeResizer-CljoPklN.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/schemas--qoXXri9.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/helpers-BXtqTcHk.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/Tags-Cecpx7qg.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/PageColWrapper-D4t6QAyw.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/PageGridWrapper-cKAAFsFU.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/RepoDisabledModal-CLmPVW0_.js"><link rel="modulepreload" as="script" crossorigin="" href="https://huggingface.co/front/build/kube-6dce8ba/IconGate-BQHp9VLV.js"></head>
|
| 105 |
-
<body class="flex flex-col min-h-dvh bg-white dark:bg-gray-950 text-black SpacePage" style="overflow: auto;">
|
| 106 |
-
<!--[--><div class="flex min-h-dvh flex-col"><div class="SVELTE_HYDRATER contents" data-target="ClientErrorCatcher" data-props="{"capture":false}"></div> <div class="SVELTE_HYDRATER contents" data-target="DeviceProvider" data-props="{}"></div> <div class="SVELTE_HYDRATER contents" data-target="SystemThemeMonitor" data-props="{"isLoggedIn":true}"></div> <!--[-1--><!--]--> <!--[0--><!--[--><div class="SVELTE_HYDRATER contents" data-target="SpaceHeader" data-props="{"activeTab":"spaceApp","authLight":{"csrfToken":"eyJkYXRhIjp7ImV4cGlyYXRpb24iOjE3NzcyNjc1NTM0OTcsInVzZXJJZCI6IjY3ZTAyMGVkMzMxMTVjMjJhZmFkZTFmOCJ9LCJzaWduYXR1cmUiOiJhYzA2MmZjMTc4MWUxNjc0MGZjZWYyMGEzZmJiZmY1ZTcyNmE5Y2Y1OGJlMWM3ZTJjMzFmMTFjNTk0M2M3OTVjIn0=","hasHfLevelAccess":false,"u":{"avatarUrl":"/avatars/189a01133e93c528ec7ce3835dec068e.svg","isPro":false,"orgs":[],"user":"Eshit","canPostBlog":false,"canPostSocialPost":false,"isPaperAuthor":false,"canHaveBilling":true,"canCreateOrg":true,"theme":"light","notifications":{"org_suggestions":false},"hardwareItems":[],"hardwareItemsPrivate":false,"usage":{"storage":{"used":92696030,"usedPrivate":0,"usedPublic":92696030,"count":4,"summary":{"model":{"used":92214452,"usedPrivate":0,"usedPublic":92214452,"count":1},"space":{"used":481578,"usedPrivate":0,"usedPublic":481578,"count":3}},"lastMetronomeSentAt":"2026-04-26T02:09:11.191Z"},"inference":{"usedNanoUsd":0,"numRequests":0,"providerDetails":[],"periodEnd":"2026-04-30T23:59:59.999Z","periodStart":"2026-04-01T00:00:00.000Z","includedNanoUsd":100000000,"limitNanoUsd":100000000},"zeroGpu":{"base":210,"current":210,"overquota":{"billedSeconds":0}},"jobs":{"totalMinutes":0,"jobDetails":[],"usedMicroUsd":0,"periodStart":"2026-04-01T00:00:00.000Z","periodEnd":"2026-04-26T05:25:41.072Z"},"lastUpdatedAt":"2026-04-26T05:25:41.072Z","rateLimits":{"blockedPastWeek":0}},"welcomeLinks":[],"hasProOrOrgPaidPlan":false}},"author":{"_id":"67e020ed33115c22afade1f8","avatarUrl":"/avatars/189a01133e93c528ec7ce3835dec068e.svg","fullname":"Eshit Saini","name":"Eshit","type":"user","isPro":false,"isHf":false,"isHfAdmin":false,"isMod":false,"isUserFollowing":false},"avatarUrl":"/avatars/189a01133e93c528ec7ce3835dec068e.svg","canDisable":false,"canReadRepoSettings":true,"canWriteRepoSettings":true,"canWrite":true,"canCreateKernels":false,"discussionsStats":{"closed":0,"open":0,"total":0},"query":{},"space":{"author":"Eshit","colorFrom":"gray","colorTo":"green","cardData":{"title":"Wildfire Grpo Training","emoji":"π»π³","colorFrom":"gray","colorTo":"green","sdk":"docker","pinned":false,"tags":["jupyterlab"],"suggested_storage":"small","license":"mit"},"createdAt":"2026-04-26T02:21:04.000Z","emoji":"π»π³","discussionsDisabled":false,"discussionsSorting":"recently-created","duplicationDisabled":false,"id":"Eshit/wildfire-grpo-training","isLikedByUser":false,"watched":{"isWatching":true,"isMuted":false,"mode":"global"},"lastModified":"2026-04-26T02:21:05.000Z","likes":0,"pinned":false,"private":true,"visibility":"private","gated":false,"repoType":"space","subdomain":"eshit-wildfire-grpo-training","sdk":"docker","title":"Wildfire Grpo Training","runtime":{"stage":"RUNNING_BUILDING","hardware":{"current":"a10g-large","requested":"a100-large"},"gcTimeout":3600,"replicas":{"current":1,"requested":1},"devMode":false,"domains":[{"domain":"eshit-wildfire-grpo-training.hf.space","stage":"READY"}],"sha":"3890d1112ecd4aebc0cb560000a634b6c44cbd8f"},"volumes":[],"iframe":{"embedSrc":"https://eshit-wildfire-grpo-training.hf.space","src":"https://eshit-wildfire-grpo-training.hf.space"},"secrets":[{"key":"JUPYTER_TOKEN","updatedAt":"2026-04-26T02:52:28.693Z"}],"variables":[],"sse":{"status":{"url":"https://huggingface.co/api/spaces/Eshit/wildfire-grpo-training/events"},"logs":{"build":"https://huggingface.co/api/spaces/Eshit/wildfire-grpo-training/logs/build","run":"https://huggingface.co/api/spaces/Eshit/wildfire-grpo-training/logs/run"},"liveMetrics":{"url":"https://huggingface.co/api/spaces/Eshit/wildfire-grpo-training/metrics"}},"dockerJwt":"eyJhbGciOiJFZERTQSJ9.eyJyZWFkIjp0cnVlLCJwZXJtaXNzaW9ucyI6eyJyZXBvLmNvbnRlbnQucmVhZCI6dHJ1ZX0sIm9uQmVoYWxmT2YiOnsia2luZCI6InVzZXIiLCJfaWQiOiI2N2UwMjBlZDMzMTE1YzIyYWZhZGUxZjgiLCJ1c2VyIjoiRXNoaXQiLCJzZXNzaW9uSWQiOiI2OWVkMWVjYTgxZjE3YTg3MmI1OTRhZjUifSwiaWF0IjoxNzc3MTgxMTUzLCJzdWIiOiIvc3BhY2VzL0VzaGl0L3dpbGRmaXJlLWdycG8tdHJhaW5pbmciLCJleHAiOjE3NzcyNjc1NTMsImlzcyI6Imh0dHBzOi8vaHVnZ2luZ2ZhY2UuY28ifQ.894MCyiab-ug0Y8lYAGb89diB_Yh6MZJu9d6L8xFcDgrMWiV3OSamuTGZB97OXO0kvpGARWBlJS5jptpjbuXBQ","linkedModels":[],"linkedDatasets":[],"linkedCollections":[],"sha":"3890d1112ecd4aebc0cb560000a634b6c44cbd8f","hasBlockedOids":false,"region":"us","tags":["docker","jupyterlab","region:us"]},"u":{"avatarUrl":"/avatars/189a01133e93c528ec7ce3835dec068e.svg","isPro":false,"fullname":"Eshit Saini","user":"Eshit","orgs":[],"signup":{},"isHf":false,"isMod":false,"type":"user","theme":"light","canPay":true,"spacesAvailableFlavors":["cpu-basic","cpu-upgrade","zero-a10g","t4-small","t4-medium","l4x1","l4x4","l40sx1","l40sx4","l40sx8","a10g-small","a10g-large","a10g-largex2","a10g-largex4","a100-large","a100x4","a100x8"],"canPostBlog":false,"canPostSocialPost":false,"isPaperAuthor":false,"billingMode":"prepaid","currentBalanceUsd":26},"unreadNotifications":0,"unreadChangelogCount":3,"sessionUuid":"mw9FiokYJZllg0Jd7bcfn","hasPaidPlanEligibleOrg":false}"><!----><!----> <!----><header class="from-gray-50-to-white bg-linear-to-t relative z-40 border-b border-gray-100 via-white pt-0.5 dark:via-gray-950"><div class="relative mx-4 mb-1 flex flex-col justify-between max-sm:mt-2 sm:mb-0 xl:flex-row"><div class="flex items-center justify-between xl:min-w-0"><h1 class="my-2 flex w-full min-w-0 flex-wrap items-center gap-y-2 text-lg leading-tight xl:flex-nowrap"><span class="flex shrink-0 flex-nowrap items-center"><a href="https://huggingface.co/spaces" class="hover:bg-linear-to-r peer order-last hidden font-bold hover:from-blue-600 hover:via-purple-600 hover:to-pink-600 hover:bg-clip-text hover:text-transparent sm:inline">Spaces</a> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32" class="hidden peer-hover:block mr-1.5 w-5 animate__animated animate__fadeInUp animate__fast"><path d="M7.80914 18.7462V24.1907H13.2536V18.7462H7.80914Z" fill="#FF3270"></path><path d="M18.7458 18.7462V24.1907H24.1903V18.7462H18.7458Z" fill="#861FFF"></path><path d="M7.80914 7.80982V13.2543H13.2536V7.80982H7.80914Z" fill="#097EFF"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M4 6.41775C4 5.08246 5.08246 4 6.41775 4H14.6457C15.7626 4 16.7026 4.75724 16.9802 5.78629C18.1505 4.67902 19.7302 4 21.4685 4C25.0758 4 28.0003 6.92436 28.0003 10.5317C28.0003 12.27 27.3212 13.8497 26.2139 15.02C27.243 15.2977 28.0003 16.2376 28.0003 17.3545V25.5824C28.0003 26.9177 26.9177 28.0003 25.5824 28.0003H17.0635H14.9367H6.41775C5.08246 28.0003 4 26.9177 4 25.5824V15.1587V14.9367V6.41775ZM7.80952 7.80952V13.254H13.254V7.80952H7.80952ZM7.80952 24.1907V18.7462H13.254V24.1907H7.80952ZM18.7462 24.1907V18.7462H24.1907V24.1907H18.7462ZM18.7462 10.5317C18.7462 9.0283 19.9651 7.80952 21.4685 7.80952C22.9719 7.80952 24.1907 9.0283 24.1907 10.5317C24.1907 12.0352 22.9719 13.254 21.4685 13.254C19.9651 13.254 18.7462 12.0352 18.7462 10.5317Z" fill="black"></path><path d="M21.4681 7.80982C19.9647 7.80982 18.7458 9.02861 18.7458 10.5321C18.7458 12.0355 19.9647 13.2543 21.4681 13.2543C22.9715 13.2543 24.1903 12.0355 24.1903 10.5321C24.1903 9.02861 22.9715 7.80982 21.4681 7.80982Z" fill="#FFD702"></path></svg><!----> <a href="https://huggingface.co/" class="mr-0 w-5 peer-hover:hidden sm:mr-1.5"><img alt="Hugging Face's logo" src="./Wildfire Grpo Training - a Hugging Face Space by Eshit_files/huggingface_logo-noborder.svg" class="w-5"></a></span> <hr class="rounded-xs mx-2 h-2 translate-y-px border-r dark:border-gray-600 xl:mx-2.5"> <!----><div class="group flex flex-none items-center"><div class="relative mr-1 flex items-center"><!----> <!----><span class="inline-block "><span class="contents"><!----><a class="text-gray-400 hover:text-blue-600" href="https://huggingface.co/Eshit"><div class="flex-none "><img alt="" crossorigin="anonymous" class="size-3.5 rounded-full flex-none select-none " src="./Wildfire Grpo Training - a Hugging Face Space by Eshit_files/189a01133e93c528ec7ce3835dec068e.svg"> <!----></div><!----></a><!----></span> <!----></span><!----></div> <span class="inline-block "><span class="contents"><!----><a class="text-gray-400 hover:text-blue-600" href="https://huggingface.co/Eshit">Eshit</a><!----></span> <!----></span><!----> <div class="mx-0.5 text-gray-300">/</div></div><!----> <div class="max-w-full xl:flex xl:min-w-0 xl:flex-nowrap xl:items-center xl:gap-x-1"><a class="break-words font-mono font-semibold hover:text-blue-600 text-[1.07rem] xl:truncate" href="https://huggingface.co/spaces/Eshit/wildfire-grpo-training">wildfire-grpo-training</a> <!----><button type="button" class="text-xs mr-3
|
| 107 |
-
focus:outline-hidden inline-flex cursor-pointer items-center text-sm
|
| 108 |
-
|
| 109 |
-
mx-0.5
|
| 110 |
-
|
| 111 |
-
|
| 112 |
-
text-gray-600
|
| 113 |
-
|
| 114 |
-
" title="Copy space name to clipboard"><!----><svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" fill="currentColor" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32"><path d="M28,10V28H10V10H28m0-2H10a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V10a2,2,0,0,0-2-2Z" transform="translate(0)"></path><path d="M4,18H2V4A2,2,0,0,1,4,2H18V4H4Z" transform="translate(0)"></path><rect fill="none" width="32" height="32"></rect></svg><!----> <!----></button><!----></div><!----> <!----><div class="inline-flex h-5 items-center rounded-sm border border-gray-200 px-1.5 text-xs leading-none text-gray-500 mr-2">private</div><!----> <!----> <!----> <!----> <!----><!----> <!----><!----><span class="inline-block "><span class="contents"><div class="cursor-pointer select-none overflow-hidden font-mono text-xs shrink-0
|
| 115 |
-
mr-2 flex items-center rounded-lg border leading-none dark:bg-gray-900
|
| 116 |
-
border-green-100
|
| 117 |
-
text-green-700 dark:text-green-500"><div class="inline-flex items-center whitespace-nowrap px-2 py-[0.32rem] dark:bg-gray-900 border-green-100 bg-green-50 hover:bg-green-100/70 hover:text-green-800 dark:hover:text-green-400"><!----><!----><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 15 15" class="h-2.5 w-2.5 mr-1.5 animate-spin-slow-reversed"><path d="M7.48877 6.75C7.29015 6.75 7.09967 6.82902 6.95923 6.96967C6.81879 7.11032 6.73989 7.30109 6.73989 7.5C6.73989 7.69891 6.81879 7.88968 6.95923 8.03033C7.09967 8.17098 7.29015 8.25 7.48877 8.25C7.68738 8.25 7.87786 8.17098 8.0183 8.03033C8.15874 7.88968 8.23764 7.69891 8.23764 7.5C8.23764 7.30109 8.15874 7.11032 8.0183 6.96967C7.87786 6.82902 7.68738 6.75 7.48877 6.75ZM7.8632 0C11.2331 0 11.3155 2.6775 9.54818 3.5625C8.80679 3.93 8.47728 4.7175 8.335 5.415C8.69446 5.565 9.00899 5.7975 9.24863 6.0975C12.0195 4.5975 15 5.19 15 7.875C15 11.25 12.3265 11.325 11.4428 9.5475C11.0684 8.805 10.2746 8.475 9.57813 8.3325C9.42836 8.6925 9.19621 9 8.89665 9.255C10.3869 12.0225 9.79531 15 7.11433 15C3.74438 15 3.67698 12.315 5.44433 11.43C6.17823 11.0625 6.50774 10.2825 6.65751 9.5925C6.29056 9.4425 5.96855 9.2025 5.72891 8.9025C2.96555 10.3875 0 9.8025 0 7.125C0 3.75 2.666 3.6675 3.54967 5.445C3.92411 6.1875 4.71043 6.51 5.40689 6.6525C5.54918 6.2925 5.78882 5.9775 6.09586 5.7375C4.60559 2.97 5.1972 0 7.8632 0Z" fill="currentColor"></path></svg><!----> Running <span class="mx-1">on</span> <!----> <span class="-skew-x-6 truncate font-bold uppercase">A10G</span><!----></div> <!----></div><!----></span> <!----></span><!----> <button class="focus:outline-hidden mr-2 inline-flex items-center overflow-hidden whitespace-nowrap rounded-md border bg-white px-1.5 py-1 text-sm leading-none text-gray-500 hover:bg-gray-50 focus:bg-gray-100 dark:hover:bg-gray-900 dark:focus:bg-gray-800"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32" class="2xl:mr-1 flex-none"><path fill="currentColor" d="M4 6h18v2H4zm0 6h18v2H4zm0 6h12v2H4zm17 0l7 5l-7 5V18z"></path></svg><!----><span class="hidden 2xl:block">Logs</span></button><!----><!----> <!----><!----> <!----> <div class="xl:hidden"><div class="relative "><button type="button" class="btn px-1 py-1 text-sm translate-y-0
|
| 118 |
-
"><!----><!----><!----><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32" class="p-px"><circle cx="16" cy="7" r="3" fill="currentColor"></circle><circle cx="16" cy="16" r="3" fill="currentColor"></circle><circle cx="16" cy="25" r="3" fill="currentColor"></circle></svg><!----> <!----><!----> <!----></button> <!----></div><!----></div> <dialog class="shadow-alternate z-40 mx-4 my-auto h-fit select-text overflow-hidden rounded-xl bg-white max-sm:max-w-[calc(100dvw-2rem)] sm:mx-auto
|
| 119 |
-
lg:mt-26 md:portrait:mt-30 xl:mt-30 2xl:mt-32
|
| 120 |
-
w-full lg:w-7/12 max-w-[calc(100%-4rem)] md:max-w-2xl
|
| 121 |
-
"><div class="outline-none focus:ring-0 focus-visible:ring-0" tabindex="-1"><!----></div></dialog><!----> <!----><!----></h1> <div class="flex flex-none items-center justify-center p-0.5 place-self-start p-0 max-sm:absolute max-sm:-right-4 max-sm:-top-2 sm:my-2 xl:hidden aspect-1"><button class="relative z-40 flex h-6 w-8 items-center justify-center" type="button"><svg width="1em" height="1em" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" preserveAspectRatio="xMidYMid meet" fill="currentColor" class="text-xl"><path fill-rule="evenodd" clip-rule="evenodd" d="M1.65039 2.9999C1.65039 2.8066 1.80709 2.6499 2.00039 2.6499H8.00039C8.19369 2.6499 8.35039 2.8066 8.35039 2.9999C8.35039 3.1932 8.19369 3.3499 8.00039 3.3499H2.00039C1.80709 3.3499 1.65039 3.1932 1.65039 2.9999ZM1.65039 4.9999C1.65039 4.8066 1.80709 4.6499 2.00039 4.6499H8.00039C8.19369 4.6499 8.35039 4.8066 8.35039 4.9999C8.35039 5.1932 8.19369 5.3499 8.00039 5.3499H2.00039C1.80709 5.3499 1.65039 5.1932 1.65039 4.9999ZM2.00039 6.6499C1.80709 6.6499 1.65039 6.8066 1.65039 6.9999C1.65039 7.1932 1.80709 7.3499 2.00039 7.3499H8.00039C8.19369 7.3499 8.35039 7.1932 8.35039 6.9999C8.35039 6.8066 8.19369 6.6499 8.00039 6.6499H2.00039Z"></path></svg><!----> <!----></button> <!----></div><!----></div> <div class="hidden flex-row items-center justify-between gap-x-2 xl:flex xl:flex-none"><div class="-mb-px flex h-12 items-center overflow-x-auto overflow-y-hidden "><!----> <!----><a class="tab-alternate active" href="https://huggingface.co/spaces/Eshit/wildfire-grpo-training"><!----><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24" class="mr-1.5 text-gray-400 flex-none" style=""><path class="uim-quaternary" d="M20.23 7.24L12 12L3.77 7.24a1.98 1.98 0 0 1 .7-.71L11 2.76c.62-.35 1.38-.35 2 0l6.53 3.77c.29.173.531.418.7.71z" opacity=".25" fill="currentColor"></path><path class="uim-tertiary" d="M12 12v9.5a2.09 2.09 0 0 1-.91-.21L4.5 17.48a2.003 2.003 0 0 1-1-1.73v-7.5a2.06 2.06 0 0 1 .27-1.01L12 12z" opacity=".5" fill="currentColor"></path><path class="uim-primary" d="M20.5 8.25v7.5a2.003 2.003 0 0 1-1 1.73l-6.62 3.82c-.275.13-.576.198-.88.2V12l8.23-4.76c.175.308.268.656.27 1.01z" fill="currentColor"></path></svg><!----> App<!----> <!----> <!----><!----></a><a class="tab-alternate" href="https://huggingface.co/spaces/Eshit/wildfire-grpo-training/tree/main"><!----><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24" class="mr-1.5 text-gray-400 flex-none"><path class="uim-tertiary" d="M21 19h-8a1 1 0 0 1 0-2h8a1 1 0 0 1 0 2zm0-4h-8a1 1 0 0 1 0-2h8a1 1 0 0 1 0 2zm0-8h-8a1 1 0 0 1 0-2h8a1 1 0 0 1 0 2zm0 4h-8a1 1 0 0 1 0-2h8a1 1 0 0 1 0 2z" opacity=".5" fill="currentColor"></path><path class="uim-primary" d="M9 19a1 1 0 0 1-1-1V6a1 1 0 0 1 2 0v12a1 1 0 0 1-1 1zm-6-4.333a1 1 0 0 1-.64-1.769L3.438 12l-1.078-.898a1 1 0 0 1 1.28-1.538l2 1.667a1 1 0 0 1 0 1.538l-2 1.667a.999.999 0 0 1-.64.231z" fill="currentColor"></path></svg><!----> <span class="xl:hidden">Files</span> <span class="hidden xl:inline">Files</span><!----> <!----> <!----><!----></a><a class="tab-alternate" href="https://huggingface.co/spaces/Eshit/wildfire-grpo-training/discussions"><!----><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32" class="mr-1.5 text-gray-400 flex-none"><path d="M20.6081 3C21.7684 3 22.8053 3.49196 23.5284 4.38415C23.9756 4.93678 24.4428 5.82749 24.4808 7.16133C24.9674 7.01707 25.4353 6.93643 25.8725 6.93643C26.9833 6.93643 27.9865 7.37587 28.696 8.17411C29.6075 9.19872 30.0124 10.4579 29.8361 11.7177C29.7523 12.3177 29.5581 12.8555 29.2678 13.3534C29.8798 13.8646 30.3306 14.5763 30.5485 15.4322C30.719 16.1032 30.8939 17.5006 29.9808 18.9403C30.0389 19.0342 30.0934 19.1319 30.1442 19.2318C30.6932 20.3074 30.7283 21.5229 30.2439 22.6548C29.5093 24.3704 27.6841 25.7219 24.1397 27.1727C21.9347 28.0753 19.9174 28.6523 19.8994 28.6575C16.9842 29.4379 14.3477 29.8345 12.0653 29.8345C7.87017 29.8345 4.8668 28.508 3.13831 25.8921C0.356375 21.6797 0.754104 17.8269 4.35369 14.1131C6.34591 12.058 7.67023 9.02782 7.94613 8.36275C8.50224 6.39343 9.97271 4.20438 12.4172 4.20438H12.4179C12.6236 4.20438 12.8314 4.2214 13.0364 4.25468C14.107 4.42854 15.0428 5.06476 15.7115 6.02205C16.4331 5.09583 17.134 4.359 17.7682 3.94323C18.7242 3.31737 19.6794 3 20.6081 3ZM20.6081 5.95917C20.2427 5.95917 19.7963 6.1197 19.3039 6.44225C17.7754 7.44319 14.8258 12.6772 13.7458 14.7131C13.3839 15.3952 12.7655 15.6837 12.2086 15.6837C11.1036 15.6837 10.2408 14.5497 12.1076 13.1085C14.9146 10.9402 13.9299 7.39584 12.5898 7.1776C12.5311 7.16799 12.4731 7.16355 12.4172 7.16355C11.1989 7.16355 10.6615 9.33114 10.6615 9.33114C10.6615 9.33114 9.0863 13.4148 6.38031 16.206C3.67434 18.998 3.5346 21.2388 5.50675 24.2246C6.85185 26.2606 9.42666 26.8753 12.0653 26.8753C14.8021 26.8753 17.6077 26.2139 19.1799 25.793C19.2574 25.7723 28.8193 22.984 27.6081 20.6107C27.4046 20.212 27.0693 20.0522 26.6471 20.0522C24.9416 20.0522 21.8393 22.6726 20.5057 22.6726C20.2076 22.6726 19.9976 22.5416 19.9116 22.222C19.3433 20.1173 28.552 19.2325 27.7758 16.1839C27.639 15.6445 27.2677 15.4256 26.746 15.4263C24.4923 15.4263 19.4358 19.5181 18.3759 19.5181C18.2949 19.5181 18.2368 19.4937 18.2053 19.4419C17.6743 18.557 17.9653 17.9394 21.7082 15.6009C25.4511 13.2617 28.0783 11.8545 26.5841 10.1752C26.4121 9.98141 26.1684 9.8956 25.8725 9.8956C23.6001 9.89634 18.2311 14.9403 18.2311 14.9403C18.2311 14.9403 16.7821 16.496 15.9057 16.496C15.7043 16.496 15.533 16.4139 15.4169 16.2112C14.7956 15.1296 21.1879 10.1286 21.5484 8.06535C21.7928 6.66715 21.3771 5.95917 20.6081 5.95917Z" fill="#FF9D00"></path><path d="M5.50686 24.2246C3.53472 21.2387 3.67446 18.9979 6.38043 16.206C9.08641 13.4147 10.6615 9.33111 10.6615 9.33111C10.6615 9.33111 11.2499 6.95933 12.59 7.17757C13.93 7.39581 14.9139 10.9401 12.1069 13.1084C9.29997 15.276 12.6659 16.7489 13.7459 14.713C14.8258 12.6772 17.7747 7.44316 19.304 6.44221C20.8326 5.44128 21.9089 6.00204 21.5484 8.06532C21.188 10.1286 14.795 15.1295 15.4171 16.2118C16.0391 17.2934 18.2312 14.9402 18.2312 14.9402C18.2312 14.9402 25.0907 8.49588 26.5842 10.1752C28.0776 11.8545 25.4512 13.2616 21.7082 15.6008C17.9646 17.9393 17.6744 18.557 18.2054 19.4418C18.7372 20.3266 26.9998 13.1351 27.7759 16.1838C28.5513 19.2324 19.3434 20.1173 19.9117 22.2219C20.48 24.3274 26.3979 18.2382 27.6082 20.6107C28.8193 22.9839 19.2574 25.7722 19.18 25.7929C16.0914 26.62 8.24723 28.3726 5.50686 24.2246Z" fill="#FFD21E"></path></svg><!----> Community<!----> <!----> <!----><!----></a><a class="tab-alternate" href="https://huggingface.co/spaces/Eshit/wildfire-grpo-training/settings"><!----><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 25 25" fill="currentColor" class="opacity-50 dark:opacity-70 mr-1.5 text-gray-400 flex-none"><path d="M13.0101 3C13.7157 3.0078 14.4184 3.09062 15.1077 3.24652C15.2543 3.2797 15.3871 3.35848 15.4874 3.47186C15.5877 3.58523 15.6506 3.72754 15.6672 3.8789L15.8306 5.36678C15.8537 5.57655 15.925 5.77791 16.0389 5.95464C16.1527 6.13137 16.3059 6.27854 16.4861 6.38432C16.6663 6.4901 16.8685 6.55153 17.0764 6.56367C17.2843 6.57581 17.4921 6.53831 17.6831 6.4542L19.0299 5.85495C19.1667 5.79391 19.3187 5.77743 19.4651 5.8078C19.6115 5.83818 19.745 5.9139 19.847 6.02449C20.8199 7.07789 21.5443 8.3412 21.9658 9.71937C22.01 9.8642 22.0087 10.0194 21.962 10.1634C21.9153 10.3074 21.8256 10.4332 21.7053 10.5232L20.5113 11.4158C20.3434 11.5408 20.2069 11.7041 20.1128 11.8925C20.0187 12.0809 19.9697 12.2891 19.9697 12.5003C19.9697 12.7114 20.0187 12.9196 20.1128 13.108C20.2069 13.2964 20.3434 13.4597 20.5113 13.5848L21.7062 14.4763C21.8269 14.5663 21.917 14.6922 21.9638 14.8364C22.0107 14.9806 22.0121 15.1361 21.9677 15.2812C21.546 16.6593 20.8216 17.9225 19.849 18.976C19.7471 19.0864 19.6141 19.162 19.4681 19.1926C19.3221 19.2231 19.1704 19.207 19.0338 19.1466L17.6812 18.5454C17.4904 18.4606 17.2827 18.4225 17.0748 18.4343C16.8668 18.446 16.6645 18.5072 16.4842 18.6129C16.3039 18.7185 16.1508 18.8658 16.037 19.0426C15.9233 19.2195 15.8523 19.421 15.8297 19.6308L15.6672 21.1177C15.6508 21.2674 15.5892 21.4084 15.4908 21.5212C15.3923 21.6341 15.2619 21.7133 15.1173 21.7482C13.7249 22.0839 12.2742 22.0839 10.8817 21.7482C10.7371 21.7133 10.6067 21.6341 10.5083 21.5212C10.4098 21.4084 10.3482 21.2674 10.3318 21.1177L10.1703 19.6328C10.1468 19.4235 10.0751 19.2227 9.96107 19.0465C9.84703 18.8704 9.69381 18.7238 9.51373 18.6186C9.33364 18.5134 9.13172 18.4525 8.92419 18.4408C8.71666 18.4291 8.50931 18.4669 8.31882 18.5512L6.9672 19.1514C6.83048 19.2121 6.67854 19.2283 6.53235 19.1978C6.38616 19.1672 6.25292 19.0915 6.15103 18.9809C5.17789 17.9263 4.45346 16.6616 4.03227 15.2821C3.98795 15.1371 3.98931 14.9816 4.03617 14.8374C4.08304 14.6931 4.17306 14.5673 4.29375 14.4773L5.48868 13.5848C5.65676 13.4599 5.79345 13.2966 5.88768 13.1082C5.9819 12.9198 6.031 12.7115 6.031 12.5003C6.031 12.289 5.9819 12.0808 5.88768 11.8923C5.79345 11.7039 5.65676 11.5407 5.48868 11.4158L4.29375 10.5252C4.17324 10.4351 4.0834 10.3092 4.03671 10.1649C3.99003 10.0207 3.98881 9.8653 4.03323 9.72034C4.45479 8.34219 5.17922 7.07889 6.15199 6.02547C6.25407 5.91487 6.38753 5.83915 6.53391 5.80878C6.6803 5.77841 6.83238 5.79488 6.96912 5.85593L8.31498 6.45517C8.5063 6.53923 8.71441 6.57664 8.92258 6.56439C9.13075 6.55214 9.33319 6.49057 9.51363 6.38462C9.69406 6.27868 9.84747 6.13132 9.96152 5.95438C10.0756 5.77744 10.1471 5.57585 10.1703 5.36581L10.3338 3.8789C10.3503 3.72724 10.4132 3.58462 10.5137 3.47103C10.6142 3.35745 10.7473 3.2786 10.8942 3.24555C11.5835 3.09062 12.2881 3.00877 13.0101 3ZM12.9986 9.57711C12.2337 9.57711 11.5001 9.88508 10.9593 10.4333C10.4184 10.9815 10.1146 11.725 10.1146 12.5003C10.1146 13.2755 10.4184 14.0191 10.9593 14.5672C11.5001 15.1154 12.2337 15.4234 12.9986 15.4234C13.7634 15.4234 14.497 15.1154 15.0378 14.5672C15.5787 14.0191 15.8825 13.2755 15.8825 12.5003C15.8825 11.725 15.5787 10.9815 15.0378 10.4333C14.497 9.88508 13.7634 9.57711 12.9986 9.57711Z"></path></svg><!----> Settings<!----> <!----> <!----><!----></a><!----></div><!----> <div class="mt-0"><div class="relative "><button type="button" class="btn px-1 py-1 text-base translate-y-px
|
| 122 |
-
"><!----><!----><!----><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32" class="p-0.5"><circle cx="16" cy="7" r="3" fill="currentColor"></circle><circle cx="16" cy="16" r="3" fill="currentColor"></circle><circle cx="16" cy="25" r="3" fill="currentColor"></circle></svg><!----> <!----><!----> <!----></button> <!----></div><!----></div> <dialog class="shadow-alternate z-40 mx-4 my-auto h-fit select-text overflow-hidden rounded-xl bg-white max-sm:max-w-[calc(100dvw-2rem)] sm:mx-auto
|
| 123 |
-
lg:mt-26 md:portrait:mt-30 xl:mt-30 2xl:mt-32
|
| 124 |
-
w-full lg:w-7/12 max-w-[calc(100%-4rem)] md:max-w-2xl
|
| 125 |
-
"><div class="outline-none focus:ring-0 focus-visible:ring-0" tabindex="-1"><!----></div></dialog><!----> <!----><!----> <hr class="rounded-xs ml-2 h-2 translate-y-px border-r dark:border-gray-600"> <form action="https://huggingface.co/logout" method="POST" class="hidden"><input type="hidden" name="csrf" value="eyJkYXRhIjp7ImV4cGlyYXRpb24iOjE3NzcyNjc1NTM0OTcsInVzZXJJZCI6IjY3ZTAyMGVkMzMxMTVjMjJhZmFkZTFmOCJ9LCJzaWduYXR1cmUiOiJhYzA2MmZjMTc4MWUxNjc0MGZjZWYyMGEzZmJiZmY1ZTcyNmE5Y2Y1OGJlMWM3ZTJjMzFmMTFjNTk0M2M3OTVjIn0="></form> <div class="relative ml-2 w-[1.38rem] h-[1.38rem] mr-2"><button type="button" class="ml-auto rounded-full ring-2 group ring-indigo-400 focus:ring-blue-500 hover:ring-offset-1 focus:ring-offset-1 focus:outline-hidden outline-hidden dark:ring-offset-gray-950
|
| 126 |
-
"><!----><!----><div class="relative"><img alt="" class="h-[1.38rem] w-[1.38rem] select-none overflow-hidden rounded-full" crossorigin="anonymous" src="./Wildfire Grpo Training - a Hugging Face Space by Eshit_files/189a01133e93c528ec7ce3835dec068e.svg"> <!----></div><!----> <!----></button> <!----></div><!----><!----><!----></div></div> <!----></header><!----> <dialog class="shadow-alternate z-40 mx-4 my-auto h-fit select-text overflow-hidden rounded-xl bg-white max-sm:max-w-[calc(100dvw-2rem)] sm:mx-auto
|
| 127 |
-
lg:mt-26 md:portrait:mt-30 xl:mt-30 2xl:mt-32
|
| 128 |
-
w-full lg:w-10/12 xl:w-8/12 2xl:w-7/12 max-w-[calc(100%-4rem)] lg:max-w-4xl
|
| 129 |
-
"><div class="outline-none focus:ring-0 focus-visible:ring-0" tabindex="-1"><!----></div></dialog><!----> <!----><div class="spinner-overlay fixed inset-0 z-50 flex h-full w-full items-center justify-center overflow-y-auto bg-gray-500 text-white opacity-80 hidden"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" fill="none" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24" class="animate-spin -ml-1 mr-3 h-5 w-5 text-white"><circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle><path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path></svg><!----> <span>Fetching metadata from the HF Docker repository...</span></div><!----> <dialog class="shadow-alternate z-40 mx-4 my-auto h-fit select-text overflow-hidden rounded-xl bg-white max-sm:max-w-[calc(100dvw-2rem)] sm:mx-auto
|
| 130 |
-
lg:mt-26 md:portrait:mt-30 xl:mt-30 2xl:mt-32
|
| 131 |
-
w-full lg:w-10/12 xl:w-8/12 2xl:w-7/12 max-w-[calc(100%-4rem)] lg:max-w-4xl
|
| 132 |
-
"><div class="outline-none focus:ring-0 focus-visible:ring-0" tabindex="-1"><!----></div></dialog><!----><!----> <!----><dialog class="shadow-alternate z-40 mx-4 my-auto h-fit select-text overflow-hidden rounded-xl bg-white max-sm:max-w-[calc(100dvw-2rem)] sm:mx-auto
|
| 133 |
-
lg:mt-26 md:portrait:mt-30 xl:mt-30 2xl:mt-32
|
| 134 |
-
w-full lg:w-10/12 xl:w-8/12 2xl:w-7/12 max-w-[calc(100%-4rem)] lg:max-w-4xl
|
| 135 |
-
will-change-transform "><div class="outline-none focus:ring-0 focus-visible:ring-0" tabindex="-1"><!----></div></dialog><!----> <!----><dialog class="shadow-alternate z-40 mx-4 my-auto h-fit select-text overflow-hidden rounded-xl bg-white max-sm:max-w-[calc(100dvw-2rem)] sm:mx-auto
|
| 136 |
-
lg:mt-26 md:portrait:mt-30 xl:mt-30 2xl:mt-32
|
| 137 |
-
w-full sm:w-96 max-w-[calc(100%-4rem)]
|
| 138 |
-
"><div class="outline-none focus:ring-0 focus-visible:ring-0" tabindex="-1"><!----></div></dialog><!----><!----> <!----> <!----><dialog class="shadow-alternate z-40 mx-4 my-auto h-fit select-text overflow-hidden rounded-xl bg-white max-sm:max-w-[calc(100dvw-2rem)] sm:mx-auto
|
| 139 |
-
lg:mt-26 md:portrait:mt-30 xl:mt-30 2xl:mt-32
|
| 140 |
-
w-full lg:w-7/12 max-w-[calc(100%-4rem)] md:max-w-2xl
|
| 141 |
-
"><div class="outline-none focus:ring-0 focus-visible:ring-0" tabindex="-1"><!----></div></dialog><!----> <dialog class="shadow-alternate z-40 mx-4 my-auto h-fit select-text overflow-hidden rounded-xl bg-white max-sm:max-w-[calc(100dvw-2rem)] sm:mx-auto
|
| 142 |
-
lg:mt-26 md:portrait:mt-30 xl:mt-30 2xl:mt-32
|
| 143 |
-
w-full lg:w-7/12 max-w-[calc(100%-4rem)] md:max-w-2xl
|
| 144 |
-
will-change-transform "><div class="outline-none focus:ring-0 focus-visible:ring-0" tabindex="-1"><!----></div></dialog><!----><!----> <!----> <dialog class="shadow-alternate z-40 mx-4 my-auto h-fit select-text overflow-hidden rounded-xl bg-white max-sm:max-w-[calc(100dvw-2rem)] sm:mx-auto
|
| 145 |
-
lg:mt-26 md:portrait:mt-30 xl:mt-30 2xl:mt-32
|
| 146 |
-
w-full sm:w-3/5 max-w-[calc(100%-4rem)] sm:max-w-xl
|
| 147 |
-
w-full sm:w-4/5 max-w-[calc(100%-4rem)] sm:max-w-md! "><div class="outline-none focus:ring-0 focus-visible:ring-0" tabindex="-1"><!----></div></dialog><!----> <dialog class="shadow-alternate z-40 mx-4 my-auto h-fit select-text overflow-hidden rounded-xl bg-white max-sm:max-w-[calc(100dvw-2rem)] sm:mx-auto
|
| 148 |
-
lg:mt-26 md:portrait:mt-30 xl:mt-30 2xl:mt-32
|
| 149 |
-
w-full lg:w-7/12 max-w-[calc(100%-4rem)] md:max-w-2xl
|
| 150 |
-
max-w-md! max-h-none! m-auto! max-md:max-w-[calc(100%-2rem)]! "><div class="outline-none focus:ring-0 focus-visible:ring-0" tabindex="-1"><!----></div></dialog><!----></div><!--]--><!--]--> <!--[-1--><!--]--><!----> <!--[-1--><!--]--><!----> <!--[0--><div class="SVELTE_HYDRATER contents" data-target="SSOBanner" data-props="{}"><!----></div><!--]--> <!--[-1--><!--]--><!----> <main class="flex flex-1 flex-col"><!--[--><!--[-1--><!--]--> <!--[-1--><!--]--> <!--[-1--><!--]--> <div class="SVELTE_HYDRATER contents" data-target="SpacePageInner" data-props="{"author":{"_id":"67e020ed33115c22afade1f8","avatarUrl":"/avatars/189a01133e93c528ec7ce3835dec068e.svg","fullname":"Eshit Saini","name":"Eshit","type":"user","isPro":false,"isHf":false,"isHfAdmin":false,"isMod":false,"isUserFollowing":false},"authLight":{"csrfToken":"eyJkYXRhIjp7ImV4cGlyYXRpb24iOjE3NzcyNjc1NTM0OTcsInVzZXJJZCI6IjY3ZTAyMGVkMzMxMTVjMjJhZmFkZTFmOCJ9LCJzaWduYXR1cmUiOiJhYzA2MmZjMTc4MWUxNjc0MGZjZWYyMGEzZmJiZmY1ZTcyNmE5Y2Y1OGJlMWM3ZTJjMzFmMTFjNTk0M2M3OTVjIn0=","hasHfLevelAccess":false,"u":{"avatarUrl":"/avatars/189a01133e93c528ec7ce3835dec068e.svg","isPro":false,"orgs":[],"user":"Eshit","canPostBlog":false,"canPostSocialPost":false,"isPaperAuthor":false,"canHaveBilling":true,"canCreateOrg":true,"theme":"light","notifications":{"org_suggestions":false},"hardwareItems":[],"hardwareItemsPrivate":false,"usage":{"storage":{"used":92696030,"usedPrivate":0,"usedPublic":92696030,"count":4,"summary":{"model":{"used":92214452,"usedPrivate":0,"usedPublic":92214452,"count":1},"space":{"used":481578,"usedPrivate":0,"usedPublic":481578,"count":3}},"lastMetronomeSentAt":"2026-04-26T02:09:11.191Z"},"inference":{"usedNanoUsd":0,"numRequests":0,"providerDetails":[],"periodEnd":"2026-04-30T23:59:59.999Z","periodStart":"2026-04-01T00:00:00.000Z","includedNanoUsd":100000000,"limitNanoUsd":100000000},"zeroGpu":{"base":210,"current":210,"overquota":{"billedSeconds":0}},"jobs":{"totalMinutes":0,"jobDetails":[],"usedMicroUsd":0,"periodStart":"2026-04-01T00:00:00.000Z","periodEnd":"2026-04-26T05:25:41.072Z"},"lastUpdatedAt":"2026-04-26T05:25:41.072Z","rateLimits":{"blockedPastWeek":0}},"welcomeLinks":[],"hasProOrOrgPaidPlan":false}},"canRestart":true,"canWrite":true,"csrf":"eyJkYXRhIjp7ImV4cGlyYXRpb24iOjE3NzcyNjc1NTM0OTcsInVzZXJJZCI6IjY3ZTAyMGVkMzMxMTVjMjJhZmFkZTFmOCJ9LCJzaWduYXR1cmUiOiJhYzA2MmZjMTc4MWUxNjc0MGZjZWYyMGEzZmJiZmY1ZTcyNmE5Y2Y1OGJlMWM3ZTJjMzFmMTFjNTk0M2M3OTVjIn0=","hideNFAA":false,"readmeTemplate":"---\ntitle: {{title}}\nemoji: {{emoji}}\ncolorFrom: {{colorFrom}}\ncolorTo: {{colorTo}}\nsdk: {{sdk}}\nsdk_version: \"{{sdkVersion}}\"\n{{#pythonVersion}}\npython_version: \"{{pythonVersion}}\"\n{{/pythonVersion}}\napp_file: app.py\npinned: false\n---\n\nCheck out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference\n","space":{"author":"Eshit","colorFrom":"gray","colorTo":"green","cardData":{"title":"Wildfire Grpo Training","emoji":"π»π³","colorFrom":"gray","colorTo":"green","sdk":"docker","pinned":false,"tags":["jupyterlab"],"suggested_storage":"small","license":"mit"},"createdAt":"2026-04-26T02:21:04.000Z","emoji":"π»π³","discussionsDisabled":false,"discussionsSorting":"recently-created","duplicationDisabled":false,"id":"Eshit/wildfire-grpo-training","isLikedByUser":false,"watched":{"isWatching":true,"isMuted":false,"mode":"global"},"lastModified":"2026-04-26T02:21:05.000Z","likes":0,"pinned":false,"private":true,"visibility":"private","gated":false,"repoType":"space","subdomain":"eshit-wildfire-grpo-training","sdk":"docker","title":"Wildfire Grpo Training","runtime":{"stage":"RUNNING_BUILDING","hardware":{"current":"a10g-large","requested":"a100-large"},"gcTimeout":3600,"replicas":{"current":1,"requested":1},"devMode":false,"domains":[{"domain":"eshit-wildfire-grpo-training.hf.space","stage":"READY"}],"sha":"3890d1112ecd4aebc0cb560000a634b6c44cbd8f"},"volumes":[],"iframe":{"embedSrc":"https://eshit-wildfire-grpo-training.hf.space","src":"https://eshit-wildfire-grpo-training.hf.space"},"secrets":[{"key":"JUPYTER_TOKEN","updatedAt":"2026-04-26T02:52:28.693Z"}],"variables":[],"sse":{"status":{"url":"https://huggingface.co/api/spaces/Eshit/wildfire-grpo-training/events"},"logs":{"build":"https://huggingface.co/api/spaces/Eshit/wildfire-grpo-training/logs/build","run":"https://huggingface.co/api/spaces/Eshit/wildfire-grpo-training/logs/run"},"liveMetrics":{"url":"https://huggingface.co/api/spaces/Eshit/wildfire-grpo-training/metrics"}},"dockerJwt":"eyJhbGciOiJFZERTQSJ9.eyJyZWFkIjp0cnVlLCJwZXJtaXNzaW9ucyI6eyJyZXBvLmNvbnRlbnQucmVhZCI6dHJ1ZX0sIm9uQmVoYWxmT2YiOnsia2luZCI6InVzZXIiLCJfaWQiOiI2N2UwMjBlZDMzMTE1YzIyYWZhZGUxZjgiLCJ1c2VyIjoiRXNoaXQiLCJzZXNzaW9uSWQiOiI2OWVkMWVjYTgxZjE3YTg3MmI1OTRhZjUifSwiaWF0IjoxNzc3MTgxMTUzLCJzdWIiOiIvc3BhY2VzL0VzaGl0L3dpbGRmaXJlLWdycG8tdHJhaW5pbmciLCJleHAiOjE3NzcyNjc1NTMsImlzcyI6Imh0dHBzOi8vaHVnZ2luZ2ZhY2UuY28ifQ.894MCyiab-ug0Y8lYAGb89diB_Yh6MZJu9d6L8xFcDgrMWiV3OSamuTGZB97OXO0kvpGARWBlJS5jptpjbuXBQ","linkedModels":[],"linkedDatasets":[],"linkedCollections":[],"sha":"3890d1112ecd4aebc0cb560000a634b6c44cbd8f","hasBlockedOids":false,"region":"us","tags":["docker","jupyterlab","region:us"]},"iframeSrc":"https://eshit-wildfire-grpo-training.hf.space/?__sign=eyJhbGciOiJFZERTQSJ9.eyJyZWFkIjp0cnVlLCJwZXJtaXNzaW9ucyI6eyJyZXBvLmNvbnRlbnQucmVhZCI6dHJ1ZX0sIm9uQmVoYWxmT2YiOnsia2luZCI6InVzZXIiLCJfaWQiOiI2N2UwMjBlZDMzMTE1YzIyYWZhZGUxZjgiLCJ1c2VyIjoiRXNoaXQiLCJzZXNzaW9uSWQiOiI2OWVkMWVjYTgxZjE3YTg3MmI1OTRhZjUifSwiaWF0IjoxNzc3MTgxMTUzLCJzdWIiOiIvc3BhY2VzL0VzaGl0L3dpbGRmaXJlLWdycG8tdHJhaW5pbmciLCJleHAiOjE3NzcyNjc1NTMsImlzcyI6Imh0dHBzOi8vaHVnZ2luZ2ZhY2UuY28ifQ.894MCyiab-ug0Y8lYAGb89diB_Yh6MZJu9d6L8xFcDgrMWiV3OSamuTGZB97OXO0kvpGARWBlJS5jptpjbuXBQ","showGettingStarted":false,"sessionUuid":"mw9FiokYJZllg0Jd7bcfn","jwt":{"token":"eyJhbGciOiJFZERTQSJ9.eyJyZWFkIjp0cnVlLCJwZXJtaXNzaW9ucyI6eyJyZXBvLmNvbnRlbnQucmVhZCI6dHJ1ZX0sIm9uQmVoYWxmT2YiOnsia2luZCI6InVzZXIiLCJfaWQiOiI2N2UwMjBlZDMzMTE1YzIyYWZhZGUxZjgiLCJ1c2VyIjoiRXNoaXQiLCJpc1BybyI6ZmFsc2UsImlzRW50ZXJwcmlzZU1lbWJlciI6ZmFsc2UsImNhblBheSI6dHJ1ZSwiYmlsbGluZ01vZGUiOiJwcmVwYWlkIiwic2Vzc2lvbklkIjoiNjllZDFlY2E4MWYxN2E4NzJiNTk0YWY1In0sImlhdCI6MTc3NzE4MTE1Mywic3ViIjoiL3NwYWNlcy9Fc2hpdC93aWxkZmlyZS1ncnBvLXRyYWluaW5nIiwiZXhwIjoxNzc3MTgxMzMzLCJpc3MiOiJodHRwczovL2h1Z2dpbmdmYWNlLmNvIn0.I7229wBLmbcEUAKaF0IkTO_8kjYmopMnDIlpUYrj7zAt142y4wdHfV8tRx-c_EsuIaNfWvWQZchvWFbJt0PbCA","encryptedToken":{"encrypted":"IziwMGKK2k3vFcQyF+tKbp5WBrJU7xV6PEhDoKNtJCO79HMT/gxxxz0eJtQWK7pzZeBeIBUofdH4jArX9yYiksXWUZ9mdNBzHFoEWk7bbps5lm4bk+sdT47QPm/465oMg9xm1sr3Yd9Dz5eqKPyxPgfyUtZuHvG+RqtnZnnX7Ull1ImFWgj85SnXfzGYYsG1cHoQ6UxcdPquw3qdRLiCtPhAZgeaZ33XqxE7aROBWHX95c34s92uaivsacxIvvBwcFOhdAdrL2vDcYHCj6OZL5ze1S2nBcz90Obn96xPPIq/iVtAW/A6sGjdQgC2MppMPDWVhgjaKehCMt0yeYdMLJpcu9F98J3NlO5TcxzPn96Om7nhy3LW0Z9zrmzpQes2mv0eaAewWl2v42ShSVuy8eTd0h+doM1Y0WTws4miZXS28tg+mq+hAGQkd7fyjAtICvxBTTk3/UzY72Q/8+o63k3sx1wD4gKUDtPmQXT6tC2J9M9mymy/0K2zxSJ4j7ITtzOpo5MRf1ZErQmlQ2rjDbtG2jDmcGl39dzxPLs5cNL3CrtB4zQ9mXuo1wSDi+oqjBLrUWeRESxyoqQBf/KhLEPsPcRzQEvD0s9Mm+XdsIdxIiKujSIBMDb3aekW4DT49ZXelQ79RpXYeEL8hkYKv/CkkhLUIwdkmokiUFODOBw=:wHz1e9rD3yozy7vq4d1M34RQVET257zXJTzm6RMVIVktH0VKft0/86le1Z4QKP6CeXElEgMIgoKuKkLNzIw0bV8Y0E7Mruv9Dqbsqm0gqet1y/a1jKwaRSj2Qe8d3260JtCIC3ZXBzuphsfe+7iM8rwrI015er2xl5l74WyRB5Sq6rDuGU5JFMUfQS/8zdX7ienhB1XSeJzPN4O7s7bSpETxYkXOusIf4rhrm3V60l0Kh7GkJeTYwBZbaVzkEAI8vm/3VvB6Y4KSr7KVJ+0ys/C/DOZylAigY3kNmTHPPQJVKKeCI+N3oxeYHDzuvMlw2Bj/tt8yGOWfDvoiTeGsXgAXOUydgQdhFhjUiNY2KzluYPZKQSkdt1qi43qhYzUHDuBm6T1WKzM+YsbzVErM7zFRcNBeWG7wYasXZPNQU2xl0RNAwllz7F0gK0ngwVjSYI8fh0pcXc0i6r/XcisQZqH+ZqJLCvou6e4ZxLG6zPX54Ao2+IJML4fENV8kEBvBXfhfroVEjJUNlH+R2SjD3nZMegw6WUpRkcOBvygCye2pGEIpfhto7tqUCfiZFJa5YE4JgXy00sH5BopDFKk4QxjnPE5ZTLl34GqVc+bfrbgX/BEkF5AfAmb9+0ltzf7G+1yEttfttW0kjnVWK/jbLY9jJ0Joa7vxx6geBd2cx/AVBTejmouDDgJ+Mq6VSuZmsbYGmHEt2Dl54QpFPeUP+ODC2ACEJ5xSDErGOXJapFUHiPUK/aqyto4tiuZb5T+sWwLkvoHN++1jcnQ=","keyId":"1717581985"},"expiration":180000},"plan":{"user":"free"}}"><!----><!----><!----><div class="spinner-overlay fixed inset-0 flex h-full w-full items-center justify-center overflow-y-auto bg-gray-500 text-white
|
| 151 |
-
opacity-80
|
| 152 |
-
hidden "><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" fill="none" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24" class="animate-spin -ml-1 mr-3 h-5 w-5 text-white"><circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle><path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path></svg><!----> <span>Refreshing</span></div> <!----> <iframe class="space-iframe outline-hidden grow bg-white p-0" scrolling="yes" sandbox="allow-downloads allow-forms allow-modals allow-pointer-lock allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts allow-storage-access-by-user-activation" src="./Wildfire Grpo Training - a Hugging Face Space by Eshit_files/saved_resource.html" aria-label="docker space app" allow="accelerometer; ambient-light-sensor; autoplay; battery; camera; clipboard-read; clipboard-write; web-share; display-capture; document-domain; encrypted-media; fullscreen; geolocation; gyroscope; layout-animations; legacy-image-formats; magnetometer; microphone; midi; oversized-images; payment; picture-in-picture; publickey-credentials-get; serial; sync-xhr; usb; vr ; wake-lock; xr-spatial-tracking" id="iFrameResizer0" style="overflow: auto;"></iframe><!----><!----> <!----><!----> <!----></div><!--]--></main> <!--[-1--><!--]--><!----></div><!--]-->
|
| 153 |
-
<script>
|
| 154 |
-
import("\/front\/build\/kube-6dce8ba\/index.js"); window.moonSha = "kube-6dce8ba\/"; window.__hf_deferred =
|
| 155 |
-
{};
|
| 156 |
-
</script>
|
| 157 |
-
<!-- Stripe -->
|
| 158 |
-
<script>
|
| 159 |
-
if (["hf.co", "huggingface.co"].includes(window.location.hostname)) {
|
| 160 |
-
const script = document.createElement("script");
|
| 161 |
-
script.src = "https://js.stripe.com/v3/";
|
| 162 |
-
script.async = true;
|
| 163 |
-
document.head.appendChild(script);
|
| 164 |
-
}
|
| 165 |
-
</script>
|
| 166 |
-
|
| 167 |
-
|
| 168 |
-
<iframe name="__privateStripeMetricsController6920" frameborder="0" allowtransparency="true" scrolling="no" role="presentation" allow="payment *" src="./Wildfire Grpo Training - a Hugging Face Space by Eshit_files/m-outer-3437aaddcdf6922d623e172c2d6f9278.html" aria-hidden="true" tabindex="-1" style="border-width: medium !important; border-style: none !important; border-color: currentcolor !important; border-image: initial !important; margin: 0px !important; padding: 0px !important; width: 1px !important; min-width: 100% !important; overflow: hidden !important; display: block !important; visibility: hidden !important; position: fixed !important; height: 1px !important; pointer-events: none !important; user-select: none !important;"></iframe></body></html>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
data/Wildfire Grpo Training - a Hugging Face Space by Eshit_files/189a01133e93c528ec7ce3835dec068e.svg
DELETED
data/Wildfire Grpo Training - a Hugging Face Space by Eshit_files/challenge.js.download
DELETED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/Wildfire Grpo Training - a Hugging Face Space by Eshit_files/css2
DELETED
|
@@ -1,630 +0,0 @@
|
|
| 1 |
-
/* cyrillic-ext */
|
| 2 |
-
@font-face {
|
| 3 |
-
font-family: 'Source Sans Pro';
|
| 4 |
-
font-style: italic;
|
| 5 |
-
font-weight: 200;
|
| 6 |
-
font-display: swap;
|
| 7 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZYokSdh18Smxg.woff2) format('woff2');
|
| 8 |
-
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
| 9 |
-
}
|
| 10 |
-
/* cyrillic */
|
| 11 |
-
@font-face {
|
| 12 |
-
font-family: 'Source Sans Pro';
|
| 13 |
-
font-style: italic;
|
| 14 |
-
font-weight: 200;
|
| 15 |
-
font-display: swap;
|
| 16 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZYokSdo18Smxg.woff2) format('woff2');
|
| 17 |
-
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
| 18 |
-
}
|
| 19 |
-
/* greek-ext */
|
| 20 |
-
@font-face {
|
| 21 |
-
font-family: 'Source Sans Pro';
|
| 22 |
-
font-style: italic;
|
| 23 |
-
font-weight: 200;
|
| 24 |
-
font-display: swap;
|
| 25 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZYokSdg18Smxg.woff2) format('woff2');
|
| 26 |
-
unicode-range: U+1F00-1FFF;
|
| 27 |
-
}
|
| 28 |
-
/* greek */
|
| 29 |
-
@font-face {
|
| 30 |
-
font-family: 'Source Sans Pro';
|
| 31 |
-
font-style: italic;
|
| 32 |
-
font-weight: 200;
|
| 33 |
-
font-display: swap;
|
| 34 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZYokSdv18Smxg.woff2) format('woff2');
|
| 35 |
-
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
|
| 36 |
-
}
|
| 37 |
-
/* vietnamese */
|
| 38 |
-
@font-face {
|
| 39 |
-
font-family: 'Source Sans Pro';
|
| 40 |
-
font-style: italic;
|
| 41 |
-
font-weight: 200;
|
| 42 |
-
font-display: swap;
|
| 43 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZYokSdj18Smxg.woff2) format('woff2');
|
| 44 |
-
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
| 45 |
-
}
|
| 46 |
-
/* latin-ext */
|
| 47 |
-
@font-face {
|
| 48 |
-
font-family: 'Source Sans Pro';
|
| 49 |
-
font-style: italic;
|
| 50 |
-
font-weight: 200;
|
| 51 |
-
font-display: swap;
|
| 52 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZYokSdi18Smxg.woff2) format('woff2');
|
| 53 |
-
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
| 54 |
-
}
|
| 55 |
-
/* latin */
|
| 56 |
-
@font-face {
|
| 57 |
-
font-family: 'Source Sans Pro';
|
| 58 |
-
font-style: italic;
|
| 59 |
-
font-weight: 200;
|
| 60 |
-
font-display: swap;
|
| 61 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZYokSds18Q.woff2) format('woff2');
|
| 62 |
-
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
| 63 |
-
}
|
| 64 |
-
/* cyrillic-ext */
|
| 65 |
-
@font-face {
|
| 66 |
-
font-family: 'Source Sans Pro';
|
| 67 |
-
font-style: italic;
|
| 68 |
-
font-weight: 300;
|
| 69 |
-
font-display: swap;
|
| 70 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidh18Smxg.woff2) format('woff2');
|
| 71 |
-
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
| 72 |
-
}
|
| 73 |
-
/* cyrillic */
|
| 74 |
-
@font-face {
|
| 75 |
-
font-family: 'Source Sans Pro';
|
| 76 |
-
font-style: italic;
|
| 77 |
-
font-weight: 300;
|
| 78 |
-
font-display: swap;
|
| 79 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkido18Smxg.woff2) format('woff2');
|
| 80 |
-
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
| 81 |
-
}
|
| 82 |
-
/* greek-ext */
|
| 83 |
-
@font-face {
|
| 84 |
-
font-family: 'Source Sans Pro';
|
| 85 |
-
font-style: italic;
|
| 86 |
-
font-weight: 300;
|
| 87 |
-
font-display: swap;
|
| 88 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidg18Smxg.woff2) format('woff2');
|
| 89 |
-
unicode-range: U+1F00-1FFF;
|
| 90 |
-
}
|
| 91 |
-
/* greek */
|
| 92 |
-
@font-face {
|
| 93 |
-
font-family: 'Source Sans Pro';
|
| 94 |
-
font-style: italic;
|
| 95 |
-
font-weight: 300;
|
| 96 |
-
font-display: swap;
|
| 97 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidv18Smxg.woff2) format('woff2');
|
| 98 |
-
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
|
| 99 |
-
}
|
| 100 |
-
/* vietnamese */
|
| 101 |
-
@font-face {
|
| 102 |
-
font-family: 'Source Sans Pro';
|
| 103 |
-
font-style: italic;
|
| 104 |
-
font-weight: 300;
|
| 105 |
-
font-display: swap;
|
| 106 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidj18Smxg.woff2) format('woff2');
|
| 107 |
-
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
| 108 |
-
}
|
| 109 |
-
/* latin-ext */
|
| 110 |
-
@font-face {
|
| 111 |
-
font-family: 'Source Sans Pro';
|
| 112 |
-
font-style: italic;
|
| 113 |
-
font-weight: 300;
|
| 114 |
-
font-display: swap;
|
| 115 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkidi18Smxg.woff2) format('woff2');
|
| 116 |
-
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
| 117 |
-
}
|
| 118 |
-
/* latin */
|
| 119 |
-
@font-face {
|
| 120 |
-
font-family: 'Source Sans Pro';
|
| 121 |
-
font-style: italic;
|
| 122 |
-
font-weight: 300;
|
| 123 |
-
font-display: swap;
|
| 124 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkids18Q.woff2) format('woff2');
|
| 125 |
-
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
| 126 |
-
}
|
| 127 |
-
/* cyrillic-ext */
|
| 128 |
-
@font-face {
|
| 129 |
-
font-family: 'Source Sans Pro';
|
| 130 |
-
font-style: italic;
|
| 131 |
-
font-weight: 400;
|
| 132 |
-
font-display: swap;
|
| 133 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7qsDJT9g.woff2) format('woff2');
|
| 134 |
-
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
| 135 |
-
}
|
| 136 |
-
/* cyrillic */
|
| 137 |
-
@font-face {
|
| 138 |
-
font-family: 'Source Sans Pro';
|
| 139 |
-
font-style: italic;
|
| 140 |
-
font-weight: 400;
|
| 141 |
-
font-display: swap;
|
| 142 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7jsDJT9g.woff2) format('woff2');
|
| 143 |
-
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
| 144 |
-
}
|
| 145 |
-
/* greek-ext */
|
| 146 |
-
@font-face {
|
| 147 |
-
font-family: 'Source Sans Pro';
|
| 148 |
-
font-style: italic;
|
| 149 |
-
font-weight: 400;
|
| 150 |
-
font-display: swap;
|
| 151 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7rsDJT9g.woff2) format('woff2');
|
| 152 |
-
unicode-range: U+1F00-1FFF;
|
| 153 |
-
}
|
| 154 |
-
/* greek */
|
| 155 |
-
@font-face {
|
| 156 |
-
font-family: 'Source Sans Pro';
|
| 157 |
-
font-style: italic;
|
| 158 |
-
font-weight: 400;
|
| 159 |
-
font-display: swap;
|
| 160 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7ksDJT9g.woff2) format('woff2');
|
| 161 |
-
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
|
| 162 |
-
}
|
| 163 |
-
/* vietnamese */
|
| 164 |
-
@font-face {
|
| 165 |
-
font-family: 'Source Sans Pro';
|
| 166 |
-
font-style: italic;
|
| 167 |
-
font-weight: 400;
|
| 168 |
-
font-display: swap;
|
| 169 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7osDJT9g.woff2) format('woff2');
|
| 170 |
-
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
| 171 |
-
}
|
| 172 |
-
/* latin-ext */
|
| 173 |
-
@font-face {
|
| 174 |
-
font-family: 'Source Sans Pro';
|
| 175 |
-
font-style: italic;
|
| 176 |
-
font-weight: 400;
|
| 177 |
-
font-display: swap;
|
| 178 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7psDJT9g.woff2) format('woff2');
|
| 179 |
-
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
| 180 |
-
}
|
| 181 |
-
/* latin */
|
| 182 |
-
@font-face {
|
| 183 |
-
font-family: 'Source Sans Pro';
|
| 184 |
-
font-style: italic;
|
| 185 |
-
font-weight: 400;
|
| 186 |
-
font-display: swap;
|
| 187 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDI.woff2) format('woff2');
|
| 188 |
-
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
| 189 |
-
}
|
| 190 |
-
/* cyrillic-ext */
|
| 191 |
-
@font-face {
|
| 192 |
-
font-family: 'Source Sans Pro';
|
| 193 |
-
font-style: italic;
|
| 194 |
-
font-weight: 600;
|
| 195 |
-
font-display: swap;
|
| 196 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCdh18Smxg.woff2) format('woff2');
|
| 197 |
-
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
| 198 |
-
}
|
| 199 |
-
/* cyrillic */
|
| 200 |
-
@font-face {
|
| 201 |
-
font-family: 'Source Sans Pro';
|
| 202 |
-
font-style: italic;
|
| 203 |
-
font-weight: 600;
|
| 204 |
-
font-display: swap;
|
| 205 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCdo18Smxg.woff2) format('woff2');
|
| 206 |
-
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
| 207 |
-
}
|
| 208 |
-
/* greek-ext */
|
| 209 |
-
@font-face {
|
| 210 |
-
font-family: 'Source Sans Pro';
|
| 211 |
-
font-style: italic;
|
| 212 |
-
font-weight: 600;
|
| 213 |
-
font-display: swap;
|
| 214 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCdg18Smxg.woff2) format('woff2');
|
| 215 |
-
unicode-range: U+1F00-1FFF;
|
| 216 |
-
}
|
| 217 |
-
/* greek */
|
| 218 |
-
@font-face {
|
| 219 |
-
font-family: 'Source Sans Pro';
|
| 220 |
-
font-style: italic;
|
| 221 |
-
font-weight: 600;
|
| 222 |
-
font-display: swap;
|
| 223 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCdv18Smxg.woff2) format('woff2');
|
| 224 |
-
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
|
| 225 |
-
}
|
| 226 |
-
/* vietnamese */
|
| 227 |
-
@font-face {
|
| 228 |
-
font-family: 'Source Sans Pro';
|
| 229 |
-
font-style: italic;
|
| 230 |
-
font-weight: 600;
|
| 231 |
-
font-display: swap;
|
| 232 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCdj18Smxg.woff2) format('woff2');
|
| 233 |
-
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
| 234 |
-
}
|
| 235 |
-
/* latin-ext */
|
| 236 |
-
@font-face {
|
| 237 |
-
font-family: 'Source Sans Pro';
|
| 238 |
-
font-style: italic;
|
| 239 |
-
font-weight: 600;
|
| 240 |
-
font-display: swap;
|
| 241 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCdi18Smxg.woff2) format('woff2');
|
| 242 |
-
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
| 243 |
-
}
|
| 244 |
-
/* latin */
|
| 245 |
-
@font-face {
|
| 246 |
-
font-family: 'Source Sans Pro';
|
| 247 |
-
font-style: italic;
|
| 248 |
-
font-weight: 600;
|
| 249 |
-
font-display: swap;
|
| 250 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lCds18Q.woff2) format('woff2');
|
| 251 |
-
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
| 252 |
-
}
|
| 253 |
-
/* cyrillic-ext */
|
| 254 |
-
@font-face {
|
| 255 |
-
font-family: 'Source Sans Pro';
|
| 256 |
-
font-style: italic;
|
| 257 |
-
font-weight: 700;
|
| 258 |
-
font-display: swap;
|
| 259 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdh18Smxg.woff2) format('woff2');
|
| 260 |
-
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
| 261 |
-
}
|
| 262 |
-
/* cyrillic */
|
| 263 |
-
@font-face {
|
| 264 |
-
font-family: 'Source Sans Pro';
|
| 265 |
-
font-style: italic;
|
| 266 |
-
font-weight: 700;
|
| 267 |
-
font-display: swap;
|
| 268 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdo18Smxg.woff2) format('woff2');
|
| 269 |
-
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
| 270 |
-
}
|
| 271 |
-
/* greek-ext */
|
| 272 |
-
@font-face {
|
| 273 |
-
font-family: 'Source Sans Pro';
|
| 274 |
-
font-style: italic;
|
| 275 |
-
font-weight: 700;
|
| 276 |
-
font-display: swap;
|
| 277 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdg18Smxg.woff2) format('woff2');
|
| 278 |
-
unicode-range: U+1F00-1FFF;
|
| 279 |
-
}
|
| 280 |
-
/* greek */
|
| 281 |
-
@font-face {
|
| 282 |
-
font-family: 'Source Sans Pro';
|
| 283 |
-
font-style: italic;
|
| 284 |
-
font-weight: 700;
|
| 285 |
-
font-display: swap;
|
| 286 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdv18Smxg.woff2) format('woff2');
|
| 287 |
-
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
|
| 288 |
-
}
|
| 289 |
-
/* vietnamese */
|
| 290 |
-
@font-face {
|
| 291 |
-
font-family: 'Source Sans Pro';
|
| 292 |
-
font-style: italic;
|
| 293 |
-
font-weight: 700;
|
| 294 |
-
font-display: swap;
|
| 295 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdj18Smxg.woff2) format('woff2');
|
| 296 |
-
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
| 297 |
-
}
|
| 298 |
-
/* latin-ext */
|
| 299 |
-
@font-face {
|
| 300 |
-
font-family: 'Source Sans Pro';
|
| 301 |
-
font-style: italic;
|
| 302 |
-
font-weight: 700;
|
| 303 |
-
font-display: swap;
|
| 304 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSdi18Smxg.woff2) format('woff2');
|
| 305 |
-
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
| 306 |
-
}
|
| 307 |
-
/* latin */
|
| 308 |
-
@font-face {
|
| 309 |
-
font-family: 'Source Sans Pro';
|
| 310 |
-
font-style: italic;
|
| 311 |
-
font-weight: 700;
|
| 312 |
-
font-display: swap;
|
| 313 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclSds18Q.woff2) format('woff2');
|
| 314 |
-
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
| 315 |
-
}
|
| 316 |
-
/* cyrillic-ext */
|
| 317 |
-
@font-face {
|
| 318 |
-
font-family: 'Source Sans Pro';
|
| 319 |
-
font-style: normal;
|
| 320 |
-
font-weight: 200;
|
| 321 |
-
font-display: swap;
|
| 322 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_wmhduz8A.woff2) format('woff2');
|
| 323 |
-
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
| 324 |
-
}
|
| 325 |
-
/* cyrillic */
|
| 326 |
-
@font-face {
|
| 327 |
-
font-family: 'Source Sans Pro';
|
| 328 |
-
font-style: normal;
|
| 329 |
-
font-weight: 200;
|
| 330 |
-
font-display: swap;
|
| 331 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_wkxduz8A.woff2) format('woff2');
|
| 332 |
-
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
| 333 |
-
}
|
| 334 |
-
/* greek-ext */
|
| 335 |
-
@font-face {
|
| 336 |
-
font-family: 'Source Sans Pro';
|
| 337 |
-
font-style: normal;
|
| 338 |
-
font-weight: 200;
|
| 339 |
-
font-display: swap;
|
| 340 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_wmxduz8A.woff2) format('woff2');
|
| 341 |
-
unicode-range: U+1F00-1FFF;
|
| 342 |
-
}
|
| 343 |
-
/* greek */
|
| 344 |
-
@font-face {
|
| 345 |
-
font-family: 'Source Sans Pro';
|
| 346 |
-
font-style: normal;
|
| 347 |
-
font-weight: 200;
|
| 348 |
-
font-display: swap;
|
| 349 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_wlBduz8A.woff2) format('woff2');
|
| 350 |
-
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
|
| 351 |
-
}
|
| 352 |
-
/* vietnamese */
|
| 353 |
-
@font-face {
|
| 354 |
-
font-family: 'Source Sans Pro';
|
| 355 |
-
font-style: normal;
|
| 356 |
-
font-weight: 200;
|
| 357 |
-
font-display: swap;
|
| 358 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_wmBduz8A.woff2) format('woff2');
|
| 359 |
-
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
| 360 |
-
}
|
| 361 |
-
/* latin-ext */
|
| 362 |
-
@font-face {
|
| 363 |
-
font-family: 'Source Sans Pro';
|
| 364 |
-
font-style: normal;
|
| 365 |
-
font-weight: 200;
|
| 366 |
-
font-display: swap;
|
| 367 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_wmRduz8A.woff2) format('woff2');
|
| 368 |
-
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
| 369 |
-
}
|
| 370 |
-
/* latin */
|
| 371 |
-
@font-face {
|
| 372 |
-
font-family: 'Source Sans Pro';
|
| 373 |
-
font-style: normal;
|
| 374 |
-
font-weight: 200;
|
| 375 |
-
font-display: swap;
|
| 376 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_wlxdu.woff2) format('woff2');
|
| 377 |
-
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
| 378 |
-
}
|
| 379 |
-
/* cyrillic-ext */
|
| 380 |
-
@font-face {
|
| 381 |
-
font-family: 'Source Sans Pro';
|
| 382 |
-
font-style: normal;
|
| 383 |
-
font-weight: 300;
|
| 384 |
-
font-display: swap;
|
| 385 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmhduz8A.woff2) format('woff2');
|
| 386 |
-
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
| 387 |
-
}
|
| 388 |
-
/* cyrillic */
|
| 389 |
-
@font-face {
|
| 390 |
-
font-family: 'Source Sans Pro';
|
| 391 |
-
font-style: normal;
|
| 392 |
-
font-weight: 300;
|
| 393 |
-
font-display: swap;
|
| 394 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwkxduz8A.woff2) format('woff2');
|
| 395 |
-
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
| 396 |
-
}
|
| 397 |
-
/* greek-ext */
|
| 398 |
-
@font-face {
|
| 399 |
-
font-family: 'Source Sans Pro';
|
| 400 |
-
font-style: normal;
|
| 401 |
-
font-weight: 300;
|
| 402 |
-
font-display: swap;
|
| 403 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmxduz8A.woff2) format('woff2');
|
| 404 |
-
unicode-range: U+1F00-1FFF;
|
| 405 |
-
}
|
| 406 |
-
/* greek */
|
| 407 |
-
@font-face {
|
| 408 |
-
font-family: 'Source Sans Pro';
|
| 409 |
-
font-style: normal;
|
| 410 |
-
font-weight: 300;
|
| 411 |
-
font-display: swap;
|
| 412 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlBduz8A.woff2) format('woff2');
|
| 413 |
-
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
|
| 414 |
-
}
|
| 415 |
-
/* vietnamese */
|
| 416 |
-
@font-face {
|
| 417 |
-
font-family: 'Source Sans Pro';
|
| 418 |
-
font-style: normal;
|
| 419 |
-
font-weight: 300;
|
| 420 |
-
font-display: swap;
|
| 421 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmBduz8A.woff2) format('woff2');
|
| 422 |
-
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
| 423 |
-
}
|
| 424 |
-
/* latin-ext */
|
| 425 |
-
@font-face {
|
| 426 |
-
font-family: 'Source Sans Pro';
|
| 427 |
-
font-style: normal;
|
| 428 |
-
font-weight: 300;
|
| 429 |
-
font-display: swap;
|
| 430 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwmRduz8A.woff2) format('woff2');
|
| 431 |
-
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
| 432 |
-
}
|
| 433 |
-
/* latin */
|
| 434 |
-
@font-face {
|
| 435 |
-
font-family: 'Source Sans Pro';
|
| 436 |
-
font-style: normal;
|
| 437 |
-
font-weight: 300;
|
| 438 |
-
font-display: swap;
|
| 439 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdu.woff2) format('woff2');
|
| 440 |
-
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
| 441 |
-
}
|
| 442 |
-
/* cyrillic-ext */
|
| 443 |
-
@font-face {
|
| 444 |
-
font-family: 'Source Sans Pro';
|
| 445 |
-
font-style: normal;
|
| 446 |
-
font-weight: 400;
|
| 447 |
-
font-display: swap;
|
| 448 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNa7lqDY.woff2) format('woff2');
|
| 449 |
-
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
| 450 |
-
}
|
| 451 |
-
/* cyrillic */
|
| 452 |
-
@font-face {
|
| 453 |
-
font-family: 'Source Sans Pro';
|
| 454 |
-
font-style: normal;
|
| 455 |
-
font-weight: 400;
|
| 456 |
-
font-display: swap;
|
| 457 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qPK7lqDY.woff2) format('woff2');
|
| 458 |
-
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
| 459 |
-
}
|
| 460 |
-
/* greek-ext */
|
| 461 |
-
@font-face {
|
| 462 |
-
font-family: 'Source Sans Pro';
|
| 463 |
-
font-style: normal;
|
| 464 |
-
font-weight: 400;
|
| 465 |
-
font-display: swap;
|
| 466 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNK7lqDY.woff2) format('woff2');
|
| 467 |
-
unicode-range: U+1F00-1FFF;
|
| 468 |
-
}
|
| 469 |
-
/* greek */
|
| 470 |
-
@font-face {
|
| 471 |
-
font-family: 'Source Sans Pro';
|
| 472 |
-
font-style: normal;
|
| 473 |
-
font-weight: 400;
|
| 474 |
-
font-display: swap;
|
| 475 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qO67lqDY.woff2) format('woff2');
|
| 476 |
-
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
|
| 477 |
-
}
|
| 478 |
-
/* vietnamese */
|
| 479 |
-
@font-face {
|
| 480 |
-
font-family: 'Source Sans Pro';
|
| 481 |
-
font-style: normal;
|
| 482 |
-
font-weight: 400;
|
| 483 |
-
font-display: swap;
|
| 484 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qN67lqDY.woff2) format('woff2');
|
| 485 |
-
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
| 486 |
-
}
|
| 487 |
-
/* latin-ext */
|
| 488 |
-
@font-face {
|
| 489 |
-
font-family: 'Source Sans Pro';
|
| 490 |
-
font-style: normal;
|
| 491 |
-
font-weight: 400;
|
| 492 |
-
font-display: swap;
|
| 493 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNq7lqDY.woff2) format('woff2');
|
| 494 |
-
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
| 495 |
-
}
|
| 496 |
-
/* latin */
|
| 497 |
-
@font-face {
|
| 498 |
-
font-family: 'Source Sans Pro';
|
| 499 |
-
font-style: normal;
|
| 500 |
-
font-weight: 400;
|
| 501 |
-
font-display: swap;
|
| 502 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7l.woff2) format('woff2');
|
| 503 |
-
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
| 504 |
-
}
|
| 505 |
-
/* cyrillic-ext */
|
| 506 |
-
@font-face {
|
| 507 |
-
font-family: 'Source Sans Pro';
|
| 508 |
-
font-style: normal;
|
| 509 |
-
font-weight: 600;
|
| 510 |
-
font-display: swap;
|
| 511 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmhduz8A.woff2) format('woff2');
|
| 512 |
-
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
| 513 |
-
}
|
| 514 |
-
/* cyrillic */
|
| 515 |
-
@font-face {
|
| 516 |
-
font-family: 'Source Sans Pro';
|
| 517 |
-
font-style: normal;
|
| 518 |
-
font-weight: 600;
|
| 519 |
-
font-display: swap;
|
| 520 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwkxduz8A.woff2) format('woff2');
|
| 521 |
-
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
| 522 |
-
}
|
| 523 |
-
/* greek-ext */
|
| 524 |
-
@font-face {
|
| 525 |
-
font-family: 'Source Sans Pro';
|
| 526 |
-
font-style: normal;
|
| 527 |
-
font-weight: 600;
|
| 528 |
-
font-display: swap;
|
| 529 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmxduz8A.woff2) format('woff2');
|
| 530 |
-
unicode-range: U+1F00-1FFF;
|
| 531 |
-
}
|
| 532 |
-
/* greek */
|
| 533 |
-
@font-face {
|
| 534 |
-
font-family: 'Source Sans Pro';
|
| 535 |
-
font-style: normal;
|
| 536 |
-
font-weight: 600;
|
| 537 |
-
font-display: swap;
|
| 538 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlBduz8A.woff2) format('woff2');
|
| 539 |
-
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
|
| 540 |
-
}
|
| 541 |
-
/* vietnamese */
|
| 542 |
-
@font-face {
|
| 543 |
-
font-family: 'Source Sans Pro';
|
| 544 |
-
font-style: normal;
|
| 545 |
-
font-weight: 600;
|
| 546 |
-
font-display: swap;
|
| 547 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmBduz8A.woff2) format('woff2');
|
| 548 |
-
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
| 549 |
-
}
|
| 550 |
-
/* latin-ext */
|
| 551 |
-
@font-face {
|
| 552 |
-
font-family: 'Source Sans Pro';
|
| 553 |
-
font-style: normal;
|
| 554 |
-
font-weight: 600;
|
| 555 |
-
font-display: swap;
|
| 556 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwmRduz8A.woff2) format('woff2');
|
| 557 |
-
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
| 558 |
-
}
|
| 559 |
-
/* latin */
|
| 560 |
-
@font-face {
|
| 561 |
-
font-family: 'Source Sans Pro';
|
| 562 |
-
font-style: normal;
|
| 563 |
-
font-weight: 600;
|
| 564 |
-
font-display: swap;
|
| 565 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdu.woff2) format('woff2');
|
| 566 |
-
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
| 567 |
-
}
|
| 568 |
-
/* cyrillic-ext */
|
| 569 |
-
@font-face {
|
| 570 |
-
font-family: 'Source Sans Pro';
|
| 571 |
-
font-style: normal;
|
| 572 |
-
font-weight: 700;
|
| 573 |
-
font-display: swap;
|
| 574 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmhduz8A.woff2) format('woff2');
|
| 575 |
-
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
| 576 |
-
}
|
| 577 |
-
/* cyrillic */
|
| 578 |
-
@font-face {
|
| 579 |
-
font-family: 'Source Sans Pro';
|
| 580 |
-
font-style: normal;
|
| 581 |
-
font-weight: 700;
|
| 582 |
-
font-display: swap;
|
| 583 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwkxduz8A.woff2) format('woff2');
|
| 584 |
-
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
| 585 |
-
}
|
| 586 |
-
/* greek-ext */
|
| 587 |
-
@font-face {
|
| 588 |
-
font-family: 'Source Sans Pro';
|
| 589 |
-
font-style: normal;
|
| 590 |
-
font-weight: 700;
|
| 591 |
-
font-display: swap;
|
| 592 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmxduz8A.woff2) format('woff2');
|
| 593 |
-
unicode-range: U+1F00-1FFF;
|
| 594 |
-
}
|
| 595 |
-
/* greek */
|
| 596 |
-
@font-face {
|
| 597 |
-
font-family: 'Source Sans Pro';
|
| 598 |
-
font-style: normal;
|
| 599 |
-
font-weight: 700;
|
| 600 |
-
font-display: swap;
|
| 601 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlBduz8A.woff2) format('woff2');
|
| 602 |
-
unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
|
| 603 |
-
}
|
| 604 |
-
/* vietnamese */
|
| 605 |
-
@font-face {
|
| 606 |
-
font-family: 'Source Sans Pro';
|
| 607 |
-
font-style: normal;
|
| 608 |
-
font-weight: 700;
|
| 609 |
-
font-display: swap;
|
| 610 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmBduz8A.woff2) format('woff2');
|
| 611 |
-
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
| 612 |
-
}
|
| 613 |
-
/* latin-ext */
|
| 614 |
-
@font-face {
|
| 615 |
-
font-family: 'Source Sans Pro';
|
| 616 |
-
font-style: normal;
|
| 617 |
-
font-weight: 700;
|
| 618 |
-
font-display: swap;
|
| 619 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwmRduz8A.woff2) format('woff2');
|
| 620 |
-
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
| 621 |
-
}
|
| 622 |
-
/* latin */
|
| 623 |
-
@font-face {
|
| 624 |
-
font-family: 'Source Sans Pro';
|
| 625 |
-
font-style: normal;
|
| 626 |
-
font-weight: 700;
|
| 627 |
-
font-display: swap;
|
| 628 |
-
src: url(https://fonts.gstatic.com/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdu.woff2) format('woff2');
|
| 629 |
-
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
| 630 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
data/Wildfire Grpo Training - a Hugging Face Space by Eshit_files/css2(1)
DELETED
|
@@ -1,135 +0,0 @@
|
|
| 1 |
-
/* cyrillic-ext */
|
| 2 |
-
@font-face {
|
| 3 |
-
font-family: 'IBM Plex Mono';
|
| 4 |
-
font-style: normal;
|
| 5 |
-
font-weight: 400;
|
| 6 |
-
font-display: swap;
|
| 7 |
-
src: url(https://fonts.gstatic.com/s/ibmplexmono/v20/-F63fjptAgt5VM-kVkqdyU8n1iIq129k.woff2) format('woff2');
|
| 8 |
-
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
| 9 |
-
}
|
| 10 |
-
/* cyrillic */
|
| 11 |
-
@font-face {
|
| 12 |
-
font-family: 'IBM Plex Mono';
|
| 13 |
-
font-style: normal;
|
| 14 |
-
font-weight: 400;
|
| 15 |
-
font-display: swap;
|
| 16 |
-
src: url(https://fonts.gstatic.com/s/ibmplexmono/v20/-F63fjptAgt5VM-kVkqdyU8n1isq129k.woff2) format('woff2');
|
| 17 |
-
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
| 18 |
-
}
|
| 19 |
-
/* vietnamese */
|
| 20 |
-
@font-face {
|
| 21 |
-
font-family: 'IBM Plex Mono';
|
| 22 |
-
font-style: normal;
|
| 23 |
-
font-weight: 400;
|
| 24 |
-
font-display: swap;
|
| 25 |
-
src: url(https://fonts.gstatic.com/s/ibmplexmono/v20/-F63fjptAgt5VM-kVkqdyU8n1iAq129k.woff2) format('woff2');
|
| 26 |
-
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
| 27 |
-
}
|
| 28 |
-
/* latin-ext */
|
| 29 |
-
@font-face {
|
| 30 |
-
font-family: 'IBM Plex Mono';
|
| 31 |
-
font-style: normal;
|
| 32 |
-
font-weight: 400;
|
| 33 |
-
font-display: swap;
|
| 34 |
-
src: url(https://fonts.gstatic.com/s/ibmplexmono/v20/-F63fjptAgt5VM-kVkqdyU8n1iEq129k.woff2) format('woff2');
|
| 35 |
-
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
| 36 |
-
}
|
| 37 |
-
/* latin */
|
| 38 |
-
@font-face {
|
| 39 |
-
font-family: 'IBM Plex Mono';
|
| 40 |
-
font-style: normal;
|
| 41 |
-
font-weight: 400;
|
| 42 |
-
font-display: swap;
|
| 43 |
-
src: url(https://fonts.gstatic.com/s/ibmplexmono/v20/-F63fjptAgt5VM-kVkqdyU8n1i8q1w.woff2) format('woff2');
|
| 44 |
-
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
| 45 |
-
}
|
| 46 |
-
/* cyrillic-ext */
|
| 47 |
-
@font-face {
|
| 48 |
-
font-family: 'IBM Plex Mono';
|
| 49 |
-
font-style: normal;
|
| 50 |
-
font-weight: 600;
|
| 51 |
-
font-display: swap;
|
| 52 |
-
src: url(https://fonts.gstatic.com/s/ibmplexmono/v20/-F6qfjptAgt5VM-kVkqdyU8n3vAOwl1FgtIU.woff2) format('woff2');
|
| 53 |
-
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
| 54 |
-
}
|
| 55 |
-
/* cyrillic */
|
| 56 |
-
@font-face {
|
| 57 |
-
font-family: 'IBM Plex Mono';
|
| 58 |
-
font-style: normal;
|
| 59 |
-
font-weight: 600;
|
| 60 |
-
font-display: swap;
|
| 61 |
-
src: url(https://fonts.gstatic.com/s/ibmplexmono/v20/-F6qfjptAgt5VM-kVkqdyU8n3vAOwlRFgtIU.woff2) format('woff2');
|
| 62 |
-
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
| 63 |
-
}
|
| 64 |
-
/* vietnamese */
|
| 65 |
-
@font-face {
|
| 66 |
-
font-family: 'IBM Plex Mono';
|
| 67 |
-
font-style: normal;
|
| 68 |
-
font-weight: 600;
|
| 69 |
-
font-display: swap;
|
| 70 |
-
src: url(https://fonts.gstatic.com/s/ibmplexmono/v20/-F6qfjptAgt5VM-kVkqdyU8n3vAOwl9FgtIU.woff2) format('woff2');
|
| 71 |
-
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
| 72 |
-
}
|
| 73 |
-
/* latin-ext */
|
| 74 |
-
@font-face {
|
| 75 |
-
font-family: 'IBM Plex Mono';
|
| 76 |
-
font-style: normal;
|
| 77 |
-
font-weight: 600;
|
| 78 |
-
font-display: swap;
|
| 79 |
-
src: url(https://fonts.gstatic.com/s/ibmplexmono/v20/-F6qfjptAgt5VM-kVkqdyU8n3vAOwl5FgtIU.woff2) format('woff2');
|
| 80 |
-
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
| 81 |
-
}
|
| 82 |
-
/* latin */
|
| 83 |
-
@font-face {
|
| 84 |
-
font-family: 'IBM Plex Mono';
|
| 85 |
-
font-style: normal;
|
| 86 |
-
font-weight: 600;
|
| 87 |
-
font-display: swap;
|
| 88 |
-
src: url(https://fonts.gstatic.com/s/ibmplexmono/v20/-F6qfjptAgt5VM-kVkqdyU8n3vAOwlBFgg.woff2) format('woff2');
|
| 89 |
-
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
| 90 |
-
}
|
| 91 |
-
/* cyrillic-ext */
|
| 92 |
-
@font-face {
|
| 93 |
-
font-family: 'IBM Plex Mono';
|
| 94 |
-
font-style: normal;
|
| 95 |
-
font-weight: 700;
|
| 96 |
-
font-display: swap;
|
| 97 |
-
src: url(https://fonts.gstatic.com/s/ibmplexmono/v20/-F6qfjptAgt5VM-kVkqdyU8n3pQPwl1FgtIU.woff2) format('woff2');
|
| 98 |
-
unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
| 99 |
-
}
|
| 100 |
-
/* cyrillic */
|
| 101 |
-
@font-face {
|
| 102 |
-
font-family: 'IBM Plex Mono';
|
| 103 |
-
font-style: normal;
|
| 104 |
-
font-weight: 700;
|
| 105 |
-
font-display: swap;
|
| 106 |
-
src: url(https://fonts.gstatic.com/s/ibmplexmono/v20/-F6qfjptAgt5VM-kVkqdyU8n3pQPwlRFgtIU.woff2) format('woff2');
|
| 107 |
-
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
| 108 |
-
}
|
| 109 |
-
/* vietnamese */
|
| 110 |
-
@font-face {
|
| 111 |
-
font-family: 'IBM Plex Mono';
|
| 112 |
-
font-style: normal;
|
| 113 |
-
font-weight: 700;
|
| 114 |
-
font-display: swap;
|
| 115 |
-
src: url(https://fonts.gstatic.com/s/ibmplexmono/v20/-F6qfjptAgt5VM-kVkqdyU8n3pQPwl9FgtIU.woff2) format('woff2');
|
| 116 |
-
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
|
| 117 |
-
}
|
| 118 |
-
/* latin-ext */
|
| 119 |
-
@font-face {
|
| 120 |
-
font-family: 'IBM Plex Mono';
|
| 121 |
-
font-style: normal;
|
| 122 |
-
font-weight: 700;
|
| 123 |
-
font-display: swap;
|
| 124 |
-
src: url(https://fonts.gstatic.com/s/ibmplexmono/v20/-F6qfjptAgt5VM-kVkqdyU8n3pQPwl5FgtIU.woff2) format('woff2');
|
| 125 |
-
unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
| 126 |
-
}
|
| 127 |
-
/* latin */
|
| 128 |
-
@font-face {
|
| 129 |
-
font-family: 'IBM Plex Mono';
|
| 130 |
-
font-style: normal;
|
| 131 |
-
font-weight: 700;
|
| 132 |
-
font-display: swap;
|
| 133 |
-
src: url(https://fonts.gstatic.com/s/ibmplexmono/v20/-F6qfjptAgt5VM-kVkqdyU8n3pQPwlBFgg.woff2) format('woff2');
|
| 134 |
-
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
| 135 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
data/Wildfire Grpo Training - a Hugging Face Space by Eshit_files/huggingface_logo-noborder.svg
DELETED
data/Wildfire Grpo Training - a Hugging Face Space by Eshit_files/inner.html
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
<!DOCTYPE html>
|
| 2 |
-
<!-- saved from url=(0444)https://m.stripe.network/inner.html#url=https%3A%2F%2Fhuggingface.co%2Fspaces%2FEshit%2Fwildfire-grpo-training%3Flogs%3Dbuild&title=Wildfire%20Grpo%20Training%20-%20a%20Hugging%20Face%20Space%20by%20Eshit&referrer=https%3A%2F%2Fhuggingface.co%2Fspaces%2FEshit%2Fwildfire-grpo-training%2Fsettings&muid=e882c065-fd87-4f18-a9fa-04b280b2aa75d9b706&sid=0d58d178-3c64-458b-b666-6efc624eda22344eb4&version=6&preview=false&__shared_params__[version]=v3 -->
|
| 3 |
-
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><title>StripeM-Inner</title></head><body><script>!function(){var e=document.createElement("script");e.defer=!0,e.src="out-4.5.45.js",e.onload=function(){var e;window.StripeM&&(e=window.location.hash,/ping=false/.test(e)||(e=(e=e.match(/version=(4|6)/))?e[1]:"4",window.StripeM.p({t:!0,v:e})),e=function(e){if(window.opener||window.parent||window)try{var i=((t=JSON.parse(e.data)).message||t).action,t=t.message?t.message.payload:t;switch(i){case"ping":window.StripeM.p({t:!0,o:{muid:t.muid,sid:t.sid,referrer:t.referrer,url:t.url,title:t.title,v2:t.v2},v:t.version||"4"});break;case"track":if(!t.source||!t.data)return;window.StripeM.b({muid:t.muid,sid:t.sid,url:t.url,source:t.source,data:t.data},t.version||"4")}}catch(e){}},window.addEventListener?window.addEventListener("message",e,!1):window.attachEvent("onMessage",e))},document.body.appendChild(e)}()</script><script defer="" src="./out-4.5.45.js.download"></script></body></html>
|
|
|
|
|
|
|
|
|
|
|
|
data/Wildfire Grpo Training - a Hugging Face Space by Eshit_files/katex.min.css
DELETED
|
@@ -1 +0,0 @@
|
|
| 1 |
-
@font-face{font-family:KaTeX_AMS;src:url(fonts/KaTeX_AMS-Regular.woff2) format("woff2"),url(fonts/KaTeX_AMS-Regular.woff) format("woff"),url(fonts/KaTeX_AMS-Regular.ttf) format("truetype");font-weight:400;font-style:normal}@font-face{font-family:KaTeX_Caligraphic;src:url(fonts/KaTeX_Caligraphic-Bold.woff2) format("woff2"),url(fonts/KaTeX_Caligraphic-Bold.woff) format("woff"),url(fonts/KaTeX_Caligraphic-Bold.ttf) format("truetype");font-weight:700;font-style:normal}@font-face{font-family:KaTeX_Caligraphic;src:url(fonts/KaTeX_Caligraphic-Regular.woff2) format("woff2"),url(fonts/KaTeX_Caligraphic-Regular.woff) format("woff"),url(fonts/KaTeX_Caligraphic-Regular.ttf) format("truetype");font-weight:400;font-style:normal}@font-face{font-family:KaTeX_Fraktur;src:url(fonts/KaTeX_Fraktur-Bold.woff2) format("woff2"),url(fonts/KaTeX_Fraktur-Bold.woff) format("woff"),url(fonts/KaTeX_Fraktur-Bold.ttf) format("truetype");font-weight:700;font-style:normal}@font-face{font-family:KaTeX_Fraktur;src:url(fonts/KaTeX_Fraktur-Regular.woff2) format("woff2"),url(fonts/KaTeX_Fraktur-Regular.woff) format("woff"),url(fonts/KaTeX_Fraktur-Regular.ttf) format("truetype");font-weight:400;font-style:normal}@font-face{font-family:KaTeX_Main;src:url(fonts/KaTeX_Main-Bold.woff2) format("woff2"),url(fonts/KaTeX_Main-Bold.woff) format("woff"),url(fonts/KaTeX_Main-Bold.ttf) format("truetype");font-weight:700;font-style:normal}@font-face{font-family:KaTeX_Main;src:url(fonts/KaTeX_Main-BoldItalic.woff2) format("woff2"),url(fonts/KaTeX_Main-BoldItalic.woff) format("woff"),url(fonts/KaTeX_Main-BoldItalic.ttf) format("truetype");font-weight:700;font-style:italic}@font-face{font-family:KaTeX_Main;src:url(fonts/KaTeX_Main-Italic.woff2) format("woff2"),url(fonts/KaTeX_Main-Italic.woff) format("woff"),url(fonts/KaTeX_Main-Italic.ttf) format("truetype");font-weight:400;font-style:italic}@font-face{font-family:KaTeX_Main;src:url(fonts/KaTeX_Main-Regular.woff2) format("woff2"),url(fonts/KaTeX_Main-Regular.woff) format("woff"),url(fonts/KaTeX_Main-Regular.ttf) format("truetype");font-weight:400;font-style:normal}@font-face{font-family:KaTeX_Math;src:url(fonts/KaTeX_Math-BoldItalic.woff2) format("woff2"),url(fonts/KaTeX_Math-BoldItalic.woff) format("woff"),url(fonts/KaTeX_Math-BoldItalic.ttf) format("truetype");font-weight:700;font-style:italic}@font-face{font-family:KaTeX_Math;src:url(fonts/KaTeX_Math-Italic.woff2) format("woff2"),url(fonts/KaTeX_Math-Italic.woff) format("woff"),url(fonts/KaTeX_Math-Italic.ttf) format("truetype");font-weight:400;font-style:italic}@font-face{font-family:"KaTeX_SansSerif";src:url(fonts/KaTeX_SansSerif-Bold.woff2) format("woff2"),url(fonts/KaTeX_SansSerif-Bold.woff) format("woff"),url(fonts/KaTeX_SansSerif-Bold.ttf) format("truetype");font-weight:700;font-style:normal}@font-face{font-family:"KaTeX_SansSerif";src:url(fonts/KaTeX_SansSerif-Italic.woff2) format("woff2"),url(fonts/KaTeX_SansSerif-Italic.woff) format("woff"),url(fonts/KaTeX_SansSerif-Italic.ttf) format("truetype");font-weight:400;font-style:italic}@font-face{font-family:"KaTeX_SansSerif";src:url(fonts/KaTeX_SansSerif-Regular.woff2) format("woff2"),url(fonts/KaTeX_SansSerif-Regular.woff) format("woff"),url(fonts/KaTeX_SansSerif-Regular.ttf) format("truetype");font-weight:400;font-style:normal}@font-face{font-family:KaTeX_Script;src:url(fonts/KaTeX_Script-Regular.woff2) format("woff2"),url(fonts/KaTeX_Script-Regular.woff) format("woff"),url(fonts/KaTeX_Script-Regular.ttf) format("truetype");font-weight:400;font-style:normal}@font-face{font-family:KaTeX_Size1;src:url(fonts/KaTeX_Size1-Regular.woff2) format("woff2"),url(fonts/KaTeX_Size1-Regular.woff) format("woff"),url(fonts/KaTeX_Size1-Regular.ttf) format("truetype");font-weight:400;font-style:normal}@font-face{font-family:KaTeX_Size2;src:url(fonts/KaTeX_Size2-Regular.woff2) format("woff2"),url(fonts/KaTeX_Size2-Regular.woff) format("woff"),url(fonts/KaTeX_Size2-Regular.ttf) format("truetype");font-weight:400;font-style:normal}@font-face{font-family:KaTeX_Size3;src:url(fonts/KaTeX_Size3-Regular.woff2) format("woff2"),url(fonts/KaTeX_Size3-Regular.woff) format("woff"),url(fonts/KaTeX_Size3-Regular.ttf) format("truetype");font-weight:400;font-style:normal}@font-face{font-family:KaTeX_Size4;src:url(fonts/KaTeX_Size4-Regular.woff2) format("woff2"),url(fonts/KaTeX_Size4-Regular.woff) format("woff"),url(fonts/KaTeX_Size4-Regular.ttf) format("truetype");font-weight:400;font-style:normal}@font-face{font-family:KaTeX_Typewriter;src:url(fonts/KaTeX_Typewriter-Regular.woff2) format("woff2"),url(fonts/KaTeX_Typewriter-Regular.woff) format("woff"),url(fonts/KaTeX_Typewriter-Regular.ttf) format("truetype");font-weight:400;font-style:normal}.katex{font:normal 1.21em KaTeX_Main,Times New Roman,serif;line-height:1.2;text-indent:0;text-rendering:auto;border-color:currentColor}.katex *{-ms-high-contrast-adjust:none!important}.katex .katex-version:after{content:"0.12.0"}.katex .katex-mathml{position:absolute;clip:rect(1px,1px,1px,1px);padding:0;border:0;height:1px;width:1px;overflow:hidden}.katex .katex-html>.newline{display:block}.katex .base{position:relative;white-space:nowrap;width:min-content}.katex .base,.katex .strut{display:inline-block}.katex .textbf{font-weight:700}.katex .textit{font-style:italic}.katex .textrm{font-family:KaTeX_Main}.katex .textsf{font-family:KaTeX_SansSerif}.katex .texttt{font-family:KaTeX_Typewriter}.katex .mathnormal{font-family:KaTeX_Math;font-style:italic}.katex .mathit{font-family:KaTeX_Main;font-style:italic}.katex .mathrm{font-style:normal}.katex .mathbf{font-family:KaTeX_Main;font-weight:700}.katex .boldsymbol{font-family:KaTeX_Math;font-weight:700;font-style:italic}.katex .amsrm,.katex .mathbb,.katex .textbb{font-family:KaTeX_AMS}.katex .mathcal{font-family:KaTeX_Caligraphic}.katex .mathfrak,.katex .textfrak{font-family:KaTeX_Fraktur}.katex .mathtt{font-family:KaTeX_Typewriter}.katex .mathscr,.katex .textscr{font-family:KaTeX_Script}.katex .mathsf,.katex .textsf{font-family:KaTeX_SansSerif}.katex .mathboldsf,.katex .textboldsf{font-family:KaTeX_SansSerif;font-weight:700}.katex .mathitsf,.katex .textitsf{font-family:KaTeX_SansSerif;font-style:italic}.katex .mainrm{font-family:KaTeX_Main;font-style:normal}.katex .vlist-t{display:inline-table;table-layout:fixed;border-collapse:collapse}.katex .vlist-r{display:table-row}.katex .vlist{display:table-cell;vertical-align:bottom;position:relative}.katex .vlist>span{display:block;height:0;position:relative}.katex .vlist>span>span{display:inline-block}.katex .vlist>span>.pstrut{overflow:hidden;width:0}.katex .vlist-t2{margin-right:-2px}.katex .vlist-s{display:table-cell;vertical-align:bottom;font-size:1px;width:2px;min-width:2px}.katex .vbox{-ms-flex-direction:column;flex-direction:column;align-items:baseline}.katex .hbox,.katex .vbox{display:-ms-inline-flexbox;display:inline-flex}.katex .hbox{-ms-flex-direction:row;flex-direction:row;width:100%}.katex .thinbox{display:inline-flex;flex-direction:row;width:0;max-width:0}.katex .msupsub{text-align:left}.katex .mfrac>span>span{text-align:center}.katex .mfrac .frac-line{display:inline-block;width:100%;border-bottom-style:solid}.katex .hdashline,.katex .hline,.katex .mfrac .frac-line,.katex .overline .overline-line,.katex .rule,.katex .underline .underline-line{min-height:1px}.katex .mspace{display:inline-block}.katex .clap,.katex .llap,.katex .rlap{width:0;position:relative}.katex .clap>.inner,.katex .llap>.inner,.katex .rlap>.inner{position:absolute}.katex .clap>.fix,.katex .llap>.fix,.katex .rlap>.fix{display:inline-block}.katex .llap>.inner{right:0}.katex .clap>.inner,.katex .rlap>.inner{left:0}.katex .clap>.inner>span{margin-left:-50%;margin-right:50%}.katex .rule{display:inline-block;border:0 solid;position:relative}.katex .hline,.katex .overline .overline-line,.katex .underline .underline-line{display:inline-block;width:100%;border-bottom-style:solid}.katex .hdashline{display:inline-block;width:100%;border-bottom-style:dashed}.katex .sqrt>.root{margin-left:.27777778em;margin-right:-.55555556em}.katex .fontsize-ensurer.reset-size1.size1,.katex .sizing.reset-size1.size1{font-size:1em}.katex .fontsize-ensurer.reset-size1.size2,.katex .sizing.reset-size1.size2{font-size:1.2em}.katex .fontsize-ensurer.reset-size1.size3,.katex .sizing.reset-size1.size3{font-size:1.4em}.katex .fontsize-ensurer.reset-size1.size4,.katex .sizing.reset-size1.size4{font-size:1.6em}.katex .fontsize-ensurer.reset-size1.size5,.katex .sizing.reset-size1.size5{font-size:1.8em}.katex .fontsize-ensurer.reset-size1.size6,.katex .sizing.reset-size1.size6{font-size:2em}.katex .fontsize-ensurer.reset-size1.size7,.katex .sizing.reset-size1.size7{font-size:2.4em}.katex .fontsize-ensurer.reset-size1.size8,.katex .sizing.reset-size1.size8{font-size:2.88em}.katex .fontsize-ensurer.reset-size1.size9,.katex .sizing.reset-size1.size9{font-size:3.456em}.katex .fontsize-ensurer.reset-size1.size10,.katex .sizing.reset-size1.size10{font-size:4.148em}.katex .fontsize-ensurer.reset-size1.size11,.katex .sizing.reset-size1.size11{font-size:4.976em}.katex .fontsize-ensurer.reset-size2.size1,.katex .sizing.reset-size2.size1{font-size:.83333333em}.katex .fontsize-ensurer.reset-size2.size2,.katex .sizing.reset-size2.size2{font-size:1em}.katex .fontsize-ensurer.reset-size2.size3,.katex .sizing.reset-size2.size3{font-size:1.16666667em}.katex .fontsize-ensurer.reset-size2.size4,.katex .sizing.reset-size2.size4{font-size:1.33333333em}.katex .fontsize-ensurer.reset-size2.size5,.katex .sizing.reset-size2.size5{font-size:1.5em}.katex .fontsize-ensurer.reset-size2.size6,.katex .sizing.reset-size2.size6{font-size:1.66666667em}.katex .fontsize-ensurer.reset-size2.size7,.katex .sizing.reset-size2.size7{font-size:2em}.katex .fontsize-ensurer.reset-size2.size8,.katex .sizing.reset-size2.size8{font-size:2.4em}.katex .fontsize-ensurer.reset-size2.size9,.katex .sizing.reset-size2.size9{font-size:2.88em}.katex .fontsize-ensurer.reset-size2.size10,.katex .sizing.reset-size2.size10{font-size:3.45666667em}.katex .fontsize-ensurer.reset-size2.size11,.katex .sizing.reset-size2.size11{font-size:4.14666667em}.katex .fontsize-ensurer.reset-size3.size1,.katex .sizing.reset-size3.size1{font-size:.71428571em}.katex .fontsize-ensurer.reset-size3.size2,.katex .sizing.reset-size3.size2{font-size:.85714286em}.katex .fontsize-ensurer.reset-size3.size3,.katex .sizing.reset-size3.size3{font-size:1em}.katex .fontsize-ensurer.reset-size3.size4,.katex .sizing.reset-size3.size4{font-size:1.14285714em}.katex .fontsize-ensurer.reset-size3.size5,.katex .sizing.reset-size3.size5{font-size:1.28571429em}.katex .fontsize-ensurer.reset-size3.size6,.katex .sizing.reset-size3.size6{font-size:1.42857143em}.katex .fontsize-ensurer.reset-size3.size7,.katex .sizing.reset-size3.size7{font-size:1.71428571em}.katex .fontsize-ensurer.reset-size3.size8,.katex .sizing.reset-size3.size8{font-size:2.05714286em}.katex .fontsize-ensurer.reset-size3.size9,.katex .sizing.reset-size3.size9{font-size:2.46857143em}.katex .fontsize-ensurer.reset-size3.size10,.katex .sizing.reset-size3.size10{font-size:2.96285714em}.katex .fontsize-ensurer.reset-size3.size11,.katex .sizing.reset-size3.size11{font-size:3.55428571em}.katex .fontsize-ensurer.reset-size4.size1,.katex .sizing.reset-size4.size1{font-size:.625em}.katex .fontsize-ensurer.reset-size4.size2,.katex .sizing.reset-size4.size2{font-size:.75em}.katex .fontsize-ensurer.reset-size4.size3,.katex .sizing.reset-size4.size3{font-size:.875em}.katex .fontsize-ensurer.reset-size4.size4,.katex .sizing.reset-size4.size4{font-size:1em}.katex .fontsize-ensurer.reset-size4.size5,.katex .sizing.reset-size4.size5{font-size:1.125em}.katex .fontsize-ensurer.reset-size4.size6,.katex .sizing.reset-size4.size6{font-size:1.25em}.katex .fontsize-ensurer.reset-size4.size7,.katex .sizing.reset-size4.size7{font-size:1.5em}.katex .fontsize-ensurer.reset-size4.size8,.katex .sizing.reset-size4.size8{font-size:1.8em}.katex .fontsize-ensurer.reset-size4.size9,.katex .sizing.reset-size4.size9{font-size:2.16em}.katex .fontsize-ensurer.reset-size4.size10,.katex .sizing.reset-size4.size10{font-size:2.5925em}.katex .fontsize-ensurer.reset-size4.size11,.katex .sizing.reset-size4.size11{font-size:3.11em}.katex .fontsize-ensurer.reset-size5.size1,.katex .sizing.reset-size5.size1{font-size:.55555556em}.katex .fontsize-ensurer.reset-size5.size2,.katex .sizing.reset-size5.size2{font-size:.66666667em}.katex .fontsize-ensurer.reset-size5.size3,.katex .sizing.reset-size5.size3{font-size:.77777778em}.katex .fontsize-ensurer.reset-size5.size4,.katex .sizing.reset-size5.size4{font-size:.88888889em}.katex .fontsize-ensurer.reset-size5.size5,.katex .sizing.reset-size5.size5{font-size:1em}.katex .fontsize-ensurer.reset-size5.size6,.katex .sizing.reset-size5.size6{font-size:1.11111111em}.katex .fontsize-ensurer.reset-size5.size7,.katex .sizing.reset-size5.size7{font-size:1.33333333em}.katex .fontsize-ensurer.reset-size5.size8,.katex .sizing.reset-size5.size8{font-size:1.6em}.katex .fontsize-ensurer.reset-size5.size9,.katex .sizing.reset-size5.size9{font-size:1.92em}.katex .fontsize-ensurer.reset-size5.size10,.katex .sizing.reset-size5.size10{font-size:2.30444444em}.katex .fontsize-ensurer.reset-size5.size11,.katex .sizing.reset-size5.size11{font-size:2.76444444em}.katex .fontsize-ensurer.reset-size6.size1,.katex .sizing.reset-size6.size1{font-size:.5em}.katex .fontsize-ensurer.reset-size6.size2,.katex .sizing.reset-size6.size2{font-size:.6em}.katex .fontsize-ensurer.reset-size6.size3,.katex .sizing.reset-size6.size3{font-size:.7em}.katex .fontsize-ensurer.reset-size6.size4,.katex .sizing.reset-size6.size4{font-size:.8em}.katex .fontsize-ensurer.reset-size6.size5,.katex .sizing.reset-size6.size5{font-size:.9em}.katex .fontsize-ensurer.reset-size6.size6,.katex .sizing.reset-size6.size6{font-size:1em}.katex .fontsize-ensurer.reset-size6.size7,.katex .sizing.reset-size6.size7{font-size:1.2em}.katex .fontsize-ensurer.reset-size6.size8,.katex .sizing.reset-size6.size8{font-size:1.44em}.katex .fontsize-ensurer.reset-size6.size9,.katex .sizing.reset-size6.size9{font-size:1.728em}.katex .fontsize-ensurer.reset-size6.size10,.katex .sizing.reset-size6.size10{font-size:2.074em}.katex .fontsize-ensurer.reset-size6.size11,.katex .sizing.reset-size6.size11{font-size:2.488em}.katex .fontsize-ensurer.reset-size7.size1,.katex .sizing.reset-size7.size1{font-size:.41666667em}.katex .fontsize-ensurer.reset-size7.size2,.katex .sizing.reset-size7.size2{font-size:.5em}.katex .fontsize-ensurer.reset-size7.size3,.katex .sizing.reset-size7.size3{font-size:.58333333em}.katex .fontsize-ensurer.reset-size7.size4,.katex .sizing.reset-size7.size4{font-size:.66666667em}.katex .fontsize-ensurer.reset-size7.size5,.katex .sizing.reset-size7.size5{font-size:.75em}.katex .fontsize-ensurer.reset-size7.size6,.katex .sizing.reset-size7.size6{font-size:.83333333em}.katex .fontsize-ensurer.reset-size7.size7,.katex .sizing.reset-size7.size7{font-size:1em}.katex .fontsize-ensurer.reset-size7.size8,.katex .sizing.reset-size7.size8{font-size:1.2em}.katex .fontsize-ensurer.reset-size7.size9,.katex .sizing.reset-size7.size9{font-size:1.44em}.katex .fontsize-ensurer.reset-size7.size10,.katex .sizing.reset-size7.size10{font-size:1.72833333em}.katex .fontsize-ensurer.reset-size7.size11,.katex .sizing.reset-size7.size11{font-size:2.07333333em}.katex .fontsize-ensurer.reset-size8.size1,.katex .sizing.reset-size8.size1{font-size:.34722222em}.katex .fontsize-ensurer.reset-size8.size2,.katex .sizing.reset-size8.size2{font-size:.41666667em}.katex .fontsize-ensurer.reset-size8.size3,.katex .sizing.reset-size8.size3{font-size:.48611111em}.katex .fontsize-ensurer.reset-size8.size4,.katex .sizing.reset-size8.size4{font-size:.55555556em}.katex .fontsize-ensurer.reset-size8.size5,.katex .sizing.reset-size8.size5{font-size:.625em}.katex .fontsize-ensurer.reset-size8.size6,.katex .sizing.reset-size8.size6{font-size:.69444444em}.katex .fontsize-ensurer.reset-size8.size7,.katex .sizing.reset-size8.size7{font-size:.83333333em}.katex .fontsize-ensurer.reset-size8.size8,.katex .sizing.reset-size8.size8{font-size:1em}.katex .fontsize-ensurer.reset-size8.size9,.katex .sizing.reset-size8.size9{font-size:1.2em}.katex .fontsize-ensurer.reset-size8.size10,.katex .sizing.reset-size8.size10{font-size:1.44027778em}.katex .fontsize-ensurer.reset-size8.size11,.katex .sizing.reset-size8.size11{font-size:1.72777778em}.katex .fontsize-ensurer.reset-size9.size1,.katex .sizing.reset-size9.size1{font-size:.28935185em}.katex .fontsize-ensurer.reset-size9.size2,.katex .sizing.reset-size9.size2{font-size:.34722222em}.katex .fontsize-ensurer.reset-size9.size3,.katex .sizing.reset-size9.size3{font-size:.40509259em}.katex .fontsize-ensurer.reset-size9.size4,.katex .sizing.reset-size9.size4{font-size:.46296296em}.katex .fontsize-ensurer.reset-size9.size5,.katex .sizing.reset-size9.size5{font-size:.52083333em}.katex .fontsize-ensurer.reset-size9.size6,.katex .sizing.reset-size9.size6{font-size:.5787037em}.katex .fontsize-ensurer.reset-size9.size7,.katex .sizing.reset-size9.size7{font-size:.69444444em}.katex .fontsize-ensurer.reset-size9.size8,.katex .sizing.reset-size9.size8{font-size:.83333333em}.katex .fontsize-ensurer.reset-size9.size9,.katex .sizing.reset-size9.size9{font-size:1em}.katex .fontsize-ensurer.reset-size9.size10,.katex .sizing.reset-size9.size10{font-size:1.20023148em}.katex .fontsize-ensurer.reset-size9.size11,.katex .sizing.reset-size9.size11{font-size:1.43981481em}.katex .fontsize-ensurer.reset-size10.size1,.katex .sizing.reset-size10.size1{font-size:.24108004em}.katex .fontsize-ensurer.reset-size10.size2,.katex .sizing.reset-size10.size2{font-size:.28929605em}.katex .fontsize-ensurer.reset-size10.size3,.katex .sizing.reset-size10.size3{font-size:.33751205em}.katex .fontsize-ensurer.reset-size10.size4,.katex .sizing.reset-size10.size4{font-size:.38572806em}.katex .fontsize-ensurer.reset-size10.size5,.katex .sizing.reset-size10.size5{font-size:.43394407em}.katex .fontsize-ensurer.reset-size10.size6,.katex .sizing.reset-size10.size6{font-size:.48216008em}.katex .fontsize-ensurer.reset-size10.size7,.katex .sizing.reset-size10.size7{font-size:.57859209em}.katex .fontsize-ensurer.reset-size10.size8,.katex .sizing.reset-size10.size8{font-size:.69431051em}.katex .fontsize-ensurer.reset-size10.size9,.katex .sizing.reset-size10.size9{font-size:.83317261em}.katex .fontsize-ensurer.reset-size10.size10,.katex .sizing.reset-size10.size10{font-size:1em}.katex .fontsize-ensurer.reset-size10.size11,.katex .sizing.reset-size10.size11{font-size:1.19961427em}.katex .fontsize-ensurer.reset-size11.size1,.katex .sizing.reset-size11.size1{font-size:.20096463em}.katex .fontsize-ensurer.reset-size11.size2,.katex .sizing.reset-size11.size2{font-size:.24115756em}.katex .fontsize-ensurer.reset-size11.size3,.katex .sizing.reset-size11.size3{font-size:.28135048em}.katex .fontsize-ensurer.reset-size11.size4,.katex .sizing.reset-size11.size4{font-size:.32154341em}.katex .fontsize-ensurer.reset-size11.size5,.katex .sizing.reset-size11.size5{font-size:.36173633em}.katex .fontsize-ensurer.reset-size11.size6,.katex .sizing.reset-size11.size6{font-size:.40192926em}.katex .fontsize-ensurer.reset-size11.size7,.katex .sizing.reset-size11.size7{font-size:.48231511em}.katex .fontsize-ensurer.reset-size11.size8,.katex .sizing.reset-size11.size8{font-size:.57877814em}.katex .fontsize-ensurer.reset-size11.size9,.katex .sizing.reset-size11.size9{font-size:.69453376em}.katex .fontsize-ensurer.reset-size11.size10,.katex .sizing.reset-size11.size10{font-size:.83360129em}.katex .fontsize-ensurer.reset-size11.size11,.katex .sizing.reset-size11.size11{font-size:1em}.katex .delimsizing.size1{font-family:KaTeX_Size1}.katex .delimsizing.size2{font-family:KaTeX_Size2}.katex .delimsizing.size3{font-family:KaTeX_Size3}.katex .delimsizing.size4{font-family:KaTeX_Size4}.katex .delimsizing.mult .delim-size1>span{font-family:KaTeX_Size1}.katex .delimsizing.mult .delim-size4>span{font-family:KaTeX_Size4}.katex .nulldelimiter{display:inline-block;width:.12em}.katex .delimcenter,.katex .op-symbol{position:relative}.katex .op-symbol.small-op{font-family:KaTeX_Size1}.katex .op-symbol.large-op{font-family:KaTeX_Size2}.katex .op-limits>.vlist-t{text-align:center}.katex .accent>.vlist-t{text-align:center}.katex .accent .accent-body{position:relative}.katex .accent .accent-body:not(.accent-full){width:0}.katex .overlay{display:block}.katex .mtable .vertical-separator{display:inline-block;min-width:1px}.katex .mtable .arraycolsep{display:inline-block}.katex .mtable .col-align-c>.vlist-t{text-align:center}.katex .mtable .col-align-l>.vlist-t{text-align:left}.katex .mtable .col-align-r>.vlist-t{text-align:right}.katex .svg-align{text-align:left}.katex svg{display:block;position:absolute;width:100%;height:inherit;fill:currentColor;stroke:currentColor;fill-rule:nonzero;fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1}.katex svg path{stroke:none}.katex img{border-style:none;min-width:0;min-height:0;max-width:none;max-height:none}.katex .stretchy{width:100%;display:block;position:relative;overflow:hidden}.katex .stretchy:after,.katex .stretchy:before{content:""}.katex .hide-tail{width:100%;position:relative;overflow:hidden}.katex .halfarrow-left{position:absolute;left:0;width:50.2%;overflow:hidden}.katex .halfarrow-right{position:absolute;right:0;width:50.2%;overflow:hidden}.katex .brace-left{position:absolute;left:0;width:25.1%;overflow:hidden}.katex .brace-center{position:absolute;left:25%;width:50%;overflow:hidden}.katex .brace-right{position:absolute;right:0;width:25.1%;overflow:hidden}.katex .x-arrow-pad{padding:0 .5em}.katex .mover,.katex .munder,.katex .x-arrow{text-align:center}.katex .boxpad{padding:0 .3em}.katex .fbox,.katex .fcolorbox{box-sizing:border-box;border:.04em solid}.katex .cancel-pad{padding:0 .2em}.katex .cancel-lap{margin-left:-.2em;margin-right:-.2em}.katex .sout{border-bottom-style:solid;border-bottom-width:.08em}.katex-display{display:block;margin:1em 0;text-align:center}.katex-display>.katex{display:block;text-align:center;white-space:nowrap}.katex-display>.katex>.katex-html{display:block;position:relative}.katex-display>.katex>.katex-html>.tag{position:absolute;right:0}.katex-display.leqno>.katex>.katex-html>.tag{left:0;right:auto}.katex-display.fleqn>.katex{text-align:left;padding-left:2em}
|
|
|
|
|
|
data/Wildfire Grpo Training - a Hugging Face Space by Eshit_files/m-outer-15a2b40a058ddff1cffdb63779fe3de1.js.download
DELETED
|
@@ -1 +0,0 @@
|
|
| 1 |
-
!function(){"use strict";var e="https://m.stripe.network",n=window.location.hash,t=/preview=true/.test(n)?"inner-preview.html":"inner.html",o=document.createElement("iframe");o.src="".concat(e,"/").concat(t).concat(n);var i=function(n){if(n.origin===e){var t=window.opener||window.parent||window;if(!t)return;t.postMessage(n.data,"*")}else o.contentWindow.postMessage(n.data,"*")};window.addEventListener?window.addEventListener("message",i,!1):window.attachEvent("onMessage",i),document.body&&document.body.appendChild(o)}();
|
|
|
|
|
|
data/Wildfire Grpo Training - a Hugging Face Space by Eshit_files/m-outer-3437aaddcdf6922d623e172c2d6f9278.html
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
<!DOCTYPE html>
|
| 2 |
-
<!-- saved from url=(0479)https://js.stripe.com/v3/m-outer-3437aaddcdf6922d623e172c2d6f9278.html#url=https%3A%2F%2Fhuggingface.co%2Fspaces%2FEshit%2Fwildfire-grpo-training%3Flogs%3Dbuild&title=Wildfire%20Grpo%20Training%20-%20a%20Hugging%20Face%20Space%20by%20Eshit&referrer=https%3A%2F%2Fhuggingface.co%2Fspaces%2FEshit%2Fwildfire-grpo-training%2Fsettings&muid=e882c065-fd87-4f18-a9fa-04b280b2aa75d9b706&sid=0d58d178-3c64-458b-b666-6efc624eda22344eb4&version=6&preview=false&__shared_params__[version]=v3 -->
|
| 3 |
-
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><script defer="defer" src="./m-outer-15a2b40a058ddff1cffdb63779fe3de1.js.download"></script></head><body><iframe src="./inner.html"></iframe></body></html>
|
|
|
|
|
|
|
|
|
|
|
|
data/Wildfire Grpo Training - a Hugging Face Space by Eshit_files/out-4.5.45.js.download
DELETED
|
@@ -1 +0,0 @@
|
|
| 1 |
-
var StripeM=function(e){var t={};function n(r){if(t[r])return t[r].exports;var _=t[r]={i:r,l:!1,exports:{}};return e[r].call(_.exports,_,_.exports,n),_.l=!0,_.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var _ in e)n.d(r,_,function(t){return e[t]}.bind(null,_));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=30)}([function(e,t,n){"use strict";(function(e){n.d(t,"a",(function(){return i})),n.d(t,"d",(function(){return c})),n.d(t,"f",(function(){return u})),n.d(t,"b",(function(){return a})),n.d(t,"e",(function(){return f})),n.d(t,"c",(function(){return l}));var r=n(1),_=n(13);function o(e){return o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},o(e)}var i=m("win").Promise||m("PPromise");function c(){var e=m("win").performance;return e&&e.now?e.now():Date.now()}function u(e){var t=m("now")();return{result:e(),duration:m("now")()-t}}function a(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"sessionStorage";this.storage=null;try{window[e]&&(window[e].setItem("1","1"),window[e].getItem("1"),this.storage=window[e])}catch(e){}}function f(e,t){if(e){var n=e.slice(1).split("&").filter((function(e){return-1!==e.indexOf(t+"=")}))[0];if(n)return decodeURIComponent(n.split("=")[1])||""}return""}m("MStorage").prototype.get=function(e){return this.storage&&this.storage.getItem(e)},m("MStorage").prototype.set=function(e,t){return this.storage&&this.storage.setItem(e,t)};var s=/^{"muid":"[\w-]+","guid":"[\w-]+","sid":"[\w-]+"}$/m,l=function(e){return"string"==typeof e&&m("MSG_REGEX").test(e)};function y(){try{if(e)return e}catch(e){try{if(window)return window}catch(e){return this}}}var E,h=null;function v(){if(null===h){var e=y();e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__||(e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__=0),h=__$$GLOBAL_REWIRE_NEXT_MODULE_ID__++}return h}function d(){var e=y();return e.__$$GLOBAL_REWIRE_REGISTRY__||(e.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)),e.__$$GLOBAL_REWIRE_REGISTRY__}function b(){var e=v(),t=d(),n=t[e];return n||(t[e]=Object.create(null),n=t[e]),n}(E=y()).__rewire_reset_all__||(E.__rewire_reset_all__=function(){E.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)});var R="__INTENTIONAL_UNDEFINED__",p={};function m(e){var t=b();if(void 0===t[e])return function(e){switch(e){case"win":return r.f;case"PPromise":return _.a;case"now":return c;case"MStorage":return a;case"MSG_REGEX":return s}return}(e);var n=t[e];return n===R?void 0:n}function O(e,t){var n=b();return"object"===o(e)?(Object.keys(e).forEach((function(t){n[t]=e[t]})),function(){Object.keys(e).forEach((function(t){L(e)}))}):(n[e]=void 0===t?R:t,function(){L(e)})}function L(e){var t=b();delete t[e],0==Object.keys(t).length&&delete d()[v]}function I(e){var t=b(),n=Object.keys(e),r={};function _(){n.forEach((function(e){t[e]=r[e]}))}return function(o){n.forEach((function(n){r[n]=t[n],t[n]=e[n]}));var i=o();return i&&"function"==typeof i.then?i.then(_).catch(_):_(),i}}!function(){function e(e,t){Object.defineProperty(p,e,{value:t,enumerable:!1,configurable:!0})}e("__get__",m),e("__GetDependency__",m),e("__Rewire__",O),e("__set__",O),e("__reset__",L),e("__ResetDependency__",L),e("__with__",I)}()}).call(this,n(3))},function(e,t,n){"use strict";(function(e){function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}n.d(t,"f",(function(){return _})),n.d(t,"c",(function(){return o})),n.d(t,"e",(function(){return i})),n.d(t,"a",(function(){return c})),n.d(t,"b",(function(){return u})),n.d(t,"d",(function(){return f}));var _=window,o=window.navigator,i=window.screen,c=new Date,u=document,a=null;try{p("ctx2d",R("doc").createElement("canvas").getContext("2d"))}catch(e){}var f=R("ctx2d");function s(){try{if(e)return e}catch(e){try{if(window)return window}catch(e){return this}}}var l,y=null;function E(){if(null===y){var e=s();e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__||(e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__=0),y=__$$GLOBAL_REWIRE_NEXT_MODULE_ID__++}return y}function h(){var e=s();return e.__$$GLOBAL_REWIRE_REGISTRY__||(e.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)),e.__$$GLOBAL_REWIRE_REGISTRY__}function v(){var e=E(),t=h(),n=t[e];return n||(t[e]=Object.create(null),n=t[e]),n}(l=s()).__rewire_reset_all__||(l.__rewire_reset_all__=function(){l.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)});var d="__INTENTIONAL_UNDEFINED__",b={};function R(e){var t=v();if(void 0===t[e])return function(e){switch(e){case"ctx2d":return a;case"doc":return u}return}(e);var n=t[e];return n===d?void 0:n}function p(e,t){var n=v();return void 0===n[e]?function(e,t){if("ctx2d"===e)return a=t;return}(e,t):n[e]=t}function m(e,t){var n=v();return"object"===r(e)?(Object.keys(e).forEach((function(t){n[t]=e[t]})),function(){Object.keys(e).forEach((function(t){O(e)}))}):(n[e]=void 0===t?d:t,function(){O(e)})}function O(e){var t=v();delete t[e],0==Object.keys(t).length&&delete h()[E]}function L(e){var t=v(),n=Object.keys(e),r={};function _(){n.forEach((function(e){t[e]=r[e]}))}return function(o){n.forEach((function(n){r[n]=t[n],t[n]=e[n]}));var i=o();return i&&"function"==typeof i.then?i.then(_).catch(_):_(),i}}!function(){function e(e,t){Object.defineProperty(b,e,{value:t,enumerable:!1,configurable:!0})}e("__get__",R),e("__GetDependency__",R),e("__Rewire__",m),e("__set__",m),e("__reset__",O),e("__ResetDependency__",O),e("__with__",L)}()}).call(this,n(3))},function(e,t,n){"use strict";(function(e){var r=n(0);function _(e){return _="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},_(e)}function o(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}var i=function(){function e(t,n){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.description=t,this.extractor=n}var t,n,r;return t=e,(n=[{key:"extract",value:function(e){if(e){var t=h("timer")(this.extractor),n=t.result,r=t.duration,o=h("now")();return n.then((function(e){var t=h("now")(),n=e.async?t-o:0,i=+(r+n).toPrecision(5);return"object"!==_(e)?{value:e,internalValue:e,calculationTimeMs:i}:{value:e.value,internalValue:e.internalValue||e.value,activeTimeMs:e.calculationTimeMs?+e.calculationTimeMs.toPrecision(5):null,calculationTimeMs:i}}))}return this.extractor().then((function(e){return{value:e}}))}}])&&o(t.prototype,n),r&&o(t,r),Object.defineProperty(t,"prototype",{writable:!1}),e}();function c(){try{if(e)return e}catch(e){try{if(window)return window}catch(e){return this}}}t.a=h("Extractor");var u,a=null;function f(){if(null===a){var e=c();e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__||(e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__=0),a=__$$GLOBAL_REWIRE_NEXT_MODULE_ID__++}return a}function s(){var e=c();return e.__$$GLOBAL_REWIRE_REGISTRY__||(e.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)),e.__$$GLOBAL_REWIRE_REGISTRY__}function l(){var e=f(),t=s(),n=t[e];return n||(t[e]=Object.create(null),n=t[e]),n}(u=c()).__rewire_reset_all__||(u.__rewire_reset_all__=function(){u.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)});var y="__INTENTIONAL_UNDEFINED__",E={};function h(e){var t=l();if(void 0===t[e])return function(e){switch(e){case"timer":return r.f;case"now":return r.d;case"Extractor":return i}return}(e);var n=t[e];return n===y?void 0:n}function v(e,t){var n=l();return"object"===_(e)?(Object.keys(e).forEach((function(t){n[t]=e[t]})),function(){Object.keys(e).forEach((function(t){d(e)}))}):(n[e]=void 0===t?y:t,function(){d(e)})}function d(e){var t=l();delete t[e],0==Object.keys(t).length&&delete s()[f]}function b(e){var t=l(),n=Object.keys(e),r={};function _(){n.forEach((function(e){t[e]=r[e]}))}return function(o){n.forEach((function(n){r[n]=t[n],t[n]=e[n]}));var i=o();return i&&"function"==typeof i.then?i.then(_).catch(_):_(),i}}!function(){function e(e,t){Object.defineProperty(E,e,{value:t,enumerable:!1,configurable:!0})}e("__get__",h),e("__GetDependency__",h),e("__Rewire__",v),e("__set__",v),e("__reset__",d),e("__ResetDependency__",d),e("__with__",b)}();var R=_(i);function p(e,t){Object.defineProperty(i,e,{value:t,enumerable:!1,configurable:!0})}"object"!==R&&"function"!==R||!Object.isExtensible(i)||(p("__get__",h),p("__GetDependency__",h),p("__Rewire__",v),p("__set__",v),p("__reset__",d),p("__ResetDependency__",d),p("__with__",b),p("__RewireAPI__",E))}).call(this,n(3))},function(e,t){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(e){"object"==typeof window&&(n=window)}e.exports=n},function(e,t,n){"use strict";(function(e){n.d(t,"a",(function(){return s})),n.d(t,"d",(function(){return y})),n.d(t,"c",(function(){return p})),n.d(t,"b",(function(){return m}));var r=n(9);function _(e){return _="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},_(e)}function o(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function i(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function c(e,t,n){return t&&i(e.prototype,t),n&&i(e,n),Object.defineProperty(e,"prototype",{writable:!1}),e}var u=/^(([^:/?#]+):)?(\/\/([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?/,a=/:([0-9]+)/,f=function(e){if(e){var t=e.lastIndexOf("@");return-1===t?e:e.substr(0,j("authorityPrefix").length)+e.substr(t+1,e.length-t)}return e},s=function(){function e(t){if(o(this,e),t){var n=t.split(j("urlRegex"));this.scheme=n[1],this.authority=n[3]&&j("removeUserInfo")(n[3]),this.path=n[5],this.query=n[6],this.fragment=n[8]}}return c(e,[{key:"toString",value:function(){return[this.scheme,this.authority,this.path,this.query,this.fragment].filter(Boolean).join("")}}]),e}(),l="7766e861-8279-424d-87a1-07a6022fd8cd",y=function(e){return e?j("sha256")(unescape(encodeURIComponent(e))+j("URL_SALT")):e},E=function(){function e(t,n,r){o(this,e),this.s=t,this.cur=0,this.hashedCount=0,this.fullHashLimit=n,this.totalHashLimit=r}return c(e,[{key:"shouldHash",value:function(){return this.hashedCount<this.totalHashLimit}},{key:"isLastHash",value:function(){return this.hashedCount===this.totalHashLimit-1}},{key:"shouldPartialHash",value:function(){return!this.isLastHash()&&this.hashedCount>=this.fullHashLimit}},{key:"replace",value:function(e){var t=e,n=this.s.indexOf(e,this.cur);this.isLastHash()&&(t=this.s.substr(n,this.s.length-n));var r=j("sha256WithSalt")(t);this.shouldPartialHash()&&(r=r.substr(0,j("PARTIAL_HASH_LEN"))),this.s=this.s.substr(0,n)+r+this.s.substr(n+t.length),this.cur=n+r.length,this.hashedCount+=1}}]),e}(),h=function(e){return"//stripe.com"===e||"//stripe.com."===e||e.endsWith(".stripe.com")||e.endsWith(".stripe.com.")},v=["//checkout.stripe.com","//qa-checkout.stripe.com","//edge-checkout.stripe.com"],d=function(e){return-1!==j("CHECKOUT_HOSTS").indexOf(e)},b=function(){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:j("DEFAULT_FULL_HASH_LIMIT");o(this,e),this.remainingHashes=j("TOTAL_PARTS_LIMIT"),this.fullHashLimit=t}return c(e,[{key:"getFullHashLimit",value:function(e){return"authority"===e?j("TOTAL_PARTS_LIMIT"):this.fullHashLimit}},{key:"totalHashLimit",value:function(e){switch(e){case"authority":return j("TOTAL_PARTS_LIMIT");case"path":return Math.max(1,Math.min(j("PATH_PARTS_LIMIT"),this.remainingHashes));case"query":case"fragment":return Math.max(1,this.remainingHashes);default:return 0}}},{key:"splitAndHash",value:function(e,t,n){if("authority"===t&&e&&j("isStripeCheckoutAuthority")(e))return e;if(!e)return e;var r=new(j("SequentialHashWithLimit"))(e,this.getFullHashLimit(t),this.totalHashLimit(t));return e.split(n).filter(Boolean).forEach((function(e){r.shouldHash()&&r.replace(e)})),this.remainingHashes-=r.hashedCount,r.s}}]),e}(),R=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:j("DEFAULT_FULL_HASH_LIMIT"),n=new(j("PartitionedUrl"))(e.toString()),r=new(j("SequentialSplitterAndHasher"))(t);return n.authority=r.splitAndHash(n.authority,"authority",new RegExp("[/.:]")),n.path=r.splitAndHash(n.path,"path",new RegExp("[/#?!&+,=]")),n.query=r.splitAndHash(n.query,"query",new RegExp("[/#?!&+,=]")),n.fragment=r.splitAndHash(n.fragment,"fragment",new RegExp("[/#?!&+,=]")),n},p=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:j("DEFAULT_FULL_HASH_LIMIT"),n=e.authority;return n&&j("isStripeCheckoutAuthority")(n)?j("hashUrl")(e):n&&j("isStripeAuthority")(n)?e:j("hashUrl")(e,t)},m=function(e){var t=new(j("PartitionedUrl"))(e).authority,n=(t=t&&t.substr(j("authorityPrefix").length))&&t.match(j("urlPortRegex")),r=n&&n.index;return r&&(t=t.substr(0,r)),t};function O(){try{if(e)return e}catch(e){try{if(window)return window}catch(e){return this}}}var L,I=null;function w(){if(null===I){var e=O();e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__||(e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__=0),I=__$$GLOBAL_REWIRE_NEXT_MODULE_ID__++}return I}function g(){var e=O();return e.__$$GLOBAL_REWIRE_REGISTRY__||(e.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)),e.__$$GLOBAL_REWIRE_REGISTRY__}function S(){var e=w(),t=g(),n=t[e];return n||(t[e]=Object.create(null),n=t[e]),n}(L=O()).__rewire_reset_all__||(L.__rewire_reset_all__=function(){L.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)});var T="__INTENTIONAL_UNDEFINED__",$={};function j(e){var t=S();if(void 0===t[e])return function(e){switch(e){case"authorityPrefix":return"//";case"urlRegex":return u;case"removeUserInfo":return f;case"sha256":return r.a;case"URL_SALT":return l;case"sha256WithSalt":return y;case"PARTIAL_HASH_LEN":return 6;case"CHECKOUT_HOSTS":return v;case"DEFAULT_FULL_HASH_LIMIT":return 10;case"TOTAL_PARTS_LIMIT":return 40;case"PATH_PARTS_LIMIT":return 30;case"isStripeCheckoutAuthority":return d;case"SequentialHashWithLimit":return E;case"PartitionedUrl":return s;case"SequentialSplitterAndHasher":return b;case"hashUrl":return R;case"isStripeAuthority":return h;case"urlPortRegex":return a}return}(e);var n=t[e];return n===T?void 0:n}function A(e,t){var n=S();return"object"===_(e)?(Object.keys(e).forEach((function(t){n[t]=e[t]})),function(){Object.keys(e).forEach((function(t){G(e)}))}):(n[e]=void 0===t?T:t,function(){G(e)})}function G(e){var t=S();delete t[e],0==Object.keys(t).length&&delete g()[w]}function D(e){var t=S(),n=Object.keys(e),r={};function _(){n.forEach((function(e){t[e]=r[e]}))}return function(o){n.forEach((function(n){r[n]=t[n],t[n]=e[n]}));var i=o();return i&&"function"==typeof i.then?i.then(_).catch(_):_(),i}}!function(){function e(e,t){Object.defineProperty($,e,{value:t,enumerable:!1,configurable:!0})}e("__get__",j),e("__GetDependency__",j),e("__Rewire__",A),e("__set__",A),e("__reset__",G),e("__ResetDependency__",G),e("__with__",D)}()}).call(this,n(3))},function(e,t){e.exports=function(e,t){for(var n=-1,r=null==e?0:e.length,_=Array(r);++n<r;)_[n]=t(e[n],n,e);return _}},function(e,t,n){"use strict";(function(e){n.d(t,"b",(function(){return L})),n.d(t,"a",(function(){return S}));var r=n(5),_=n.n(r),o=n(7),i=n.n(o),c=n(11),u=n(8),a=n(0),f=n(1),s=n(4),l=n(9);function y(e){return y="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},y(e)}function E(e){return function(e){if(Array.isArray(e))return h(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return h(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return h(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function h(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var v=B("now")();function d(e,t){return _()(B("extractors"),(function(n){return n.extract(e).then((function(e){return t(e,n)}))}))}function b(){try{var e=new Audio;return null===e.mozSrcObject&&void 0===e.srcObject}catch(e){return!1}}function R(){try{return ArrayBuffer(),!1}catch(e){return!0}}function p(){try{return Array.from("hello"),!0}catch(e){return!1}}function m(){var e=""!==B("win").location.hash?B("win").location.hash:B("win").location.search;return{a:B("queryStringValueForKey")(e,"referrer"),b:B("queryStringValueForKey")(e,"url"),c:B("queryStringValueForKey")(e,"title"),d:B("queryStringValueForKey")(e,"muid"),e:B("queryStringValueForKey")(e,"sid"),f:B("audioMozSrcObjectCheck")(),g:B("arrayBufferRequiresNew")(),h:B("arrayDotFromSupport")(),i:Object.keys(document),j:Object.keys(navigator),n:B("loadedTime")}}function O(e){var t={};return e.forEach((function(e,n){var r=String.fromCharCode("a".charCodeAt(0)+n),_={v:e[0],t:e[1]};void 0!==e[2]&&(_.at=e[2]),t[r]=_})),t}function L(e){}function I(){try{return E(crypto.getRandomValues(new Uint8Array(B("entropyBitsInNonce")/8))).map((function(e){return"0".concat(e.toString(16)).slice(-2)})).join("")}catch(e){return Math.random().toString(16)}}function w(e){var t=Date.now();return t+":"+B("sha256Hex")(e+(t+1))}function g(e){var t=e.totalDuration,n=e.extractedFeatures,r=e.withTelemetry,o=e.canvasB64,i=e.sourceData,c=_()(n,(function(e){return e[0]})).join(" "),u=B("md5")(c),a=B("getRandomValue")(),f=i.sid,s=i.muid,l=i.url,y=i.title,E=i.referrer,h=i.v2,v=B("browserFeatures")();E&&(v.a=E,delete i.referrer),l&&(v.b=l,delete i.url),y&&(v.c=y,delete i.title),s&&(v.d=s,delete i.muid),f&&(v.e=f,delete i.sid);var d=B("getUrlDomain")(v.b);d&&(v.u=d);var b=B("getUrlDomain")(v.a);b&&(v.v=b);var R=B("getHashTimestampWithSalt")(a);R&&(v.w=R),v.a=B("hashUrlWithAuthorityCheck")(new(B("PartitionedUrl"))(v.a)).toString(),v.b=B("hashUrlWithAuthorityCheck")(new(B("PartitionedUrl"))(v.b)).toString(),v.c=B("sha256WithSalt")(v.c);var p=B("transformFeatureValues")(n),m=new(B("MStorage")),O=2===h||m.get("id")!==u;return m.set("id",u),r?{v2:h||1,id:u,t:t,tag:"$npm_package_version",src:"js",i:o,a:O?p:null,b:v,h:a}:{id:u,o:i}}function S(e,t){var n,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},_=B("now")(),o=B("promiseWrappedExtractors")(t,(function(e,t){var n=e.value,r=e.calculationTimeMs,_=(e.internalValue,e.activeTimeMs);B("CanvasExtractor");var o=[n,r];return _&&o.push(_),o}));return B("MPromise").all(o).then((function(o){var i=+(B("now")()-_).toPrecision(5),c=B("buildPayload")({totalDuration:i,extractedFeatures:o,withTelemetry:t,canvasB64:n,sourceData:r}),u=e(c);return u&&u.catch&&u.catch((function(){})),c}))}function T(){try{if(e)return e}catch(e){try{if(window)return window}catch(e){return this}}}var $,j=null;function A(){if(null===j){var e=T();e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__||(e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__=0),j=__$$GLOBAL_REWIRE_NEXT_MODULE_ID__++}return j}function G(){var e=T();return e.__$$GLOBAL_REWIRE_REGISTRY__||(e.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)),e.__$$GLOBAL_REWIRE_REGISTRY__}function D(){var e=A(),t=G(),n=t[e];return n||(t[e]=Object.create(null),n=t[e]),n}($=T()).__rewire_reset_all__||($.__rewire_reset_all__=function(){$.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)});var N="__INTENTIONAL_UNDEFINED__",M={};function B(e){var t=D();if(void 0===t[e])return function(e){switch(e){case"now":return a.d;case"extractors":return c.a;case"win":return f.f;case"queryStringValueForKey":return a.e;case"audioMozSrcObjectCheck":return b;case"arrayBufferRequiresNew":return R;case"arrayDotFromSupport":return p;case"loadedTime":return v;case"promiseWrappedExtractors":return d;case"MPromise":return a.a;case"entropyBitsInNonce":return 80;case"sha256Hex":return l.b;case"md5":return i.a;case"getRandomValue":return I;case"browserFeatures":return m;case"getUrlDomain":return s.b;case"getHashTimestampWithSalt":return w;case"hashUrlWithAuthorityCheck":return s.c;case"PartitionedUrl":return s.a;case"sha256WithSalt":return s.d;case"transformFeatureValues":return O;case"MStorage":return a.b;case"CanvasExtractor":return u.a;case"buildPayload":return g}return}(e);var n=t[e];return n===N?void 0:n}function W(e,t){var n=D();return"object"===y(e)?(Object.keys(e).forEach((function(t){n[t]=e[t]})),function(){Object.keys(e).forEach((function(t){P(e)}))}):(n[e]=void 0===t?N:t,function(){P(e)})}function P(e){var t=D();delete t[e],0==Object.keys(t).length&&delete G()[A]}function k(e){var t=D(),n=Object.keys(e),r={};function _(){n.forEach((function(e){t[e]=r[e]}))}return function(o){n.forEach((function(n){r[n]=t[n],t[n]=e[n]}));var i=o();return i&&"function"==typeof i.then?i.then(_).catch(_):_(),i}}!function(){function e(e,t){Object.defineProperty(M,e,{value:t,enumerable:!1,configurable:!0})}e("__get__",B),e("__GetDependency__",B),e("__Rewire__",W),e("__set__",W),e("__reset__",P),e("__ResetDependency__",P),e("__with__",k)}();var x=y(S);function U(e,t){Object.defineProperty(S,e,{value:t,enumerable:!1,configurable:!0})}"object"!==x&&"function"!==x||!Object.isExtensible(S)||(U("__get__",B),U("__GetDependency__",B),U("__Rewire__",W),U("__set__",W),U("__reset__",P),U("__ResetDependency__",P),U("__with__",k),U("__RewireAPI__",M))}).call(this,n(3))},function(e,t,n){var r;!function(_){"use strict";function o(e,t){var n=(65535&e)+(65535&t);return(e>>16)+(t>>16)+(n>>16)<<16|65535&n}function i(e,t,n,r,_,i){return o((c=o(o(t,e),o(r,i)))<<(u=_)|c>>>32-u,n);var c,u}function c(e,t,n,r,_,o,c){return i(t&n|~t&r,e,t,_,o,c)}function u(e,t,n,r,_,o,c){return i(t&r|n&~r,e,t,_,o,c)}function a(e,t,n,r,_,o,c){return i(t^n^r,e,t,_,o,c)}function f(e,t,n,r,_,o,c){return i(n^(t|~r),e,t,_,o,c)}function s(e,t){var n,r,_,i,s;e[t>>5]|=128<<t%32,e[14+(t+64>>>9<<4)]=t;var l=1732584193,y=-271733879,E=-1732584194,h=271733878;for(n=0;n<e.length;n+=16)r=l,_=y,i=E,s=h,l=c(l,y,E,h,e[n],7,-680876936),h=c(h,l,y,E,e[n+1],12,-389564586),E=c(E,h,l,y,e[n+2],17,606105819),y=c(y,E,h,l,e[n+3],22,-1044525330),l=c(l,y,E,h,e[n+4],7,-176418897),h=c(h,l,y,E,e[n+5],12,1200080426),E=c(E,h,l,y,e[n+6],17,-1473231341),y=c(y,E,h,l,e[n+7],22,-45705983),l=c(l,y,E,h,e[n+8],7,1770035416),h=c(h,l,y,E,e[n+9],12,-1958414417),E=c(E,h,l,y,e[n+10],17,-42063),y=c(y,E,h,l,e[n+11],22,-1990404162),l=c(l,y,E,h,e[n+12],7,1804603682),h=c(h,l,y,E,e[n+13],12,-40341101),E=c(E,h,l,y,e[n+14],17,-1502002290),l=u(l,y=c(y,E,h,l,e[n+15],22,1236535329),E,h,e[n+1],5,-165796510),h=u(h,l,y,E,e[n+6],9,-1069501632),E=u(E,h,l,y,e[n+11],14,643717713),y=u(y,E,h,l,e[n],20,-373897302),l=u(l,y,E,h,e[n+5],5,-701558691),h=u(h,l,y,E,e[n+10],9,38016083),E=u(E,h,l,y,e[n+15],14,-660478335),y=u(y,E,h,l,e[n+4],20,-405537848),l=u(l,y,E,h,e[n+9],5,568446438),h=u(h,l,y,E,e[n+14],9,-1019803690),E=u(E,h,l,y,e[n+3],14,-187363961),y=u(y,E,h,l,e[n+8],20,1163531501),l=u(l,y,E,h,e[n+13],5,-1444681467),h=u(h,l,y,E,e[n+2],9,-51403784),E=u(E,h,l,y,e[n+7],14,1735328473),l=a(l,y=u(y,E,h,l,e[n+12],20,-1926607734),E,h,e[n+5],4,-378558),h=a(h,l,y,E,e[n+8],11,-2022574463),E=a(E,h,l,y,e[n+11],16,1839030562),y=a(y,E,h,l,e[n+14],23,-35309556),l=a(l,y,E,h,e[n+1],4,-1530992060),h=a(h,l,y,E,e[n+4],11,1272893353),E=a(E,h,l,y,e[n+7],16,-155497632),y=a(y,E,h,l,e[n+10],23,-1094730640),l=a(l,y,E,h,e[n+13],4,681279174),h=a(h,l,y,E,e[n],11,-358537222),E=a(E,h,l,y,e[n+3],16,-722521979),y=a(y,E,h,l,e[n+6],23,76029189),l=a(l,y,E,h,e[n+9],4,-640364487),h=a(h,l,y,E,e[n+12],11,-421815835),E=a(E,h,l,y,e[n+15],16,530742520),l=f(l,y=a(y,E,h,l,e[n+2],23,-995338651),E,h,e[n],6,-198630844),h=f(h,l,y,E,e[n+7],10,1126891415),E=f(E,h,l,y,e[n+14],15,-1416354905),y=f(y,E,h,l,e[n+5],21,-57434055),l=f(l,y,E,h,e[n+12],6,1700485571),h=f(h,l,y,E,e[n+3],10,-1894986606),E=f(E,h,l,y,e[n+10],15,-1051523),y=f(y,E,h,l,e[n+1],21,-2054922799),l=f(l,y,E,h,e[n+8],6,1873313359),h=f(h,l,y,E,e[n+15],10,-30611744),E=f(E,h,l,y,e[n+6],15,-1560198380),y=f(y,E,h,l,e[n+13],21,1309151649),l=f(l,y,E,h,e[n+4],6,-145523070),h=f(h,l,y,E,e[n+11],10,-1120210379),E=f(E,h,l,y,e[n+2],15,718787259),y=f(y,E,h,l,e[n+9],21,-343485551),l=o(l,r),y=o(y,_),E=o(E,i),h=o(h,s);return[l,y,E,h]}function l(e){var t,n="",r=32*e.length;for(t=0;t<r;t+=8)n+=String.fromCharCode(e[t>>5]>>>t%32&255);return n}function y(e){var t,n=[];for(n[(e.length>>2)-1]=void 0,t=0;t<n.length;t+=1)n[t]=0;var r=8*e.length;for(t=0;t<r;t+=8)n[t>>5]|=(255&e.charCodeAt(t/8))<<t%32;return n}function E(e){var t,n,r="0123456789abcdef",_="";for(n=0;n<e.length;n+=1)t=e.charCodeAt(n),_+=r.charAt(t>>>4&15)+r.charAt(15&t);return _}function h(e){return unescape(encodeURIComponent(e))}function v(e){return function(e){return l(s(y(e),8*e.length))}(h(e))}function d(e,t){return function(e,t){var n,r,_=y(e),o=[],i=[];for(o[15]=i[15]=void 0,_.length>16&&(_=s(_,8*e.length)),n=0;n<16;n+=1)o[n]=909522486^_[n],i[n]=1549556828^_[n];return r=s(o.concat(y(t)),512+8*t.length),l(s(i.concat(r),640))}(h(e),h(t))}function b(e,t,n){return t?n?d(t,e):E(d(t,e)):n?v(e):E(v(e))}void 0===(r=function(){return b}.call(t,n,t,e))||(e.exports=r)}()},function(e,t,n){"use strict";(function(e){var r=n(7),_=n.n(r),o=n(2),i=n(1),c=n(0);function u(e){return u="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},u(e)}var a=new(b("Extractor"))("",(function(){var e=b("doc").createElement("canvas");try{e.height=60,e.width=400,e.style.display="inline";var t=e.getContext("2d");t.textBaseline="alphabetic",t.fillStyle="#f60",t.fillRect(125,1,62,20),t.fillStyle="#069",t.font="11pt Arial",t.fillText("Cwm fjordbank glyphs vext quiz, π",2,15),t.fillStyle="rgba(102, 204, 0, 0.7)",t.font="18pt Arial",t.fillText("Cwm fjordbank glyphs vext quiz, π",4,45);var n=e.toDataURL();return b("MPromise").resolve({value:b("md5")(n),internalValue:n})}catch(e){return b("MPromise").resolve("unavailable")}finally{e&&e.parentNode&&e.parentNode.removeChild(e)}}));function f(){try{if(e)return e}catch(e){try{if(window)return window}catch(e){return this}}}t.a=a;var s,l=null;function y(){if(null===l){var e=f();e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__||(e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__=0),l=__$$GLOBAL_REWIRE_NEXT_MODULE_ID__++}return l}function E(){var e=f();return e.__$$GLOBAL_REWIRE_REGISTRY__||(e.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)),e.__$$GLOBAL_REWIRE_REGISTRY__}function h(){var e=y(),t=E(),n=t[e];return n||(t[e]=Object.create(null),n=t[e]),n}(s=f()).__rewire_reset_all__||(s.__rewire_reset_all__=function(){s.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)});var v="__INTENTIONAL_UNDEFINED__",d={};function b(e){var t=h();if(void 0===t[e])return function(e){switch(e){case"Extractor":return o.a;case"doc":return i.b;case"MPromise":return c.a;case"md5":return _.a}return}(e);var n=t[e];return n===v?void 0:n}function R(e,t){var n=h();return"object"===u(e)?(Object.keys(e).forEach((function(t){n[t]=e[t]})),function(){Object.keys(e).forEach((function(t){p(e)}))}):(n[e]=void 0===t?v:t,function(){p(e)})}function p(e){var t=h();delete t[e],0==Object.keys(t).length&&delete E()[y]}function m(e){var t=h(),n=Object.keys(e),r={};function _(){n.forEach((function(e){t[e]=r[e]}))}return function(o){n.forEach((function(n){r[n]=t[n],t[n]=e[n]}));var i=o();return i&&"function"==typeof i.then?i.then(_).catch(_):_(),i}}!function(){function e(e,t){Object.defineProperty(d,e,{value:t,enumerable:!1,configurable:!0})}e("__get__",b),e("__GetDependency__",b),e("__Rewire__",R),e("__set__",R),e("__reset__",p),e("__ResetDependency__",p),e("__with__",m)}();var O=u(a);function L(e,t){Object.defineProperty(a,e,{value:t,enumerable:!1,configurable:!0})}"object"!==O&&"function"!==O||!Object.isExtensible(a)||(L("__get__",b),L("__GetDependency__",b),L("__Rewire__",R),L("__set__",R),L("__reset__",p),L("__ResetDependency__",p),L("__with__",m),L("__RewireAPI__",d))}).call(this,n(3))},function(e,t,n){"use strict";(function(e){function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function _(e){var t,n,r=e,_=function(e,t){return e>>>t|e<<32-t},o=Math.pow,i=o(2,32),c="",u=[],a=8*r.length;h("sha256").h=h("sha256").h||[];var f=h("sha256").h;h("sha256").k=h("sha256").k||[];for(var s=h("sha256").k,l=s.length,y={},E=2;l<64;E+=1)if(!y[E]){for(t=0;t<313;t+=E)y[t]=E;f[l]=o(E,.5)*i|0,s[l]=o(E,1/3)*i|0,l+=1}for(r+="Β";r.length%64-56;)r+="\0";for(t=0;t<r.length;t+=1){if((n=r.charCodeAt(t))>>8)return"";u[t>>2]|=n<<(3-t)%4*8}for(u[u.length]=a/i|0,u[u.length]=a,n=0;n<u.length;){var v=u.slice(n,n+=16),d=f;for(f=f.slice(0,8),t=0;t<64;t+=1){var b=v[t-15],R=v[t-2],p=f[0],m=f[4],O=f[7]+(_(m,6)^_(m,11)^_(m,25))+(m&f[5]^~m&f[6])+s[t]+(v[t]=t<16?v[t]:v[t-16]+(_(b,7)^_(b,18)^b>>>3)+v[t-7]+(_(R,17)^_(R,19)^R>>>10)|0);(f=[O+((_(p,2)^_(p,13)^_(p,22))+(p&f[1]^p&f[2]^f[1]&f[2]))|0].concat(f))[4]=f[4]+O|0}for(t=0;t<8;t+=1)f[t]=f[t]+d[t]|0}for(t=0;t<8;t+=1)for(n=3;n+1;n-=1){var L=f[t]>>8*n&255;c+=String.fromCharCode(L)}return c}function o(e){return btoa(h("sha256bytes")(e)).replace(/\+/g,"-").replace(/\//g,"_").replace(/=+$/,"")}function i(e){new TextEncoder;var t=h("sha256bytes")(e).split("").map((function(e){return e.charCodeAt(0)}));return Array.from(t,(function(e){return("0"+(255&e).toString(16)).slice(-2)})).join("")}function c(){try{if(e)return e}catch(e){try{if(window)return window}catch(e){return this}}}n.d(t,"a",(function(){return o})),n.d(t,"b",(function(){return i}));var u,a=null;function f(){if(null===a){var e=c();e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__||(e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__=0),a=__$$GLOBAL_REWIRE_NEXT_MODULE_ID__++}return a}function s(){var e=c();return e.__$$GLOBAL_REWIRE_REGISTRY__||(e.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)),e.__$$GLOBAL_REWIRE_REGISTRY__}function l(){var e=f(),t=s(),n=t[e];return n||(t[e]=Object.create(null),n=t[e]),n}(u=c()).__rewire_reset_all__||(u.__rewire_reset_all__=function(){u.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)});var y="__INTENTIONAL_UNDEFINED__",E={};function h(e){var t=l();if(void 0===t[e])return function(e){switch(e){case"sha256":return o;case"sha256bytes":return _}return}(e);var n=t[e];return n===y?void 0:n}function v(e,t){var n=l();return"object"===r(e)?(Object.keys(e).forEach((function(t){n[t]=e[t]})),function(){Object.keys(e).forEach((function(t){d(e)}))}):(n[e]=void 0===t?y:t,function(){d(e)})}function d(e){var t=l();delete t[e],0==Object.keys(t).length&&delete s()[f]}function b(e){var t=l(),n=Object.keys(e),r={};function _(){n.forEach((function(e){t[e]=r[e]}))}return function(o){n.forEach((function(n){r[n]=t[n],t[n]=e[n]}));var i=o();return i&&"function"==typeof i.then?i.then(_).catch(_):_(),i}}!function(){function e(e,t){Object.defineProperty(E,e,{value:t,enumerable:!1,configurable:!0})}e("__get__",h),e("__GetDependency__",h),e("__Rewire__",v),e("__set__",v),e("__reset__",d),e("__ResetDependency__",d),e("__with__",b)}()}).call(this,n(3))},function(e,t,n){"use strict";(function(e){n.d(t,"b",(function(){return E})),n.d(t,"a",(function(){return h}));var r=n(29),_=n(6),o=n(1),i=n(0),c=n(4);function u(e){return u="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},u(e)}var a=function(e){var t=I("win").opener||I("win").parent||I("win");if(t&&I("isValidIframePostMessage")(e))try{0;try{var n=JSON.parse(e),r=n.guid,_=n.muid,o=n.sid;t.postMessage(JSON.stringify({originatingScript:"m2",payload:{guid:r,muid:_,sid:o}}),"*")}catch(n){t.postMessage(JSON.stringify({originatingScript:"m",payload:e}),"*")}}catch(e){}},f=function(){return window.btoa||function(e){return e}},s=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:function(){},n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"6";return I("beacon")(I("safeBtoa")()(encodeURIComponent(JSON.stringify(e))),n).then(t)},l=function(e){return JSON&&"function"==typeof JSON.stringify?e?I("safeBeacon")(JSON.stringify({id:"unavailable",e:e,message:e.message,error:e.toString(),fileName:e.fileName,lineNumber:e.lineNumber,columnNumber:e.columnNumber,stack:e.stack,tag:"$npm_package_version",src:"js"})):I("safeBeacon")(JSON.stringify({id:"unavailable",tag:"$npm_package_version",src:"js"})):I("safeBeacon")(e.toString()),e},y=function(e,t,n){return I("deviceId")((function(e){return I("safeBeacon")(e,I("mPostMessage"),n)}),e,t)},E=function(e){var t=e.t,n=void 0!==t&&t,r=e.o,_=void 0===r?{}:r,o=e.v,i=void 0===o?null!=="6"?"6":null:o;try{try{return I("getDevice")(n,_,i).catch(I("beaconErrorHandler"))}catch(e){return I("MPromise").resolve(I("beaconErrorHandler")(e))}}catch(e){}},h=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"6";try{try{return e.url&&(e.url=I("hashUrlWithAuthorityCheck")(new(I("PartitionedUrl"))(e.url)).toString()),I("safeBeacon")(e,null,t)}catch(e){return I("MPromise").resolve(I("beaconErrorHandler")(e))}}catch(e){}};function v(){try{if(e)return e}catch(e){try{if(window)return window}catch(e){return this}}}var d,b=null;function R(){if(null===b){var e=v();e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__||(e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__=0),b=__$$GLOBAL_REWIRE_NEXT_MODULE_ID__++}return b}function p(){var e=v();return e.__$$GLOBAL_REWIRE_REGISTRY__||(e.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)),e.__$$GLOBAL_REWIRE_REGISTRY__}function m(){var e=R(),t=p(),n=t[e];return n||(t[e]=Object.create(null),n=t[e]),n}(d=v()).__rewire_reset_all__||(d.__rewire_reset_all__=function(){d.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)});var O="__INTENTIONAL_UNDEFINED__",L={};function I(e){var t=m();if(void 0===t[e])return function(e){switch(e){case"win":return o.f;case"isValidIframePostMessage":return i.c;case"beacon":return r.a;case"safeBtoa":return f;case"safeBeacon":return s;case"deviceId":return _.a;case"mPostMessage":return a;case"getDevice":return y;case"beaconErrorHandler":return l;case"MPromise":return i.a;case"hashUrlWithAuthorityCheck":return c.c;case"PartitionedUrl":return c.a}return}(e);var n=t[e];return n===O?void 0:n}function w(e,t){var n=m();return"object"===u(e)?(Object.keys(e).forEach((function(t){n[t]=e[t]})),function(){Object.keys(e).forEach((function(t){g(e)}))}):(n[e]=void 0===t?O:t,function(){g(e)})}function g(e){var t=m();delete t[e],0==Object.keys(t).length&&delete p()[R]}function S(e){var t=m(),n=Object.keys(e),r={};function _(){n.forEach((function(e){t[e]=r[e]}))}return function(o){n.forEach((function(n){r[n]=t[n],t[n]=e[n]}));var i=o();return i&&"function"==typeof i.then?i.then(_).catch(_):_(),i}}!function(){function e(e,t){Object.defineProperty(L,e,{value:t,enumerable:!1,configurable:!0})}e("__get__",I),e("__GetDependency__",I),e("__Rewire__",w),e("__set__",w),e("__reset__",g),e("__ResetDependency__",g),e("__with__",S)}()}).call(this,n(3))},function(e,t,n){"use strict";(function(e){var r=n(12),_=n(16),o=n(17),i=n(18),c=n(19),u=n(20),a=n(21),f=n(22),s=n(23),l=n(24),y=n(25),E=n(26),h=n(27),v=n(28),d=n(8);function b(e){return b="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},b(e)}var R=[T("CookieSupportExtractor"),T("DoNotTrackExtractor"),T("LanguageExtractor"),T("PlatformExtractor"),T("PluginsExtractor"),T("ScreenSizeExtractor"),T("TimeZoneOffsetExtractor"),T("TouchSupportExtractor"),T("AvailableStorageExtractor"),T("FontsExtractor"),T("GraphicsConfigurationExtractor"),T("UserAgentExtractor"),T("FlashVersionExtractor"),T("HasAdBlocker"),T("CanvasIdExtractor")];function p(){try{if(e)return e}catch(e){try{if(window)return window}catch(e){return this}}}t.a=R;var m,O=null;function L(){if(null===O){var e=p();e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__||(e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__=0),O=__$$GLOBAL_REWIRE_NEXT_MODULE_ID__++}return O}function I(){var e=p();return e.__$$GLOBAL_REWIRE_REGISTRY__||(e.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)),e.__$$GLOBAL_REWIRE_REGISTRY__}function w(){var e=L(),t=I(),n=t[e];return n||(t[e]=Object.create(null),n=t[e]),n}(m=p()).__rewire_reset_all__||(m.__rewire_reset_all__=function(){m.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)});var g="__INTENTIONAL_UNDEFINED__",S={};function T(e){var t=w();if(void 0===t[e])return function(e){switch(e){case"CookieSupportExtractor":return _.a;case"DoNotTrackExtractor":return o.a;case"LanguageExtractor":return u.a;case"PlatformExtractor":return a.a;case"PluginsExtractor":return f.a;case"ScreenSizeExtractor":return s.a;case"TimeZoneOffsetExtractor":return l.a;case"TouchSupportExtractor":return y.a;case"AvailableStorageExtractor":return r.a;case"FontsExtractor":return i.a;case"GraphicsConfigurationExtractor":return c.a;case"UserAgentExtractor":return E.a;case"FlashVersionExtractor":return h.a;case"HasAdBlocker":return v.a;case"CanvasIdExtractor":return d.a}return}(e);var n=t[e];return n===g?void 0:n}function $(e,t){var n=w();return"object"===b(e)?(Object.keys(e).forEach((function(t){n[t]=e[t]})),function(){Object.keys(e).forEach((function(t){j(e)}))}):(n[e]=void 0===t?g:t,function(){j(e)})}function j(e){var t=w();delete t[e],0==Object.keys(t).length&&delete I()[L]}function A(e){var t=w(),n=Object.keys(e),r={};function _(){n.forEach((function(e){t[e]=r[e]}))}return function(o){n.forEach((function(n){r[n]=t[n],t[n]=e[n]}));var i=o();return i&&"function"==typeof i.then?i.then(_).catch(_):_(),i}}!function(){function e(e,t){Object.defineProperty(S,e,{value:t,enumerable:!1,configurable:!0})}e("__get__",T),e("__GetDependency__",T),e("__Rewire__",$),e("__set__",$),e("__reset__",j),e("__ResetDependency__",j),e("__with__",A)}();var G=b(R);function D(e,t){Object.defineProperty(R,e,{value:t,enumerable:!1,configurable:!0})}"object"!==G&&"function"!==G||!Object.isExtensible(R)||(D("__get__",T),D("__GetDependency__",T),D("__Rewire__",$),D("__set__",$),D("__reset__",j),D("__ResetDependency__",j),D("__with__",A),D("__RewireAPI__",S))}).call(this,n(3))},function(e,t,n){"use strict";(function(e){var r=n(2),_=n(1),o=n(0);function i(e){return i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i(e)}var c=new(v("Extractor"))("",(function(){var e=[];return["sessionStorage","localStorage"].forEach((function(t){try{var n=v("win")[t];if(n){var r="muffins";n.setItem(r,r),n.removeItem(r),e.push(t+"-enabled")}else e.push(t+"-unavailable")}catch(n){e.push(t+"-disabled")}})),v("MPromise").resolve(e.join(", "))}));function u(){try{if(e)return e}catch(e){try{if(window)return window}catch(e){return this}}}t.a=c;var a,f=null;function s(){if(null===f){var e=u();e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__||(e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__=0),f=__$$GLOBAL_REWIRE_NEXT_MODULE_ID__++}return f}function l(){var e=u();return e.__$$GLOBAL_REWIRE_REGISTRY__||(e.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)),e.__$$GLOBAL_REWIRE_REGISTRY__}function y(){var e=s(),t=l(),n=t[e];return n||(t[e]=Object.create(null),n=t[e]),n}(a=u()).__rewire_reset_all__||(a.__rewire_reset_all__=function(){a.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)});var E="__INTENTIONAL_UNDEFINED__",h={};function v(e){var t=y();if(void 0===t[e])return function(e){switch(e){case"Extractor":return r.a;case"win":return _.f;case"MPromise":return o.a}return}(e);var n=t[e];return n===E?void 0:n}function d(e,t){var n=y();return"object"===i(e)?(Object.keys(e).forEach((function(t){n[t]=e[t]})),function(){Object.keys(e).forEach((function(t){b(e)}))}):(n[e]=void 0===t?E:t,function(){b(e)})}function b(e){var t=y();delete t[e],0==Object.keys(t).length&&delete l()[s]}function R(e){var t=y(),n=Object.keys(e),r={};function _(){n.forEach((function(e){t[e]=r[e]}))}return function(o){n.forEach((function(n){r[n]=t[n],t[n]=e[n]}));var i=o();return i&&"function"==typeof i.then?i.then(_).catch(_):_(),i}}!function(){function e(e,t){Object.defineProperty(h,e,{value:t,enumerable:!1,configurable:!0})}e("__get__",v),e("__GetDependency__",v),e("__Rewire__",d),e("__set__",d),e("__reset__",b),e("__ResetDependency__",b),e("__with__",R)}();var p=i(c);function m(e,t){Object.defineProperty(c,e,{value:t,enumerable:!1,configurable:!0})}"object"!==p&&"function"!==p||!Object.isExtensible(c)||(m("__get__",v),m("__GetDependency__",v),m("__Rewire__",d),m("__set__",d),m("__reset__",b),m("__ResetDependency__",b),m("__with__",R),m("__RewireAPI__",h))}).call(this,n(3))},function(e,t,n){"use strict";(function(e){var r=n(14),_=n(15),o=setTimeout,i=void 0!==e?e:null;function c(e){return Boolean(e&&void 0!==e.length)}function u(){}function a(e){if(!(this instanceof a))throw new TypeError("Promises must be constructed via new");if("function"!=typeof e)throw new TypeError("not a function");this._state=0,this._handled=!1,this._value=void 0,this._deferreds=[],h(e,this)}function f(e,t){for(;3===e._state;)e=e._value;0!==e._state?(e._handled=!0,a._immediateFn((function(){var n=1===e._state?t.onFulfilled:t.onRejected;if(null!==n){var r;try{r=n(e._value)}catch(e){return void l(t.promise,e)}s(t.promise,r)}else(1===e._state?s:l)(t.promise,e._value)}))):e._deferreds.push(t)}function s(e,t){try{if(t===e)throw new TypeError("A promise cannot be resolved with itself.");if(t&&("object"==typeof t||"function"==typeof t)){var n=t.then;if(t instanceof a)return e._state=3,e._value=t,void y(e);if("function"==typeof n)return void h((r=n,_=t,function(){r.apply(_,arguments)}),e)}e._state=1,e._value=t,y(e)}catch(t){l(e,t)}var r,_}function l(e,t){e._state=2,e._value=t,y(e)}function y(e){2===e._state&&0===e._deferreds.length&&a._immediateFn((function(){e._handled||a._unhandledRejectionFn(e._value)}));for(var t=0,n=e._deferreds.length;t<n;t++)f(e,e._deferreds[t]);e._deferreds=null}function E(e,t,n){this.onFulfilled="function"==typeof e?e:null,this.onRejected="function"==typeof t?t:null,this.promise=n}function h(e,t){var n=!1;try{e((function(e){n||(n=!0,s(t,e))}),(function(e){n||(n=!0,l(t,e))}))}catch(e){if(n)return;n=!0,l(t,e)}}a.prototype.catch=function(e){return this.then(null,e)},a.prototype.then=function(e,t){var n=new this.constructor(u);return f(this,new E(e,t,n)),n},a.prototype.finally=r.a,a.all=function(e){return new a((function(t,n){if(!c(e))return n(new TypeError("Promise.all accepts an array"));var r=Array.prototype.slice.call(e);if(0===r.length)return t([]);var _=r.length;function o(e,i){try{if(i&&("object"==typeof i||"function"==typeof i)){var c=i.then;if("function"==typeof c)return void c.call(i,(function(t){o(e,t)}),n)}r[e]=i,0==--_&&t(r)}catch(e){n(e)}}for(var i=0;i<r.length;i++)o(i,r[i])}))},a.allSettled=_.a,a.resolve=function(e){return e&&"object"==typeof e&&e.constructor===a?e:new a((function(t){t(e)}))},a.reject=function(e){return new a((function(t,n){n(e)}))},a.race=function(e){return new a((function(t,n){if(!c(e))return n(new TypeError("Promise.race accepts an array"));for(var r=0,_=e.length;r<_;r++)a.resolve(e[r]).then(t,n)}))},a._immediateFn="function"==typeof i&&function(e){i(e)}||function(e){o(e,0)},a._unhandledRejectionFn=function(e){"undefined"!=typeof console&&console},t.a=a}).call(this,n(31).setImmediate)},function(e,t,n){"use strict";t.a=function(e){var t=this.constructor;return this.then((function(n){return t.resolve(e()).then((function(){return n}))}),(function(n){return t.resolve(e()).then((function(){return t.reject(n)}))}))}},function(e,t,n){"use strict";t.a=function(e){return new this((function(t,n){if(!e||void 0===e.length)return n(new TypeError(typeof e+" "+e+" is not iterable(cannot read property Symbol(Symbol.iterator))"));var r=Array.prototype.slice.call(e);if(0===r.length)return t([]);var _=r.length;function o(e,n){if(n&&("object"==typeof n||"function"==typeof n)){var i=n.then;if("function"==typeof i)return void i.call(n,(function(t){o(e,t)}),(function(n){r[e]={status:"rejected",reason:n},0==--_&&t(r)}))}r[e]={status:"fulfilled",value:n},0==--_&&t(r)}for(var i=0;i<r.length;i++)o(i,r[i])}))}},function(e,t,n){"use strict";(function(e){var r=n(2),_=n(1),o=n(0);function i(e){return i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i(e)}var c=new(v("Extractor"))("",(function(){return v("navigator")?v("MPromise").resolve(v("navigator").cookieEnabled.toString()):v("MPromise").resolve("")}));function u(){try{if(e)return e}catch(e){try{if(window)return window}catch(e){return this}}}t.a=c;var a,f=null;function s(){if(null===f){var e=u();e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__||(e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__=0),f=__$$GLOBAL_REWIRE_NEXT_MODULE_ID__++}return f}function l(){var e=u();return e.__$$GLOBAL_REWIRE_REGISTRY__||(e.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)),e.__$$GLOBAL_REWIRE_REGISTRY__}function y(){var e=s(),t=l(),n=t[e];return n||(t[e]=Object.create(null),n=t[e]),n}(a=u()).__rewire_reset_all__||(a.__rewire_reset_all__=function(){a.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)});var E="__INTENTIONAL_UNDEFINED__",h={};function v(e){var t=y();if(void 0===t[e])return function(e){switch(e){case"Extractor":return r.a;case"navigator":return _.c;case"MPromise":return o.a}return}(e);var n=t[e];return n===E?void 0:n}function d(e,t){var n=y();return"object"===i(e)?(Object.keys(e).forEach((function(t){n[t]=e[t]})),function(){Object.keys(e).forEach((function(t){b(e)}))}):(n[e]=void 0===t?E:t,function(){b(e)})}function b(e){var t=y();delete t[e],0==Object.keys(t).length&&delete l()[s]}function R(e){var t=y(),n=Object.keys(e),r={};function _(){n.forEach((function(e){t[e]=r[e]}))}return function(o){n.forEach((function(n){r[n]=t[n],t[n]=e[n]}));var i=o();return i&&"function"==typeof i.then?i.then(_).catch(_):_(),i}}!function(){function e(e,t){Object.defineProperty(h,e,{value:t,enumerable:!1,configurable:!0})}e("__get__",v),e("__GetDependency__",v),e("__Rewire__",d),e("__set__",d),e("__reset__",b),e("__ResetDependency__",b),e("__with__",R)}();var p=i(c);function m(e,t){Object.defineProperty(c,e,{value:t,enumerable:!1,configurable:!0})}"object"!==p&&"function"!==p||!Object.isExtensible(c)||(m("__get__",v),m("__GetDependency__",v),m("__Rewire__",d),m("__set__",d),m("__reset__",b),m("__ResetDependency__",b),m("__with__",R),m("__RewireAPI__",h))}).call(this,n(3))},function(e,t,n){"use strict";(function(e){var r=n(2),_=n(1),o=n(0);function i(e){return i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i(e)}var c=new(v("Extractor"))("",(function(){var e;if(v("navigator"))switch("doNotTrack"in v("navigator")?e=v("navigator").doNotTrack:"msDoNotTrack"in v("navigator")&&(e=v("navigator").msDoNotTrack),e){case"true":case!0:case"1":case"yes":return v("MPromise").resolve("true");default:return v("MPromise").resolve("false")}return v("MPromise").resolve("")}));function u(){try{if(e)return e}catch(e){try{if(window)return window}catch(e){return this}}}t.a=c;var a,f=null;function s(){if(null===f){var e=u();e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__||(e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__=0),f=__$$GLOBAL_REWIRE_NEXT_MODULE_ID__++}return f}function l(){var e=u();return e.__$$GLOBAL_REWIRE_REGISTRY__||(e.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)),e.__$$GLOBAL_REWIRE_REGISTRY__}function y(){var e=s(),t=l(),n=t[e];return n||(t[e]=Object.create(null),n=t[e]),n}(a=u()).__rewire_reset_all__||(a.__rewire_reset_all__=function(){a.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)});var E="__INTENTIONAL_UNDEFINED__",h={};function v(e){var t=y();if(void 0===t[e])return function(e){switch(e){case"Extractor":return r.a;case"navigator":return _.c;case"MPromise":return o.a}return}(e);var n=t[e];return n===E?void 0:n}function d(e,t){var n=y();return"object"===i(e)?(Object.keys(e).forEach((function(t){n[t]=e[t]})),function(){Object.keys(e).forEach((function(t){b(e)}))}):(n[e]=void 0===t?E:t,function(){b(e)})}function b(e){var t=y();delete t[e],0==Object.keys(t).length&&delete l()[s]}function R(e){var t=y(),n=Object.keys(e),r={};function _(){n.forEach((function(e){t[e]=r[e]}))}return function(o){n.forEach((function(n){r[n]=t[n],t[n]=e[n]}));var i=o();return i&&"function"==typeof i.then?i.then(_).catch(_):_(),i}}!function(){function e(e,t){Object.defineProperty(h,e,{value:t,enumerable:!1,configurable:!0})}e("__get__",v),e("__GetDependency__",v),e("__Rewire__",d),e("__set__",d),e("__reset__",b),e("__ResetDependency__",b),e("__with__",R)}();var p=i(c);function m(e,t){Object.defineProperty(c,e,{value:t,enumerable:!1,configurable:!0})}"object"!==p&&"function"!==p||!Object.isExtensible(c)||(m("__get__",v),m("__GetDependency__",v),m("__Rewire__",d),m("__set__",d),m("__reset__",b),m("__ResetDependency__",b),m("__with__",R),m("__RewireAPI__",h))}).call(this,n(3))},function(e,t,n){"use strict";(function(e){var r=n(2),_=n(1),o=n(0);function i(e){return i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i(e)}function c(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null==n)return;var r,_,o=[],i=!0,c=!1;try{for(n=n.call(e);!(i=(r=n.next()).done)&&(o.push(r.value),!t||o.length!==t);i=!0);}catch(e){c=!0,_=e}finally{try{i||null==n.return||n.return()}finally{if(c)throw _}}return o}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return u(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return u(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function u(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var a=[["Andale Mono","mono"],["Arial Black","sans"],["Arial Hebrew","sans"],["Arial MT","sans"],["Arial Narrow","sans"],["Arial Rounded MT Bold","sans"],["Arial Unicode MS","sans"],["Arial","sans"],["Bitstream Vera Sans Mono","mono"],["Book Antiqua","serif"],["Bookman Old Style","serif"],["Calibri","sans"],["Cambria","serif"],["Century Gothic","serif"],["Century Schoolbook","serif"],["Century","serif"],["Comic Sans MS","sans"],["Comic Sans","sans"],["Consolas","mono"],["Courier New","mono"],["Courier","mono"],["Garamond","serif"],["Georgia","serif"],["Helvetica Neue","sans"],["Helvetica","sans"],["Impact","sans"],["Lucida Fax","serif"],["Lucida Handwriting","script"],["Lucida Sans Typewriter","mono"],["Lucida Sans Unicode","sans"],["Lucida Sans","sans"],["MS Gothic","sans"],["MS Outlook","symbol"],["MS PGothic","sans"],["MS Reference Sans Serif","sans"],["MS Serif","serif"],["MYRIAD PRO","sans"],["MYRIAD","sans"],["Microsoft Sans Serif","sans"],["Monaco","sans"],["Monotype Corsiva","script"],["Palatino Linotype","serif"],["Palatino","serif"],["Segoe Script","script"],["Segoe UI Semibold","sans"],["Segoe UI Symbol","symbol"],["Segoe UI","sans"],["Tahoma","sans"],["Times New Roman PS","serif"],["Times New Roman","serif"],["Times","serif"],["Trebuchet MS","sans"],["Verdana","sans"],["Wingdings 3","symbol"],["Wingdings","symbol"]],f=["monospace","sans-serif","serif"],s=new(O("Extractor"))("",(function(){return O("ctx")?new(O("MPromise"))(O("calculateFonts")):O("MPromise").resolve("unavailable")}));t.a=s;function l(e){var t=e.join(", ");O("ctx").font="72px "+t;try{return O("ctx").measureText("mmmmmmmmmmlli").width}catch(e){return O("UNAVAILABLE_WIDTH")}}function y(e,t){var n=O("now")(),r=new(O("MStorage")),_=r.get(O("storageKey"));if(_)return e({async:!0,value:_,calculationTimeMs:O("now")()-n});var o={};O("baseFonts").forEach((function(t){var r=O("safeMeasureText")([t,"monospace"]);if(r===O("UNAVAILABLE_WIDTH"))return e({async:!0,value:"unavailable",calculationTimeMs:O("now")()-n});o[t]=r}));var i=[],u=[],a=O("now")()-n,f=0;!function t(){for(var n=O("now")();f<O("fontsToDetect").length;){var _=c(O("fontsToDetect")[f],2),s=_[0],l="monospace"===_[1]?"sans-serif":"monospace",y=O("safeMeasureText")([s,l]);if(o[l]!==y?(i.push(s),u.push(1)):u.push(0),f+=1,O("now")()-n>50)return a+=O("now")()-n,void setTimeout(t)}r.set(O("storageKey"),u.join("")),e({async:!0,value:u.join(""),internalValue:i.join(", "),calculationTimeMs:a})}()}function E(){try{if(e)return e}catch(e){try{if(window)return window}catch(e){return this}}}var h,v=null;function d(){if(null===v){var e=E();e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__||(e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__=0),v=__$$GLOBAL_REWIRE_NEXT_MODULE_ID__++}return v}function b(){var e=E();return e.__$$GLOBAL_REWIRE_REGISTRY__||(e.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)),e.__$$GLOBAL_REWIRE_REGISTRY__}function R(){var e=d(),t=b(),n=t[e];return n||(t[e]=Object.create(null),n=t[e]),n}(h=E()).__rewire_reset_all__||(h.__rewire_reset_all__=function(){h.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)});var p="__INTENTIONAL_UNDEFINED__",m={};function O(e){var t=R();if(void 0===t[e])return function(e){switch(e){case"ctx":return _.d;case"UNAVAILABLE_WIDTH":return-1;case"now":return o.d;case"MStorage":return o.b;case"storageKey":return"_mf";case"baseFonts":return f;case"safeMeasureText":return l;case"fontsToDetect":return a;case"Extractor":return r.a;case"MPromise":return o.a;case"calculateFonts":return y}return}(e);var n=t[e];return n===p?void 0:n}function L(e,t){var n=R();return"object"===i(e)?(Object.keys(e).forEach((function(t){n[t]=e[t]})),function(){Object.keys(e).forEach((function(t){I(e)}))}):(n[e]=void 0===t?p:t,function(){I(e)})}function I(e){var t=R();delete t[e],0==Object.keys(t).length&&delete b()[d]}function w(e){var t=R(),n=Object.keys(e),r={};function _(){n.forEach((function(e){t[e]=r[e]}))}return function(o){n.forEach((function(n){r[n]=t[n],t[n]=e[n]}));var i=o();return i&&"function"==typeof i.then?i.then(_).catch(_):_(),i}}!function(){function e(e,t){Object.defineProperty(m,e,{value:t,enumerable:!1,configurable:!0})}e("__get__",O),e("__GetDependency__",O),e("__Rewire__",L),e("__set__",L),e("__reset__",I),e("__ResetDependency__",I),e("__with__",w)}();var g=i(s);function S(e,t){Object.defineProperty(s,e,{value:t,enumerable:!1,configurable:!0})}"object"!==g&&"function"!==g||!Object.isExtensible(s)||(S("__get__",O),S("__GetDependency__",O),S("__Rewire__",L),S("__set__",L),S("__reset__",I),S("__ResetDependency__",I),S("__with__",w),S("__RewireAPI__",m))}).call(this,n(3))},function(e,t,n){"use strict";(function(e){var r=n(2),_=n(0);function o(e){return o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},o(e)}var i=new(h("Extractor"))("",(function(){return h("MPromise").resolve("")}));function c(){try{if(e)return e}catch(e){try{if(window)return window}catch(e){return this}}}t.a=i;var u,a=null;function f(){if(null===a){var e=c();e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__||(e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__=0),a=__$$GLOBAL_REWIRE_NEXT_MODULE_ID__++}return a}function s(){var e=c();return e.__$$GLOBAL_REWIRE_REGISTRY__||(e.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)),e.__$$GLOBAL_REWIRE_REGISTRY__}function l(){var e=f(),t=s(),n=t[e];return n||(t[e]=Object.create(null),n=t[e]),n}(u=c()).__rewire_reset_all__||(u.__rewire_reset_all__=function(){u.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)});var y="__INTENTIONAL_UNDEFINED__",E={};function h(e){var t=l();if(void 0===t[e])return function(e){switch(e){case"Extractor":return r.a;case"MPromise":return _.a}return}(e);var n=t[e];return n===y?void 0:n}function v(e,t){var n=l();return"object"===o(e)?(Object.keys(e).forEach((function(t){n[t]=e[t]})),function(){Object.keys(e).forEach((function(t){d(e)}))}):(n[e]=void 0===t?y:t,function(){d(e)})}function d(e){var t=l();delete t[e],0==Object.keys(t).length&&delete s()[f]}function b(e){var t=l(),n=Object.keys(e),r={};function _(){n.forEach((function(e){t[e]=r[e]}))}return function(o){n.forEach((function(n){r[n]=t[n],t[n]=e[n]}));var i=o();return i&&"function"==typeof i.then?i.then(_).catch(_):_(),i}}!function(){function e(e,t){Object.defineProperty(E,e,{value:t,enumerable:!1,configurable:!0})}e("__get__",h),e("__GetDependency__",h),e("__Rewire__",v),e("__set__",v),e("__reset__",d),e("__ResetDependency__",d),e("__with__",b)}();var R=o(i);function p(e,t){Object.defineProperty(i,e,{value:t,enumerable:!1,configurable:!0})}"object"!==R&&"function"!==R||!Object.isExtensible(i)||(p("__get__",h),p("__GetDependency__",h),p("__Rewire__",v),p("__set__",v),p("__reset__",d),p("__ResetDependency__",d),p("__with__",b),p("__RewireAPI__",E))}).call(this,n(3))},function(e,t,n){"use strict";(function(e){var r=n(2),_=n(1),o=n(0);function i(e){return i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i(e)}var c=new(v("Extractor"))("",(function(){if(v("navigator")){if(v("navigator").languages&&v("navigator").languages.join)return v("MPromise").resolve(v("navigator").languages.join(","));if(v("navigator").language)return v("MPromise").resolve(v("navigator").language);if(v("navigator").userLanguage)return v("MPromise").resolve(v("navigator").userLanguage)}return v("MPromise").resolve("")}));function u(){try{if(e)return e}catch(e){try{if(window)return window}catch(e){return this}}}t.a=c;var a,f=null;function s(){if(null===f){var e=u();e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__||(e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__=0),f=__$$GLOBAL_REWIRE_NEXT_MODULE_ID__++}return f}function l(){var e=u();return e.__$$GLOBAL_REWIRE_REGISTRY__||(e.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)),e.__$$GLOBAL_REWIRE_REGISTRY__}function y(){var e=s(),t=l(),n=t[e];return n||(t[e]=Object.create(null),n=t[e]),n}(a=u()).__rewire_reset_all__||(a.__rewire_reset_all__=function(){a.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)});var E="__INTENTIONAL_UNDEFINED__",h={};function v(e){var t=y();if(void 0===t[e])return function(e){switch(e){case"Extractor":return r.a;case"navigator":return _.c;case"MPromise":return o.a}return}(e);var n=t[e];return n===E?void 0:n}function d(e,t){var n=y();return"object"===i(e)?(Object.keys(e).forEach((function(t){n[t]=e[t]})),function(){Object.keys(e).forEach((function(t){b(e)}))}):(n[e]=void 0===t?E:t,function(){b(e)})}function b(e){var t=y();delete t[e],0==Object.keys(t).length&&delete l()[s]}function R(e){var t=y(),n=Object.keys(e),r={};function _(){n.forEach((function(e){t[e]=r[e]}))}return function(o){n.forEach((function(n){r[n]=t[n],t[n]=e[n]}));var i=o();return i&&"function"==typeof i.then?i.then(_).catch(_):_(),i}}!function(){function e(e,t){Object.defineProperty(h,e,{value:t,enumerable:!1,configurable:!0})}e("__get__",v),e("__GetDependency__",v),e("__Rewire__",d),e("__set__",d),e("__reset__",b),e("__ResetDependency__",b),e("__with__",R)}();var p=i(c);function m(e,t){Object.defineProperty(c,e,{value:t,enumerable:!1,configurable:!0})}"object"!==p&&"function"!==p||!Object.isExtensible(c)||(m("__get__",v),m("__GetDependency__",v),m("__Rewire__",d),m("__set__",d),m("__reset__",b),m("__ResetDependency__",b),m("__with__",R),m("__RewireAPI__",h))}).call(this,n(3))},function(e,t,n){"use strict";(function(e){var r=n(2),_=n(1),o=n(0);function i(e){return i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i(e)}var c=new(v("Extractor"))("",(function(){return v("navigator")?v("MPromise").resolve(v("navigator").platform):v("MPromise").resolve("")}));function u(){try{if(e)return e}catch(e){try{if(window)return window}catch(e){return this}}}t.a=c;var a,f=null;function s(){if(null===f){var e=u();e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__||(e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__=0),f=__$$GLOBAL_REWIRE_NEXT_MODULE_ID__++}return f}function l(){var e=u();return e.__$$GLOBAL_REWIRE_REGISTRY__||(e.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)),e.__$$GLOBAL_REWIRE_REGISTRY__}function y(){var e=s(),t=l(),n=t[e];return n||(t[e]=Object.create(null),n=t[e]),n}(a=u()).__rewire_reset_all__||(a.__rewire_reset_all__=function(){a.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)});var E="__INTENTIONAL_UNDEFINED__",h={};function v(e){var t=y();if(void 0===t[e])return function(e){switch(e){case"Extractor":return r.a;case"navigator":return _.c;case"MPromise":return o.a}return}(e);var n=t[e];return n===E?void 0:n}function d(e,t){var n=y();return"object"===i(e)?(Object.keys(e).forEach((function(t){n[t]=e[t]})),function(){Object.keys(e).forEach((function(t){b(e)}))}):(n[e]=void 0===t?E:t,function(){b(e)})}function b(e){var t=y();delete t[e],0==Object.keys(t).length&&delete l()[s]}function R(e){var t=y(),n=Object.keys(e),r={};function _(){n.forEach((function(e){t[e]=r[e]}))}return function(o){n.forEach((function(n){r[n]=t[n],t[n]=e[n]}));var i=o();return i&&"function"==typeof i.then?i.then(_).catch(_):_(),i}}!function(){function e(e,t){Object.defineProperty(h,e,{value:t,enumerable:!1,configurable:!0})}e("__get__",v),e("__GetDependency__",v),e("__Rewire__",d),e("__set__",d),e("__reset__",b),e("__ResetDependency__",b),e("__with__",R)}();var p=i(c);function m(e,t){Object.defineProperty(c,e,{value:t,enumerable:!1,configurable:!0})}"object"!==p&&"function"!==p||!Object.isExtensible(c)||(m("__get__",v),m("__GetDependency__",v),m("__Rewire__",d),m("__set__",d),m("__reset__",b),m("__ResetDependency__",b),m("__with__",R),m("__RewireAPI__",h))}).call(this,n(3))},function(e,t,n){"use strict";(function(e){var r=n(5),_=n.n(r),o=n(2),i=n(1),c=n(0);function u(e){return u="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},u(e)}var a=new(b("Extractor"))("",(function(){if(b("navigator")){var e=_()(b("navigator").plugins||[],(function(e){var t=_()(e,(function(e){return[e.type,e.suffixes]})).join("++");return[e.name,e.filename,t]})).join(", ");return b("MPromise").resolve(e)}return b("MPromise").resolve("")}));function f(){try{if(e)return e}catch(e){try{if(window)return window}catch(e){return this}}}t.a=a;var s,l=null;function y(){if(null===l){var e=f();e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__||(e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__=0),l=__$$GLOBAL_REWIRE_NEXT_MODULE_ID__++}return l}function E(){var e=f();return e.__$$GLOBAL_REWIRE_REGISTRY__||(e.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)),e.__$$GLOBAL_REWIRE_REGISTRY__}function h(){var e=y(),t=E(),n=t[e];return n||(t[e]=Object.create(null),n=t[e]),n}(s=f()).__rewire_reset_all__||(s.__rewire_reset_all__=function(){s.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)});var v="__INTENTIONAL_UNDEFINED__",d={};function b(e){var t=h();if(void 0===t[e])return function(e){switch(e){case"Extractor":return o.a;case"navigator":return i.c;case"MPromise":return c.a}return}(e);var n=t[e];return n===v?void 0:n}function R(e,t){var n=h();return"object"===u(e)?(Object.keys(e).forEach((function(t){n[t]=e[t]})),function(){Object.keys(e).forEach((function(t){p(e)}))}):(n[e]=void 0===t?v:t,function(){p(e)})}function p(e){var t=h();delete t[e],0==Object.keys(t).length&&delete E()[y]}function m(e){var t=h(),n=Object.keys(e),r={};function _(){n.forEach((function(e){t[e]=r[e]}))}return function(o){n.forEach((function(n){r[n]=t[n],t[n]=e[n]}));var i=o();return i&&"function"==typeof i.then?i.then(_).catch(_):_(),i}}!function(){function e(e,t){Object.defineProperty(d,e,{value:t,enumerable:!1,configurable:!0})}e("__get__",b),e("__GetDependency__",b),e("__Rewire__",R),e("__set__",R),e("__reset__",p),e("__ResetDependency__",p),e("__with__",m)}();var O=u(a);function L(e,t){Object.defineProperty(a,e,{value:t,enumerable:!1,configurable:!0})}"object"!==O&&"function"!==O||!Object.isExtensible(a)||(L("__get__",b),L("__GetDependency__",b),L("__Rewire__",R),L("__set__",R),L("__reset__",p),L("__ResetDependency__",p),L("__with__",m),L("__RewireAPI__",d))}).call(this,n(3))},function(e,t,n){"use strict";(function(e){var r=n(2),_=n(1),o=n(0);function i(e){return i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i(e)}var c=new(v("Extractor"))("",(function(){if(v("screen")){var e=v("screen"),t=v("win"),n=e.availWidth+"w_"+e.availHeight+"h_"+e.colorDepth+"d_"+t.devicePixelRatio+"r";return v("MPromise").resolve(n)}return v("MPromise").resolve("")}));function u(){try{if(e)return e}catch(e){try{if(window)return window}catch(e){return this}}}t.a=c;var a,f=null;function s(){if(null===f){var e=u();e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__||(e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__=0),f=__$$GLOBAL_REWIRE_NEXT_MODULE_ID__++}return f}function l(){var e=u();return e.__$$GLOBAL_REWIRE_REGISTRY__||(e.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)),e.__$$GLOBAL_REWIRE_REGISTRY__}function y(){var e=s(),t=l(),n=t[e];return n||(t[e]=Object.create(null),n=t[e]),n}(a=u()).__rewire_reset_all__||(a.__rewire_reset_all__=function(){a.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)});var E="__INTENTIONAL_UNDEFINED__",h={};function v(e){var t=y();if(void 0===t[e])return function(e){switch(e){case"Extractor":return r.a;case"screen":return _.e;case"win":return _.f;case"MPromise":return o.a}return}(e);var n=t[e];return n===E?void 0:n}function d(e,t){var n=y();return"object"===i(e)?(Object.keys(e).forEach((function(t){n[t]=e[t]})),function(){Object.keys(e).forEach((function(t){b(e)}))}):(n[e]=void 0===t?E:t,function(){b(e)})}function b(e){var t=y();delete t[e],0==Object.keys(t).length&&delete l()[s]}function R(e){var t=y(),n=Object.keys(e),r={};function _(){n.forEach((function(e){t[e]=r[e]}))}return function(o){n.forEach((function(n){r[n]=t[n],t[n]=e[n]}));var i=o();return i&&"function"==typeof i.then?i.then(_).catch(_):_(),i}}!function(){function e(e,t){Object.defineProperty(h,e,{value:t,enumerable:!1,configurable:!0})}e("__get__",v),e("__GetDependency__",v),e("__Rewire__",d),e("__set__",d),e("__reset__",b),e("__ResetDependency__",b),e("__with__",R)}();var p=i(c);function m(e,t){Object.defineProperty(c,e,{value:t,enumerable:!1,configurable:!0})}"object"!==p&&"function"!==p||!Object.isExtensible(c)||(m("__get__",v),m("__GetDependency__",v),m("__Rewire__",d),m("__set__",d),m("__reset__",b),m("__ResetDependency__",b),m("__with__",R),m("__RewireAPI__",h))}).call(this,n(3))},function(e,t,n){"use strict";(function(e){var r=n(2),_=n(1),o=n(0);function i(e){return i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i(e)}var c=new(v("Extractor"))("",(function(){if(v("date")){var e=-v("date").getTimezoneOffset()/60;return v("MPromise").resolve(e.toString())}return v("MPromise").resolve("")}));function u(){try{if(e)return e}catch(e){try{if(window)return window}catch(e){return this}}}t.a=c;var a,f=null;function s(){if(null===f){var e=u();e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__||(e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__=0),f=__$$GLOBAL_REWIRE_NEXT_MODULE_ID__++}return f}function l(){var e=u();return e.__$$GLOBAL_REWIRE_REGISTRY__||(e.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)),e.__$$GLOBAL_REWIRE_REGISTRY__}function y(){var e=s(),t=l(),n=t[e];return n||(t[e]=Object.create(null),n=t[e]),n}(a=u()).__rewire_reset_all__||(a.__rewire_reset_all__=function(){a.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)});var E="__INTENTIONAL_UNDEFINED__",h={};function v(e){var t=y();if(void 0===t[e])return function(e){switch(e){case"Extractor":return r.a;case"date":return _.a;case"MPromise":return o.a}return}(e);var n=t[e];return n===E?void 0:n}function d(e,t){var n=y();return"object"===i(e)?(Object.keys(e).forEach((function(t){n[t]=e[t]})),function(){Object.keys(e).forEach((function(t){b(e)}))}):(n[e]=void 0===t?E:t,function(){b(e)})}function b(e){var t=y();delete t[e],0==Object.keys(t).length&&delete l()[s]}function R(e){var t=y(),n=Object.keys(e),r={};function _(){n.forEach((function(e){t[e]=r[e]}))}return function(o){n.forEach((function(n){r[n]=t[n],t[n]=e[n]}));var i=o();return i&&"function"==typeof i.then?i.then(_).catch(_):_(),i}}!function(){function e(e,t){Object.defineProperty(h,e,{value:t,enumerable:!1,configurable:!0})}e("__get__",v),e("__GetDependency__",v),e("__Rewire__",d),e("__set__",d),e("__reset__",b),e("__ResetDependency__",b),e("__with__",R)}();var p=i(c);function m(e,t){Object.defineProperty(c,e,{value:t,enumerable:!1,configurable:!0})}"object"!==p&&"function"!==p||!Object.isExtensible(c)||(m("__get__",v),m("__GetDependency__",v),m("__Rewire__",d),m("__set__",d),m("__reset__",b),m("__ResetDependency__",b),m("__with__",R),m("__RewireAPI__",h))}).call(this,n(3))},function(e,t,n){"use strict";(function(e){var r=n(2),_=n(1),o=n(0);function i(e){return i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i(e)}var c=new(v("Extractor"))("",(function(){if(v("win")&&v("doc")){var e="ontouchstart"in window||window.DocumentTouch&&v("doc")instanceof window.DocumentTouch||!1;return v("MPromise").resolve(e.toString())}return v("MPromise").resolve("")}));function u(){try{if(e)return e}catch(e){try{if(window)return window}catch(e){return this}}}t.a=c;var a,f=null;function s(){if(null===f){var e=u();e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__||(e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__=0),f=__$$GLOBAL_REWIRE_NEXT_MODULE_ID__++}return f}function l(){var e=u();return e.__$$GLOBAL_REWIRE_REGISTRY__||(e.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)),e.__$$GLOBAL_REWIRE_REGISTRY__}function y(){var e=s(),t=l(),n=t[e];return n||(t[e]=Object.create(null),n=t[e]),n}(a=u()).__rewire_reset_all__||(a.__rewire_reset_all__=function(){a.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)});var E="__INTENTIONAL_UNDEFINED__",h={};function v(e){var t=y();if(void 0===t[e])return function(e){switch(e){case"Extractor":return r.a;case"win":return _.f;case"doc":return _.b;case"MPromise":return o.a}return}(e);var n=t[e];return n===E?void 0:n}function d(e,t){var n=y();return"object"===i(e)?(Object.keys(e).forEach((function(t){n[t]=e[t]})),function(){Object.keys(e).forEach((function(t){b(e)}))}):(n[e]=void 0===t?E:t,function(){b(e)})}function b(e){var t=y();delete t[e],0==Object.keys(t).length&&delete l()[s]}function R(e){var t=y(),n=Object.keys(e),r={};function _(){n.forEach((function(e){t[e]=r[e]}))}return function(o){n.forEach((function(n){r[n]=t[n],t[n]=e[n]}));var i=o();return i&&"function"==typeof i.then?i.then(_).catch(_):_(),i}}!function(){function e(e,t){Object.defineProperty(h,e,{value:t,enumerable:!1,configurable:!0})}e("__get__",v),e("__GetDependency__",v),e("__Rewire__",d),e("__set__",d),e("__reset__",b),e("__ResetDependency__",b),e("__with__",R)}();var p=i(c);function m(e,t){Object.defineProperty(c,e,{value:t,enumerable:!1,configurable:!0})}"object"!==p&&"function"!==p||!Object.isExtensible(c)||(m("__get__",v),m("__GetDependency__",v),m("__Rewire__",d),m("__set__",d),m("__reset__",b),m("__ResetDependency__",b),m("__with__",R),m("__RewireAPI__",h))}).call(this,n(3))},function(e,t,n){"use strict";(function(e){var r=n(2),_=n(1),o=n(0);function i(e){return i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i(e)}var c=new(v("Extractor"))("",(function(){return v("navigator")?v("MPromise").resolve(v("navigator").userAgent):v("MPromise").resolve("")}));function u(){try{if(e)return e}catch(e){try{if(window)return window}catch(e){return this}}}t.a=c;var a,f=null;function s(){if(null===f){var e=u();e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__||(e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__=0),f=__$$GLOBAL_REWIRE_NEXT_MODULE_ID__++}return f}function l(){var e=u();return e.__$$GLOBAL_REWIRE_REGISTRY__||(e.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)),e.__$$GLOBAL_REWIRE_REGISTRY__}function y(){var e=s(),t=l(),n=t[e];return n||(t[e]=Object.create(null),n=t[e]),n}(a=u()).__rewire_reset_all__||(a.__rewire_reset_all__=function(){a.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)});var E="__INTENTIONAL_UNDEFINED__",h={};function v(e){var t=y();if(void 0===t[e])return function(e){switch(e){case"Extractor":return r.a;case"navigator":return _.c;case"MPromise":return o.a}return}(e);var n=t[e];return n===E?void 0:n}function d(e,t){var n=y();return"object"===i(e)?(Object.keys(e).forEach((function(t){n[t]=e[t]})),function(){Object.keys(e).forEach((function(t){b(e)}))}):(n[e]=void 0===t?E:t,function(){b(e)})}function b(e){var t=y();delete t[e],0==Object.keys(t).length&&delete l()[s]}function R(e){var t=y(),n=Object.keys(e),r={};function _(){n.forEach((function(e){t[e]=r[e]}))}return function(o){n.forEach((function(n){r[n]=t[n],t[n]=e[n]}));var i=o();return i&&"function"==typeof i.then?i.then(_).catch(_):_(),i}}!function(){function e(e,t){Object.defineProperty(h,e,{value:t,enumerable:!1,configurable:!0})}e("__get__",v),e("__GetDependency__",v),e("__Rewire__",d),e("__set__",d),e("__reset__",b),e("__ResetDependency__",b),e("__with__",R)}();var p=i(c);function m(e,t){Object.defineProperty(c,e,{value:t,enumerable:!1,configurable:!0})}"object"!==p&&"function"!==p||!Object.isExtensible(c)||(m("__get__",v),m("__GetDependency__",v),m("__Rewire__",d),m("__set__",d),m("__reset__",b),m("__ResetDependency__",b),m("__with__",R),m("__RewireAPI__",h))}).call(this,n(3))},function(e,t,n){"use strict";(function(e){var r=n(2),_=n(1),o=n(0);function i(e){return i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i(e)}var c=new(v("Extractor"))("",(function(){try{if(v("win").ActiveXObject){var e=new(v("win").ActiveXObject)("ShockwaveFlash.ShockwaveFlash").GetVariable("$version");return v("MPromise").resolve(e)}}catch(e){}var t=v("navigator"),n=t.plugins,r=t.mimeTypes;if(!r)return v("MPromise").resolve("mime-types-unavailable");var _=r["application/x-shockwave-flash"];if(n&&_&&_.enabledPlugin){var o=n["Shockwave Flash 2.0"]||n["Shockwave Flash"];return v("MPromise").resolve(o?o.description:"no-flash-plugin")}return v("MPromise").resolve("")}));function u(){try{if(e)return e}catch(e){try{if(window)return window}catch(e){return this}}}t.a=c;var a,f=null;function s(){if(null===f){var e=u();e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__||(e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__=0),f=__$$GLOBAL_REWIRE_NEXT_MODULE_ID__++}return f}function l(){var e=u();return e.__$$GLOBAL_REWIRE_REGISTRY__||(e.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)),e.__$$GLOBAL_REWIRE_REGISTRY__}function y(){var e=s(),t=l(),n=t[e];return n||(t[e]=Object.create(null),n=t[e]),n}(a=u()).__rewire_reset_all__||(a.__rewire_reset_all__=function(){a.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)});var E="__INTENTIONAL_UNDEFINED__",h={};function v(e){var t=y();if(void 0===t[e])return function(e){switch(e){case"Extractor":return r.a;case"win":return _.f;case"MPromise":return o.a;case"navigator":return _.c}return}(e);var n=t[e];return n===E?void 0:n}function d(e,t){var n=y();return"object"===i(e)?(Object.keys(e).forEach((function(t){n[t]=e[t]})),function(){Object.keys(e).forEach((function(t){b(e)}))}):(n[e]=void 0===t?E:t,function(){b(e)})}function b(e){var t=y();delete t[e],0==Object.keys(t).length&&delete l()[s]}function R(e){var t=y(),n=Object.keys(e),r={};function _(){n.forEach((function(e){t[e]=r[e]}))}return function(o){n.forEach((function(n){r[n]=t[n],t[n]=e[n]}));var i=o();return i&&"function"==typeof i.then?i.then(_).catch(_):_(),i}}!function(){function e(e,t){Object.defineProperty(h,e,{value:t,enumerable:!1,configurable:!0})}e("__get__",v),e("__GetDependency__",v),e("__Rewire__",d),e("__set__",d),e("__reset__",b),e("__ResetDependency__",b),e("__with__",R)}();var p=i(c);function m(e,t){Object.defineProperty(c,e,{value:t,enumerable:!1,configurable:!0})}"object"!==p&&"function"!==p||!Object.isExtensible(c)||(m("__get__",v),m("__GetDependency__",v),m("__Rewire__",d),m("__set__",d),m("__reset__",b),m("__ResetDependency__",b),m("__with__",R),m("__RewireAPI__",h))}).call(this,n(3))},function(e,t,n){"use strict";(function(e){var r=n(2),_=n(1),o=n(0);function i(e){return i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i(e)}var c=new(v("Extractor"))("",(function(){var e=function(e){var t=new(v("MStorage")),n=t.get(v("adblockerStorageKey")),r=v("now")();if(n)return e({value:n,async:!0,calculationTimeMs:v("now")()-r});var _=v("doc").createElement("div");_.innerHTML=" ",_.className="pub_300x250 pub_300x250m pub_728x90 text-ad textAd text_ad text_ads text-ads text-ad-links",_.style.cssText="\n width: 1px !important; height: 1px !important;\n position: absolute !important; left: -10000px !important;\n top: -1000px !important;",v("doc").body.appendChild(_);var o=v("now")()-r;setTimeout((function(){var n=v("now")(),r=0===_.clientHeight||0===_.clientWidth;v("doc").body.removeChild(_);var i=o+(v("now")()-n);t.set(v("adblockerStorageKey"),r),e({value:r.toString(),async:!0,calculationTimeMs:i})}),20)};return new(v("MPromise"))((function(t,n){"complete"===v("doc").readyState||"loaded"===v("doc").readyState||v("doc").body?e(t):v("doc").addEventListener("DOMContentLoaded",e.bind(null,t))}))}));function u(){try{if(e)return e}catch(e){try{if(window)return window}catch(e){return this}}}t.a=c;var a,f=null;function s(){if(null===f){var e=u();e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__||(e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__=0),f=__$$GLOBAL_REWIRE_NEXT_MODULE_ID__++}return f}function l(){var e=u();return e.__$$GLOBAL_REWIRE_REGISTRY__||(e.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)),e.__$$GLOBAL_REWIRE_REGISTRY__}function y(){var e=s(),t=l(),n=t[e];return n||(t[e]=Object.create(null),n=t[e]),n}(a=u()).__rewire_reset_all__||(a.__rewire_reset_all__=function(){a.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)});var E="__INTENTIONAL_UNDEFINED__",h={};function v(e){var t=y();if(void 0===t[e])return function(e){switch(e){case"Extractor":return r.a;case"MStorage":return o.b;case"adblockerStorageKey":return"_ab";case"now":return o.d;case"doc":return _.b;case"MPromise":return o.a}return}(e);var n=t[e];return n===E?void 0:n}function d(e,t){var n=y();return"object"===i(e)?(Object.keys(e).forEach((function(t){n[t]=e[t]})),function(){Object.keys(e).forEach((function(t){b(e)}))}):(n[e]=void 0===t?E:t,function(){b(e)})}function b(e){var t=y();delete t[e],0==Object.keys(t).length&&delete l()[s]}function R(e){var t=y(),n=Object.keys(e),r={};function _(){n.forEach((function(e){t[e]=r[e]}))}return function(o){n.forEach((function(n){r[n]=t[n],t[n]=e[n]}));var i=o();return i&&"function"==typeof i.then?i.then(_).catch(_):_(),i}}!function(){function e(e,t){Object.defineProperty(h,e,{value:t,enumerable:!1,configurable:!0})}e("__get__",v),e("__GetDependency__",v),e("__Rewire__",d),e("__set__",d),e("__reset__",b),e("__ResetDependency__",b),e("__with__",R)}();var p=i(c);function m(e,t){Object.defineProperty(c,e,{value:t,enumerable:!1,configurable:!0})}"object"!==p&&"function"!==p||!Object.isExtensible(c)||(m("__get__",v),m("__GetDependency__",v),m("__Rewire__",d),m("__set__",d),m("__reset__",b),m("__ResetDependency__",b),m("__with__",R),m("__RewireAPI__",h))}).call(this,n(3))},function(e,t,n){"use strict";(function(e){n.d(t,"a",(function(){return i}));var r=n(1),_=n(0);function o(e){return o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},o(e)}function i(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"6";return new(h("MPromise"))((function(n,r){if(null==t)return r();var _;_=void 0!==h("win").XDomainRequest?new(h("win").XDomainRequest):new(h("win").XMLHttpRequest);try{_.withCredentials=!0}catch(e){}var o;o="https://m.stripe.com/"+t,_.onreadystatechange=function(){if(_.readyState===XMLHttpRequest.DONE&&h("win").StripeM){var e=_.responseText;200===_.status?(h("win").StripeM.__sid=e,n(e)):r()}},_.open("POST",o,!0),_.send(e)}))}function c(){try{if(e)return e}catch(e){try{if(window)return window}catch(e){return this}}}var u,a=null;function f(){if(null===a){var e=c();e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__||(e.__$$GLOBAL_REWIRE_NEXT_MODULE_ID__=0),a=__$$GLOBAL_REWIRE_NEXT_MODULE_ID__++}return a}function s(){var e=c();return e.__$$GLOBAL_REWIRE_REGISTRY__||(e.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)),e.__$$GLOBAL_REWIRE_REGISTRY__}function l(){var e=f(),t=s(),n=t[e];return n||(t[e]=Object.create(null),n=t[e]),n}(u=c()).__rewire_reset_all__||(u.__rewire_reset_all__=function(){u.__$$GLOBAL_REWIRE_REGISTRY__=Object.create(null)});var y="__INTENTIONAL_UNDEFINED__",E={};function h(e){var t=l();if(void 0===t[e])return function(e){switch(e){case"MPromise":return _.a;case"win":return r.f}return}(e);var n=t[e];return n===y?void 0:n}function v(e,t){var n=l();return"object"===o(e)?(Object.keys(e).forEach((function(t){n[t]=e[t]})),function(){Object.keys(e).forEach((function(t){d(e)}))}):(n[e]=void 0===t?y:t,function(){d(e)})}function d(e){var t=l();delete t[e],0==Object.keys(t).length&&delete s()[f]}function b(e){var t=l(),n=Object.keys(e),r={};function _(){n.forEach((function(e){t[e]=r[e]}))}return function(o){n.forEach((function(n){r[n]=t[n],t[n]=e[n]}));var i=o();return i&&"function"==typeof i.then?i.then(_).catch(_):_(),i}}!function(){function e(e,t){Object.defineProperty(E,e,{value:t,enumerable:!1,configurable:!0})}e("__get__",h),e("__GetDependency__",h),e("__Rewire__",v),e("__set__",v),e("__reset__",d),e("__ResetDependency__",d),e("__with__",b)}();var R=o(i);function p(e,t){Object.defineProperty(i,e,{value:t,enumerable:!1,configurable:!0})}"object"!==R&&"function"!==R||!Object.isExtensible(i)||(p("__get__",h),p("__GetDependency__",h),p("__Rewire__",v),p("__set__",v),p("__reset__",d),p("__ResetDependency__",d),p("__with__",b),p("__RewireAPI__",E))}).call(this,n(3))},function(e,t,n){"use strict";n.r(t);var r=n(6);n.d(t,"deviceId",(function(){return r.a})),n.d(t,"extract",(function(){return r.b}));var _=n(10);n.d(t,"p",(function(){return _.b})),n.d(t,"b",(function(){return _.a}))},function(e,t,n){(function(e){var r=void 0!==e&&e||"undefined"!=typeof self&&self||window,_=Function.prototype.apply;function o(e,t){this._id=e,this._clearFn=t}t.setTimeout=function(){return new o(_.call(setTimeout,r,arguments),clearTimeout)},t.setInterval=function(){return new o(_.call(setInterval,r,arguments),clearInterval)},t.clearTimeout=t.clearInterval=function(e){e&&e.close()},o.prototype.unref=o.prototype.ref=function(){},o.prototype.close=function(){this._clearFn.call(r,this._id)},t.enroll=function(e,t){clearTimeout(e._idleTimeoutId),e._idleTimeout=t},t.unenroll=function(e){clearTimeout(e._idleTimeoutId),e._idleTimeout=-1},t._unrefActive=t.active=function(e){clearTimeout(e._idleTimeoutId);var t=e._idleTimeout;t>=0&&(e._idleTimeoutId=setTimeout((function(){e._onTimeout&&e._onTimeout()}),t))},n(32),t.setImmediate="undefined"!=typeof self&&self.setImmediate||void 0!==e&&e.setImmediate||this&&this.setImmediate,t.clearImmediate="undefined"!=typeof self&&self.clearImmediate||void 0!==e&&e.clearImmediate||this&&this.clearImmediate}).call(this,n(3))},function(e,t,n){(function(e,t){!function(e,n){"use strict";if(!e.setImmediate){var r,_,o,i,c,u=1,a={},f=!1,s=e.document,l=Object.getPrototypeOf&&Object.getPrototypeOf(e);l=l&&l.setTimeout?l:e,"[object process]"==={}.toString.call(e.process)?r=function(e){t.nextTick((function(){E(e)}))}:!function(){if(e.postMessage&&!e.importScripts){var t=!0,n=e.onmessage;return e.onmessage=function(){t=!1},e.postMessage("","*"),e.onmessage=n,t}}()?e.MessageChannel?((o=new MessageChannel).port1.onmessage=function(e){E(e.data)},r=function(e){o.port2.postMessage(e)}):s&&"onreadystatechange"in s.createElement("script")?(_=s.documentElement,r=function(e){var t=s.createElement("script");t.onreadystatechange=function(){E(e),t.onreadystatechange=null,_.removeChild(t),t=null},_.appendChild(t)}):r=function(e){setTimeout(E,0,e)}:(i="setImmediate$"+Math.random()+"$",c=function(t){t.source===e&&"string"==typeof t.data&&0===t.data.indexOf(i)&&E(+t.data.slice(i.length))},e.addEventListener?e.addEventListener("message",c,!1):e.attachEvent("onmessage",c),r=function(t){e.postMessage(i+t,"*")}),l.setImmediate=function(e){"function"!=typeof e&&(e=new Function(""+e));for(var t=new Array(arguments.length-1),n=0;n<t.length;n++)t[n]=arguments[n+1];var _={callback:e,args:t};return a[u]=_,r(u),u++},l.clearImmediate=y}function y(e){delete a[e]}function E(e){if(f)setTimeout(E,0,e);else{var t=a[e];if(t){f=!0;try{!function(e){var t=e.callback,n=e.args;switch(n.length){case 0:t();break;case 1:t(n[0]);break;case 2:t(n[0],n[1]);break;case 3:t(n[0],n[1],n[2]);break;default:t.apply(void 0,n)}}(t)}finally{y(e),f=!1}}}}}("undefined"==typeof self?void 0===e?this:e:self)}).call(this,n(3),n(33))},function(e,t){var n,r,_=e.exports={};function o(){throw new Error("setTimeout has not been defined")}function i(){throw new Error("clearTimeout has not been defined")}function c(e){if(n===setTimeout)return setTimeout(e,0);if((n===o||!n)&&setTimeout)return n=setTimeout,setTimeout(e,0);try{return n(e,0)}catch(t){try{return n.call(null,e,0)}catch(t){return n.call(this,e,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:o}catch(e){n=o}try{r="function"==typeof clearTimeout?clearTimeout:i}catch(e){r=i}}();var u,a=[],f=!1,s=-1;function l(){f&&u&&(f=!1,u.length?a=u.concat(a):s=-1,a.length&&y())}function y(){if(!f){var e=c(l);f=!0;for(var t=a.length;t;){for(u=a,a=[];++s<t;)u&&u[s].run();s=-1,t=a.length}u=null,f=!1,function(e){if(r===clearTimeout)return clearTimeout(e);if((r===i||!r)&&clearTimeout)return r=clearTimeout,clearTimeout(e);try{r(e)}catch(t){try{return r.call(null,e)}catch(t){return r.call(this,e)}}}(e)}}function E(e,t){this.fun=e,this.array=t}function h(){}_.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)t[n-1]=arguments[n];a.push(new E(e,t)),1!==a.length||f||c(y)},E.prototype.run=function(){this.fun.apply(null,this.array)},_.title="browser",_.browser=!0,_.env={},_.argv=[],_.version="",_.versions={},_.on=h,_.addListener=h,_.once=h,_.off=h,_.removeListener=h,_.removeAllListeners=h,_.emit=h,_.prependListener=h,_.prependOnceListener=h,_.listeners=function(e){return[]},_.binding=function(e){throw new Error("process.binding is not supported")},_.cwd=function(){return"/"},_.chdir=function(e){throw new Error("process.chdir is not supported")},_.umask=function(){return 0}}]);
|
|
|
|
|
|
data/Wildfire Grpo Training - a Hugging Face Space by Eshit_files/saved_resource
DELETED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/Wildfire Grpo Training - a Hugging Face Space by Eshit_files/saved_resource.html
DELETED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/Wildfire Grpo Training - a Hugging Face Space by Eshit_files/script.js.download
DELETED
|
@@ -1 +0,0 @@
|
|
| 1 |
-
!function(){var e,t,n,i={};function o(e,t,n){window.fetch&&fetch(e,{method:"POST",headers:{"Content-Type":"text/plain"},keepalive:!0,body:JSON.stringify(t)}).then(function(e){n&&n.callback&&n.callback({status:e.status})}).catch(function(e){n&&n.callback&&n.callback({error:e})})}var a=!1,r=location.href,s={},u=-1,l=0,c=0;function d(){var a=f();if(!e&&(u<n||a>=3e3)){u=n;var d={n:"engagement",sd:Math.round(n/t*100),d:i.domain,u:r,p:s,e:a,v:33};l=0,c=0,i.hashBasedRouting&&(d.h=1),o(i.endpoint,d)}}function p(){"visible"===document.visibilityState&&document.hasFocus()&&0===l?l=Date.now():"hidden"!==document.visibilityState&&document.hasFocus()||(c=f(),l=0,d())}function f(){return l?c+(Date.now()-l):c}function v(){var e=document.body||{},t=document.documentElement||{};return Math.max(e.scrollHeight||0,e.offsetHeight||0,e.clientHeight||0,t.scrollHeight||0,t.offsetHeight||0,t.clientHeight||0)}function w(){var e=document.body||{},n=document.documentElement||{},i=window.innerHeight||n.clientHeight||0,o=window.scrollY||n.scrollTop||e.scrollTop||0;return t<=i?t:o+i}function m(f,m){var h,b,y="pageview"===f;if(y&&a&&(d(),t=v(),n=w()),!i.captureOnLocalhost){if(/^localhost$|^127(\.[0-9]+){0,2}\.[0-9]+$|^\[::1?\]$/.test(location.hostname)||"file:"===location.protocol)return g(f,m,"localhost");if((window._phantom||window.__nightmare||window.navigator.webdriver||window.Cypress)&&!window.__plausible)return g(f,m)}try{if("true"===window.localStorage.plausible_ignore)return g(f,m,"localStorage flag")}catch(e){}var L={};L.n=f,L.v=33;var k=m&&(m.u||m.url);if(L.u=k||location.href,L.d=i.domain,L.r=document.referrer||null,m&&m.props&&(L.p=m.props),m&&!1===m.interactive&&(L.i=!1),m&&m.revenue&&(L.$=m.revenue),i.customProperties){var b=i.customProperties;"function"==typeof b&&(b=i.customProperties(f)),"object"==typeof b&&(L.p=Object.assign({},b,L.p))}if(i.hashBasedRouting&&(L.h=1),"function"==typeof i.transformRequest&&!(L=i.transformRequest(L)))return g(f,m,"transformRequest");y&&(e=!1,r=(h=L).u,s=h.p,u=-1,c=0,l=Date.now(),a||(document.addEventListener("visibilitychange",p),window.addEventListener("blur",p),window.addEventListener("focus",p),a=!0)),o(i.endpoint,L,m)}function g(t,n,o){o&&i.logging&&console.warn("Ignoring Event: "+o),n&&n.callback&&n.callback(),"pageview"===t&&(e=!0)}var h=["pdf","xlsx","docx","txt","rtf","csv","exe","key","pps","ppt","pptx","7z","pkg","rar","gz","zip","avi","mov","mp4","mpeg","wmv","midi","mp3","wav","wma","dmg"];function b(e){return e&&e.tagName&&"a"===e.tagName.toLowerCase()}function y(e){if("auxclick"!==e.type||1===e.button){var t,n=function(e){for(;e&&(void 0===e.tagName||!b(e)||!e.href);)e=e.parentNode;return e}(e.target),o=n&&"string"==typeof n.href&&n.href.split("?")[0];if(!E(n,0)){if(i.outboundLinks&&(t=n)&&"string"==typeof t.href&&t.host&&t.host!==location.host)return L(e,n,{name:"Outbound Link: Click",props:{url:n.href}});if(i.fileDownloads&&function(e){if(!e)return!1;var t=e.split(".").pop();return h.some(function(e){return e===t})}(o))return L(e,n,{name:"File Download",props:{url:o}})}}}function L(e,t,n){var i;(i={props:n.props}).revenue=n.revenue,m(n.name,i)}function k(e){var t=e&&e.classList;if(t){for(var n=0;n<t.length;n++)if(t.item(n).match(/plausible-event-name(=|--)(.+)/))return!0}return!1}function E(e,t){return!!e&&!(t>3)&&(!!k(e)||E(e.parentNode,t+1))}function x(e){var t=k(e)?e:e&&e.parentNode,n={name:null,props:{}};n.revenue={};var i=t&&t.classList;if(!i)return n;for(var o=0;o<i.length;o++){var a,r,s=i.item(o),u=s.match(/plausible-event-(.+)(=|--)(.+)/);u&&(a=u[1],r=u[3].replace(/\+/g," "),"name"==a.toLowerCase()?n.name=r:n.props[a]=r);var l=s.match(/plausible-revenue-(.+)(=|--)(.+)/);l&&(a=l[1],r=l[3],n.revenue[a]=r)}return n}function S(e){let o=Object.assign(a=e||{},{autoCapturePageviews:!1!==a.autoCapturePageviews,logging:!1!==a.logging,lib:a.lib||"web"});if(window.plausible&&window.plausible.l){o.logging&&console.warn("Plausible analytics script was already initialized, skipping init");return}Object.assign(i={endpoint:"https://plausible.io/api/event",domain:"huggingface.co"},o,{domain:i.domain}),t=v(),n=w(),window.addEventListener("load",function(){t=v();var e=0,n=setInterval(function(){t=v(),15==++e&&clearInterval(n)},200)}),document.addEventListener("scroll",function(){t=v();var e=w();e>n&&(n=e)}),i.autoCapturePageviews&&function(e){function t(t){(i.hashBasedRouting||!t||n!==location.pathname)&&(n=location.pathname,e("pageview"))}var n,o=function(){t(!0)};if(i.hashBasedRouting)window.addEventListener("hashchange",o);else{var a=window.history;if(a.pushState){var r=a.pushState;a.pushState=function(){r.apply(this,arguments),o()},window.addEventListener("popstate",o)}}"hidden"===document.visibilityState||"prerender"===document.visibilityState?document.addEventListener("visibilitychange",function(){n||"visible"!==document.visibilityState||t()}):t(),window.addEventListener("pageshow",function(e){e.persisted&&t()})}(m),function(){function e(e){if("auxclick"!==e.type||1===e.button){for(var t,n,i,o=e.target,a=0;a<=3&&o;a++){if((t=o)&&t.tagName&&"form"===t.tagName.toLowerCase())return;b(o)&&(n=o),k(o)&&(i=o),o=o.parentNode}if(i){var r=x(i);if(n)r.props.url=n.href,L(e,n,r);else{var s={};s.props=r.props,s.revenue=r.revenue,m(r.name,s)}}}}document.addEventListener("click",y),document.addEventListener("auxclick",y),i.fileDownloads&&"object"==typeof i.fileDownloads&&Array.isArray(i.fileDownloads.fileExtensions)&&(h=i.fileDownloads.fileExtensions),i.formSubmissions&&document.addEventListener("submit",function(e){(e.target.hasAttribute("novalidate")||e.target.checkValidity())&&(E(e.target,0)||m("Form: Submission"))},!0),document.addEventListener("submit",function(e){var t,n=x(e.target);n.name&&((t={props:n.props}).revenue=n.revenue,m(n.name,t))}),document.addEventListener("click",e),document.addEventListener("auxclick",e)}();for(var a,r=window.plausible&&window.plausible.q||[],s=0;s<r.length;s++)m.apply(this,r[s]);window.plausible=m,window.plausible.init=S,window.plausible.v=33,window.plausible.s=i.lib,window.plausible.l=!0}window.plausible=window.plausible||{},plausible.o&&S(plausible.o),plausible.init=S}();
|
|
|
|
|
|
data/Wildfire Grpo Training - a Hugging Face Space by Eshit_files/style.css
DELETED
|
The diff for this file is too large to render.
See raw diff
|
|
|
implementation_plan.md
DELETED
|
@@ -1,35 +0,0 @@
|
|
| 1 |
-
# Addressing the Heuristic Performance for the Hackathon Pitch
|
| 2 |
-
|
| 3 |
-
The fact that the heuristic agent performs so well is a common challenge in RL hackathons. If the baseline is unbeatable, the RL training seems pointless.
|
| 4 |
-
|
| 5 |
-
To solve this, we will use **The "Commander's Intent" Narrative**. We won't just "break" the heuristic; we will expose its fundamental weakness: **it is a rigid expert system that cannot read natural language or follow instructions.**
|
| 6 |
-
|
| 7 |
-
This directly aligns with the hackathon's **Theme 2: Long-Horizon Planning & Instruction Following**.
|
| 8 |
-
|
| 9 |
-
## The Narrative for the Judges
|
| 10 |
-
"Our heuristic baseline is an expert system that aggressively fights fires to save lives. But like all rigid heuristics, it suffers from 'tunnel vision'. It cannot read natural language briefings or follow Commander's Intent. When a small fire threatens a low-priority outpost, the heuristic will blindly divert all resources to save itβabandoning the Priority 1 city to a massive inferno. Our RL agent reads the briefing, understands the Commander's priorities, and makes the hard strategic tradeoffs required in disaster management."
|
| 11 |
-
|
| 12 |
-
## Proposed Changes
|
| 13 |
-
|
| 14 |
-
We will make the following code adjustments to guarantee the heuristic fails in specific, explainable ways, while the RL agent is incentivized to succeed:
|
| 15 |
-
|
| 16 |
-
### 1. Introduce Resource Scarcity (`env/models.py`)
|
| 17 |
-
Currently, the heuristic has enough crews and firebreak budget to surround *everything*. By slightly reducing these budgets on `medium` and `hard` tiers, the agent *must* prioritize.
|
| 18 |
-
- **Modify `TIER_MEDIUM`**: Reduce crews from 5 to 4, firebreaks from 20 to 15.
|
| 19 |
-
- **Modify `TIER_HARD`**: Reduce crews from 6 to 5, firebreaks from 30 to 20.
|
| 20 |
-
|
| 21 |
-
### 2. Heavily Penalize Priority Zone Loss (`env/reward.py`)
|
| 22 |
-
The `OperationalBriefing` defines `priority_populated_zones`. Right now, the reward gives a small +1.0 terminal bonus if they survive. We will change this to be a massive penalty if they burn.
|
| 23 |
-
- **Terminal Reward**: If any `priority_populated_zone` burns, apply a `-5.0` penalty.
|
| 24 |
-
- **Step Reward**: If the population lost belongs to a priority zone, apply a much harsher delta penalty. This ensures the heuristic's score tanks when it ignores the briefing.
|
| 25 |
-
|
| 26 |
-
### 3. Create the "Decoy" Ignition (`env/wildfire_env.py`)
|
| 27 |
-
In `_ignite_initial_fires`, when there are multiple ignitions (medium/hard), we will ensure one ignition is closer to a *non-priority* zone, and one is slightly further from a *priority* zone.
|
| 28 |
-
- Because the heuristic purely sorts by `Manhattan distance to fire` in `_protect_population`, it will take the bait and commit its limited crews to the non-priority zone.
|
| 29 |
-
- The RL agent, reading the prompt, will learn to route crews to the priority zone first.
|
| 30 |
-
|
| 31 |
-
### 4. Remove the Heuristic's "Omniscience" (`agents/heuristic_agent.py`)
|
| 32 |
-
The heuristic currently has a few "cheat" behaviors where it perfectly calculates the safest deployment without needing recon. We will slightly dumb down `_initial_deployment` so it spreads crews out blindly, forcing it to actually rely on `RECON_FLIGHT` to find fires, wasting valuable early steps that the RL agent can optimize.
|
| 33 |
-
|
| 34 |
-
## User Review Required
|
| 35 |
-
Do you approve of this "Commander's Intent / Decoy Fire" strategy? It preserves the heuristic's strength in easy scenarios but guarantees it fails in complex scenarios, making your RL training the obvious hero of the presentation.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sft_final.zip
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:e5d8e965e5ff2910ceed81cd241199eea976e157373dc899f9273f009306ce62
|
| 3 |
-
size 76858791
|
|
|
|
|
|
|
|
|
|
|
|
yt.txt
DELETED
|
@@ -1,47 +0,0 @@
|
|
| 1 |
-
Shot-by-Shot Script
|
| 2 |
-
[0:00β0:08] β COLD OPEN (Hook)
|
| 3 |
-
[SHOT: A real life wildfire is shown spreading (potentially displaying humans trying to deal with it, this transitions to a GIF replay of wildfire spreading across the grid, crews moving based on our application]
|
| 4 |
-
VO: "Wildfire spreading. Civilian zones at risk. Limited resources. No second chances."
|
| 5 |
-
[SHOT: Title card fades in β "Wildfire Containment Simulator"]
|
| 6 |
-
VO: "What if an AI could be trained to handle this?"
|
| 7 |
-
|
| 8 |
-
[0:08β0:20] β Problem Statement
|
| 9 |
-
[SHOT: Simple diagram β grid with fire cells, population zones, crew icons]
|
| 10 |
-
VO: "We built a fully-featured wildfire simulation for the OpenEnv hackathon. An LLM acts as Incident Commander β reading operational briefings, dispatching fire crews, calling air tankers, and building firebreaks β all in real-time, across a 300-step episode."
|
| 11 |
-
|
| 12 |
-
[0:20β0:38] β The Environment
|
| 13 |
-
[SHOT: Code snippet β env.reset("hard", seed=42) β GIF of Hard tier 40Γ40 grid]
|
| 14 |
-
VO: "Three difficulty tiers: Easy is a 15x15 flatland fire. Hard is a 40x40 wildland-urban interface with fog-of-war, staggered ignitions, and mid-episode crew casualties."
|
| 15 |
-
[SHOT: Annotated grid showing smoke, fog-of-war, crew positions, fire clusters]
|
| 16 |
-
VO: "Fire spreads using a Rothermel-inspired model β wind direction, slope, fuel load, moisture all matter. The agent only sees what's not hidden by smoke."
|
| 17 |
-
|
| 18 |
-
[0:38β0:55] β The Actions & Observations
|
| 19 |
-
[SHOT: Terminal showing serialized observation text prompt scrolling]
|
| 20 |
-
VO: "Each step, the observation is converted into a structured text prompt β fire cluster locations, resource status, recent events. The model responds with a single JSON action."
|
| 21 |
-
[SHOT: JSON action example on screen β {"action_type": "drop_retardant", "tanker_id": "tanker_0", "target_row": 12, "target_col": 8}]
|
| 22 |
-
VO: "Six action types: deploy crews, move them, drop retardant, build firebreaks, recon flight, or idle. Invalid JSON? The 3-layer parser falls back to safe idle β the loop never breaks."
|
| 23 |
-
|
| 24 |
-
[0:55β1:12] β Training with GRPO
|
| 25 |
-
[SHOT: Training curve plot β reward vs steps, tier promotion markers visible]
|
| 26 |
-
VO: "We trained Qwen-2.5-1.5B using GRPO β Group Relative Policy Optimization β on a T4 GPU. The reward is decomposed: dense per-step signals for containment and population safety, plus a sparse +5 bonus if all civilians survive."
|
| 27 |
-
[SHOT: Curriculum diagram: Easy β Medium β Hard with arrows]
|
| 28 |
-
VO: "A curriculum controller automatically promotes the agent as it improves β just like training a real firefighter."
|
| 29 |
-
|
| 30 |
-
[1:12β1:35] β Results
|
| 31 |
-
[SHOT: Comparison table β Random / Heuristic / Trained LLM across three tiers]
|
| 32 |
-
VO: "Our trained model reaches a mean reward of ~4.8 on Easy and ~3.9 on Hard β approaching the hand-coded heuristic baseline, without a single line of explicit strategy. Just reward signal."
|
| 33 |
-
[SHOT: Side-by-side GIF replay β heuristic agent vs. trained LLM on medium tier]
|
| 34 |
-
VO: "The model learns to protect population zones first, use tankers selectively, and build firebreaks ahead of the spread β behaviors we never explicitly programmed."
|
| 35 |
-
|
| 36 |
-
[1:35β1:50] β Architecture Highlights
|
| 37 |
-
[SHOT: Architecture diagram β env β serializer β LLM β parser β env]
|
| 38 |
-
VO: "Built on Pydantic for typed validation end-to-end. Exposed as a FastAPI REST server so any model can plug in with zero Python imports. Fully OpenEnv compliant."
|
| 39 |
-
[SHOT: HuggingFace Space page]
|
| 40 |
-
VO: "Live on HuggingFace Spaces right now."
|
| 41 |
-
|
| 42 |
-
[1:50β2:00] β Close
|
| 43 |
-
[SHOT: Final GIF β fire successfully contained, population zones intact]
|
| 44 |
-
VO: "Long-horizon planning. Instruction following. Curriculum learning. All in 1.5 billion parameters."
|
| 45 |
-
[SHOT: Title card + GitHub/HF links]
|
| 46 |
-
VO: "Wildfire Containment Simulator β OpenEnv Hackathon, Theme 2."
|
| 47 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|