1<?xml version="1.0" encoding="UTF-8"?>
2<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
3 width="400" height="200" viewBox="0 0 400 200">
4<defs>
5<radialGradient cx="200" cy="100" r="100" gradientUnits="userSpaceOnUse" id="grad20">
6<stop offset="0" stop-color="green" stop-opacity="1" />
7<stop offset="1" stop-color="orange" stop-opacity="1" />
8</radialGradient>
9</defs>
10<rect x="0" y="0" width="100%" height="100%" fill="url(#grad20)" />
11</svg>