upi_link 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG.md +5 -0
- data/LICENSE.txt +21 -0
- data/README.md +120 -0
- data/Rakefile +12 -0
- data/lib/upi_link/intent_link.rb +13 -0
- data/lib/upi_link/qr_generator.rb +34 -0
- data/lib/upi_link/uri_builder.rb +38 -0
- data/lib/upi_link/version.rb +5 -0
- data/lib/upi_link/vpa_validator.rb +15 -0
- data/lib/upi_link.rb +16 -0
- data/sig/upi_link.rbs +4 -0
- data/test_qr.svg +1 -0
- metadata +89 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: d9a326c0f797d38337d0bb053fae3cd47eea4f276baa064192848b03ab14dbf7
|
|
4
|
+
data.tar.gz: 5868502104d3782678c20e85e670f31d270390b8e721a158c32d6eff6cdd6f1a
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 381f590df5de16a238f3ef237b4f7afed70e0b119ad5127428ae3c45ab13c0639d03e2f4235d32fee34b68e99996bfa86394916a5558c7a1d2e1b471e6781b2e
|
|
7
|
+
data.tar.gz: 6a84b3a04b67604c5868d23ed602c96add74ed7de9b89fa65d8cb73ff0203791fb801427266cb50929ecfa9da90ea1f17b167ba6fcc29acd989ec6c6e89fd097
|
data/CHANGELOG.md
ADDED
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 balram
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
# UpiLink
|
|
2
|
+
|
|
3
|
+
Generate UPI payment deep links and QR codes in Ruby/Rails — no payment gateway, no merchant account, no transaction cut. Just link generation for direct P2P-style UPI collection.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
Add to your Gemfile:
|
|
8
|
+
|
|
9
|
+
```ruby
|
|
10
|
+
gem 'upi_link'
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Then run:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
bundle install
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Or install directly:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
gem install upi_link
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Usage
|
|
26
|
+
|
|
27
|
+
### Quick link generation
|
|
28
|
+
|
|
29
|
+
```ruby
|
|
30
|
+
require 'upi_link'
|
|
31
|
+
|
|
32
|
+
link = UpiLink.generate(
|
|
33
|
+
pa: "yourvpa@okhdfcbank",
|
|
34
|
+
pn: "Reel Store",
|
|
35
|
+
am: 499,
|
|
36
|
+
tn: "Order #1234"
|
|
37
|
+
)
|
|
38
|
+
# => "upi://pay?pa=yourvpa%40okhdfcbank&pn=Reel+Store&cu=INR&am=499.00&tn=Order+%231234"
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
### VPA validation
|
|
42
|
+
|
|
43
|
+
```ruby
|
|
44
|
+
UpiLink::VpaValidator.valid?("name@okhdfcbank") # => true
|
|
45
|
+
UpiLink::VpaValidator.valid?("invalid vpa") # => false
|
|
46
|
+
|
|
47
|
+
UpiLink::VpaValidator.validate!("bad-vpa") # raises ArgumentError
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
### Full builder with all options
|
|
51
|
+
|
|
52
|
+
```ruby
|
|
53
|
+
uri = UpiLink::UriBuilder.new(
|
|
54
|
+
pa: "yourvpa@okhdfcbank",
|
|
55
|
+
pn: "Reel Store",
|
|
56
|
+
am: 499,
|
|
57
|
+
tn: "Order #1234",
|
|
58
|
+
tr: "TXN20260708001",
|
|
59
|
+
mc: "5411"
|
|
60
|
+
).to_s
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
### QR code generation
|
|
64
|
+
|
|
65
|
+
```ruby
|
|
66
|
+
qr = UpiLink::QrGenerator.new(link)
|
|
67
|
+
|
|
68
|
+
File.write("payment_qr.svg", qr.to_svg)
|
|
69
|
+
File.write("payment_qr.png", qr.to_png)
|
|
70
|
+
puts qr.to_terminal # preview in terminal
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
### Mobile intent link (for HTML views)
|
|
74
|
+
|
|
75
|
+
```ruby
|
|
76
|
+
UpiLink::IntentLink.html_link(link, label: "Pay via UPI")
|
|
77
|
+
# => "<a href=\"upi://pay?...\">Pay via UPI</a>"
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
In a Rails view:
|
|
81
|
+
|
|
82
|
+
```erb
|
|
83
|
+
<%= raw UpiLink::IntentLink.html_link(@payment_link, label: "Pay Now") %>
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
## What this gem does NOT do
|
|
87
|
+
|
|
88
|
+
This gem generates payment **request** links only. UPI does not provide a callback or webhook for raw deep links, so this gem **cannot confirm whether a payment succeeded**. For that:
|
|
89
|
+
|
|
90
|
+
- Manually mark orders as paid (suitable for small sellers, low volume)
|
|
91
|
+
- Or integrate a PSP like Razorpay/Cashfree if you need automated payment confirmation
|
|
92
|
+
|
|
93
|
+
This tradeoff is intentional — it's what makes the gem free and gateway-independent.
|
|
94
|
+
|
|
95
|
+
## Supported UPI parameters
|
|
96
|
+
|
|
97
|
+
| Param | Required | Description |
|
|
98
|
+
|-------|----------|--------------|
|
|
99
|
+
| `pa` | Yes | Payee VPA (e.g. `name@bank`) |
|
|
100
|
+
| `pn` | Yes | Payee name |
|
|
101
|
+
| `am` | No | Amount (formatted to 2 decimals) |
|
|
102
|
+
| `tn` | No | Transaction note |
|
|
103
|
+
| `tr` | No | Transaction reference ID |
|
|
104
|
+
| `cu` | No | Currency (defaults to `INR`) |
|
|
105
|
+
| `mc` | No | Merchant category code |
|
|
106
|
+
|
|
107
|
+
## Development
|
|
108
|
+
|
|
109
|
+
```bash
|
|
110
|
+
bundle install
|
|
111
|
+
bundle exec rspec
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
## Contributing
|
|
115
|
+
|
|
116
|
+
Bug reports and pull requests welcome at https://github.com/YOUR_USERNAME/upi_link.
|
|
117
|
+
|
|
118
|
+
## License
|
|
119
|
+
|
|
120
|
+
MIT
|
data/Rakefile
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
module UpiLink
|
|
2
|
+
class IntentLink
|
|
3
|
+
def self.for(upi_uri)
|
|
4
|
+
# Thin wrapper - the upi:// URI works directly as an href on mobile
|
|
5
|
+
# Browser/OS handles the app picker natively
|
|
6
|
+
upi_uri
|
|
7
|
+
end
|
|
8
|
+
|
|
9
|
+
def self.html_link(upi_uri, label: "Pay Now")
|
|
10
|
+
%(<a href="#{upi_uri}">#{label}</a>)
|
|
11
|
+
end
|
|
12
|
+
end
|
|
13
|
+
end
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
require "rqrcode"
|
|
2
|
+
|
|
3
|
+
module UpiLink
|
|
4
|
+
class QrGenerator
|
|
5
|
+
def initialize(upi_uri)
|
|
6
|
+
@upi_uri = upi_uri
|
|
7
|
+
@qr = RQRCode::QRCode.new(upi_uri)
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
def to_svg(module_size: 6)
|
|
11
|
+
@qr.as_svg(
|
|
12
|
+
offset: 0,
|
|
13
|
+
color: "000",
|
|
14
|
+
shape_rendering: "crispEdges",
|
|
15
|
+
module_size: module_size,
|
|
16
|
+
standalone: true
|
|
17
|
+
)
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
def to_png(size: 300)
|
|
21
|
+
png = @qr.as_png(size: size)
|
|
22
|
+
png.to_s
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
def to_terminal
|
|
26
|
+
@qr.as_ansi(
|
|
27
|
+
light: "\033[47m",
|
|
28
|
+
dark: "\033[40m",
|
|
29
|
+
fill_character: " ",
|
|
30
|
+
quiet_zone_size: 2
|
|
31
|
+
)
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
end
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
require "uri"
|
|
2
|
+
|
|
3
|
+
module UpiLink
|
|
4
|
+
class UriBuilder
|
|
5
|
+
attr_reader :pa, :pn, :am, :tn, :tr, :cu, :mc
|
|
6
|
+
|
|
7
|
+
def initialize(pa:, pn:, am: nil, tn: nil, tr: nil, cu: "INR", mc: nil)
|
|
8
|
+
VpaValidator.validate!(pa)
|
|
9
|
+
raise ArgumentError, "pn (payee name) is required" if pn.nil? || pn.strip.empty?
|
|
10
|
+
|
|
11
|
+
@pa = pa
|
|
12
|
+
@pn = pn
|
|
13
|
+
@am = format_amount(am)
|
|
14
|
+
@tn = tn
|
|
15
|
+
@tr = tr
|
|
16
|
+
@cu = cu
|
|
17
|
+
@mc = mc
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
def to_s
|
|
21
|
+
params = { pa: pa, pn: pn, cu: cu }
|
|
22
|
+
params[:am] = am if am
|
|
23
|
+
params[:tn] = tn if tn && !tn.strip.empty?
|
|
24
|
+
params[:tr] = tr if tr && !tr.strip.empty?
|
|
25
|
+
params[:mc] = mc if mc && !mc.strip.empty?
|
|
26
|
+
|
|
27
|
+
query = params.map { |k, v| "#{k}=#{URI.encode_www_form_component(v)}" }.join("&")
|
|
28
|
+
"upi://pay?#{query}"
|
|
29
|
+
end
|
|
30
|
+
|
|
31
|
+
private
|
|
32
|
+
|
|
33
|
+
def format_amount(amount)
|
|
34
|
+
return nil if amount.nil?
|
|
35
|
+
format("%.2f", amount.to_f)
|
|
36
|
+
end
|
|
37
|
+
end
|
|
38
|
+
end
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
module UpiLink
|
|
2
|
+
class VpaValidator
|
|
3
|
+
VPA_REGEX = /\A[\w.\-]{2,256}@[a-zA-Z][a-zA-Z0-9]{1,64}\z/
|
|
4
|
+
|
|
5
|
+
def self.valid?(vpa)
|
|
6
|
+
return false if vpa.nil? || vpa.strip.empty?
|
|
7
|
+
!!(vpa.match?(VPA_REGEX))
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
def self.validate!(vpa)
|
|
11
|
+
raise ArgumentError, "Invalid VPA format: #{vpa.inspect}" unless valid?(vpa)
|
|
12
|
+
true
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
end
|
data/lib/upi_link.rb
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require_relative "upi_link/version"
|
|
4
|
+
require_relative "upi_link/vpa_validator"
|
|
5
|
+
require_relative "upi_link/uri_builder"
|
|
6
|
+
require_relative "upi_link/qr_generator"
|
|
7
|
+
require_relative "upi_link/intent_link"
|
|
8
|
+
|
|
9
|
+
module UpiLink
|
|
10
|
+
class Error < StandardError; end
|
|
11
|
+
|
|
12
|
+
# Convenience method for quick usage
|
|
13
|
+
def self.generate(pa:, pn:, am: nil, tn: nil, tr: nil)
|
|
14
|
+
UriBuilder.new(pa: pa, pn: pn, am: am, tn: tn, tr: tr).to_s
|
|
15
|
+
end
|
|
16
|
+
end
|
data/sig/upi_link.rbs
ADDED
data/test_qr.svg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="yes"?><svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:ev="http://www.w3.org/2001/xml-events" width="294" height="294" shape-rendering="crispEdges"><rect width="6" height="6" x="0" y="0" fill="#000"/><rect width="6" height="6" x="6" y="0" fill="#000"/><rect width="6" height="6" x="12" y="0" fill="#000"/><rect width="6" height="6" x="18" y="0" fill="#000"/><rect width="6" height="6" x="24" y="0" fill="#000"/><rect width="6" height="6" x="30" y="0" fill="#000"/><rect width="6" height="6" x="36" y="0" fill="#000"/><rect width="6" height="6" x="54" y="0" fill="#000"/><rect width="6" height="6" x="60" y="0" fill="#000"/><rect width="6" height="6" x="78" y="0" fill="#000"/><rect width="6" height="6" x="84" y="0" fill="#000"/><rect width="6" height="6" x="102" y="0" fill="#000"/><rect width="6" height="6" x="120" y="0" fill="#000"/><rect width="6" height="6" x="132" y="0" fill="#000"/><rect width="6" height="6" x="162" y="0" fill="#000"/><rect width="6" height="6" x="168" y="0" fill="#000"/><rect width="6" height="6" x="180" y="0" fill="#000"/><rect width="6" height="6" x="186" y="0" fill="#000"/><rect width="6" height="6" x="192" y="0" fill="#000"/><rect width="6" height="6" x="198" y="0" fill="#000"/><rect width="6" height="6" x="210" y="0" fill="#000"/><rect width="6" height="6" x="216" y="0" fill="#000"/><rect width="6" height="6" x="222" y="0" fill="#000"/><rect width="6" height="6" x="240" y="0" fill="#000"/><rect width="6" height="6" x="252" y="0" fill="#000"/><rect width="6" height="6" x="258" y="0" fill="#000"/><rect width="6" height="6" x="264" y="0" fill="#000"/><rect width="6" height="6" x="270" y="0" fill="#000"/><rect width="6" height="6" x="276" y="0" fill="#000"/><rect width="6" height="6" x="282" y="0" fill="#000"/><rect width="6" height="6" x="288" y="0" fill="#000"/><rect width="6" height="6" x="0" y="6" fill="#000"/><rect width="6" height="6" x="36" y="6" fill="#000"/><rect width="6" height="6" x="60" y="6" fill="#000"/><rect width="6" height="6" x="66" y="6" fill="#000"/><rect width="6" height="6" x="72" y="6" fill="#000"/><rect width="6" height="6" x="84" y="6" fill="#000"/><rect width="6" height="6" x="96" y="6" fill="#000"/><rect width="6" height="6" x="102" y="6" fill="#000"/><rect width="6" height="6" x="108" y="6" fill="#000"/><rect width="6" height="6" x="120" y="6" fill="#000"/><rect width="6" height="6" x="132" y="6" fill="#000"/><rect width="6" height="6" x="150" y="6" fill="#000"/><rect width="6" height="6" x="156" y="6" fill="#000"/><rect width="6" height="6" x="168" y="6" fill="#000"/><rect width="6" height="6" x="186" y="6" fill="#000"/><rect width="6" height="6" x="192" y="6" fill="#000"/><rect width="6" height="6" x="198" y="6" fill="#000"/><rect width="6" height="6" x="204" y="6" fill="#000"/><rect width="6" height="6" x="216" y="6" fill="#000"/><rect width="6" height="6" x="228" y="6" fill="#000"/><rect width="6" height="6" x="234" y="6" fill="#000"/><rect width="6" height="6" x="240" y="6" fill="#000"/><rect width="6" height="6" x="252" y="6" fill="#000"/><rect width="6" height="6" x="288" y="6" fill="#000"/><rect width="6" height="6" x="0" y="12" fill="#000"/><rect width="6" height="6" x="12" y="12" fill="#000"/><rect width="6" height="6" x="18" y="12" fill="#000"/><rect width="6" height="6" x="24" y="12" fill="#000"/><rect width="6" height="6" x="36" y="12" fill="#000"/><rect width="6" height="6" x="78" y="12" fill="#000"/><rect width="6" height="6" x="90" y="12" fill="#000"/><rect width="6" height="6" x="96" y="12" fill="#000"/><rect width="6" height="6" x="108" y="12" fill="#000"/><rect width="6" height="6" x="138" y="12" fill="#000"/><rect width="6" height="6" x="150" y="12" fill="#000"/><rect width="6" height="6" x="180" y="12" fill="#000"/><rect width="6" height="6" x="192" y="12" fill="#000"/><rect width="6" height="6" x="198" y="12" fill="#000"/><rect width="6" height="6" x="204" y="12" fill="#000"/><rect width="6" height="6" x="210" y="12" fill="#000"/><rect width="6" height="6" x="216" y="12" fill="#000"/><rect width="6" height="6" x="222" y="12" fill="#000"/><rect width="6" height="6" x="234" y="12" fill="#000"/><rect width="6" height="6" x="240" y="12" fill="#000"/><rect width="6" height="6" x="252" y="12" fill="#000"/><rect width="6" height="6" x="264" y="12" fill="#000"/><rect width="6" height="6" x="270" y="12" fill="#000"/><rect width="6" height="6" x="276" y="12" fill="#000"/><rect width="6" height="6" x="288" y="12" fill="#000"/><rect width="6" height="6" x="0" y="18" fill="#000"/><rect width="6" height="6" x="12" y="18" fill="#000"/><rect width="6" height="6" x="18" y="18" fill="#000"/><rect width="6" height="6" x="24" y="18" fill="#000"/><rect width="6" height="6" x="36" y="18" fill="#000"/><rect width="6" height="6" x="54" y="18" fill="#000"/><rect width="6" height="6" x="60" y="18" fill="#000"/><rect width="6" height="6" x="66" y="18" fill="#000"/><rect width="6" height="6" x="84" y="18" fill="#000"/><rect width="6" height="6" x="90" y="18" fill="#000"/><rect width="6" height="6" x="108" y="18" fill="#000"/><rect width="6" height="6" x="138" y="18" fill="#000"/><rect width="6" height="6" x="150" y="18" fill="#000"/><rect width="6" height="6" x="156" y="18" fill="#000"/><rect width="6" height="6" x="168" y="18" fill="#000"/><rect width="6" height="6" x="180" y="18" fill="#000"/><rect width="6" height="6" x="186" y="18" fill="#000"/><rect width="6" height="6" x="210" y="18" fill="#000"/><rect width="6" height="6" x="216" y="18" fill="#000"/><rect width="6" height="6" x="234" y="18" fill="#000"/><rect width="6" height="6" x="252" y="18" fill="#000"/><rect width="6" height="6" x="264" y="18" fill="#000"/><rect width="6" height="6" x="270" y="18" fill="#000"/><rect width="6" height="6" x="276" y="18" fill="#000"/><rect width="6" height="6" x="288" y="18" fill="#000"/><rect width="6" height="6" x="0" y="24" fill="#000"/><rect width="6" height="6" x="12" y="24" fill="#000"/><rect width="6" height="6" x="18" y="24" fill="#000"/><rect width="6" height="6" x="24" y="24" fill="#000"/><rect width="6" height="6" x="36" y="24" fill="#000"/><rect width="6" height="6" x="48" y="24" fill="#000"/><rect width="6" height="6" x="54" y="24" fill="#000"/><rect width="6" height="6" x="72" y="24" fill="#000"/><rect width="6" height="6" x="78" y="24" fill="#000"/><rect width="6" height="6" x="84" y="24" fill="#000"/><rect width="6" height="6" x="90" y="24" fill="#000"/><rect width="6" height="6" x="96" y="24" fill="#000"/><rect width="6" height="6" x="102" y="24" fill="#000"/><rect width="6" height="6" x="108" y="24" fill="#000"/><rect width="6" height="6" x="120" y="24" fill="#000"/><rect width="6" height="6" x="126" y="24" fill="#000"/><rect width="6" height="6" x="132" y="24" fill="#000"/><rect width="6" height="6" x="138" y="24" fill="#000"/><rect width="6" height="6" x="144" y="24" fill="#000"/><rect width="6" height="6" x="150" y="24" fill="#000"/><rect width="6" height="6" x="156" y="24" fill="#000"/><rect width="6" height="6" x="162" y="24" fill="#000"/><rect width="6" height="6" x="186" y="24" fill="#000"/><rect width="6" height="6" x="192" y="24" fill="#000"/><rect width="6" height="6" x="198" y="24" fill="#000"/><rect width="6" height="6" x="216" y="24" fill="#000"/><rect width="6" height="6" x="222" y="24" fill="#000"/><rect width="6" height="6" x="252" y="24" fill="#000"/><rect width="6" height="6" x="264" y="24" fill="#000"/><rect width="6" height="6" x="270" y="24" fill="#000"/><rect width="6" height="6" x="276" y="24" fill="#000"/><rect width="6" height="6" x="288" y="24" fill="#000"/><rect width="6" height="6" x="0" y="30" fill="#000"/><rect width="6" height="6" x="36" y="30" fill="#000"/><rect width="6" height="6" x="60" y="30" fill="#000"/><rect width="6" height="6" x="78" y="30" fill="#000"/><rect width="6" height="6" x="84" y="30" fill="#000"/><rect width="6" height="6" x="96" y="30" fill="#000"/><rect width="6" height="6" x="102" y="30" fill="#000"/><rect width="6" height="6" x="114" y="30" fill="#000"/><rect width="6" height="6" x="120" y="30" fill="#000"/><rect width="6" height="6" x="132" y="30" fill="#000"/><rect width="6" height="6" x="156" y="30" fill="#000"/><rect width="6" height="6" x="174" y="30" fill="#000"/><rect width="6" height="6" x="180" y="30" fill="#000"/><rect width="6" height="6" x="186" y="30" fill="#000"/><rect width="6" height="6" x="210" y="30" fill="#000"/><rect width="6" height="6" x="216" y="30" fill="#000"/><rect width="6" height="6" x="228" y="30" fill="#000"/><rect width="6" height="6" x="252" y="30" fill="#000"/><rect width="6" height="6" x="288" y="30" fill="#000"/><rect width="6" height="6" x="0" y="36" fill="#000"/><rect width="6" height="6" x="6" y="36" fill="#000"/><rect width="6" height="6" x="12" y="36" fill="#000"/><rect width="6" height="6" x="18" y="36" fill="#000"/><rect width="6" height="6" x="24" y="36" fill="#000"/><rect width="6" height="6" x="30" y="36" fill="#000"/><rect width="6" height="6" x="36" y="36" fill="#000"/><rect width="6" height="6" x="48" y="36" fill="#000"/><rect width="6" height="6" x="60" y="36" fill="#000"/><rect width="6" height="6" x="72" y="36" fill="#000"/><rect width="6" height="6" x="84" y="36" fill="#000"/><rect width="6" height="6" x="96" y="36" fill="#000"/><rect width="6" height="6" x="108" y="36" fill="#000"/><rect width="6" height="6" x="120" y="36" fill="#000"/><rect width="6" height="6" x="132" y="36" fill="#000"/><rect width="6" height="6" x="144" y="36" fill="#000"/><rect width="6" height="6" x="156" y="36" fill="#000"/><rect width="6" height="6" x="168" y="36" fill="#000"/><rect width="6" height="6" x="180" y="36" fill="#000"/><rect width="6" height="6" x="192" y="36" fill="#000"/><rect width="6" height="6" x="204" y="36" fill="#000"/><rect width="6" height="6" x="216" y="36" fill="#000"/><rect width="6" height="6" x="228" y="36" fill="#000"/><rect width="6" height="6" x="240" y="36" fill="#000"/><rect width="6" height="6" x="252" y="36" fill="#000"/><rect width="6" height="6" x="258" y="36" fill="#000"/><rect width="6" height="6" x="264" y="36" fill="#000"/><rect width="6" height="6" x="270" y="36" fill="#000"/><rect width="6" height="6" x="276" y="36" fill="#000"/><rect width="6" height="6" x="282" y="36" fill="#000"/><rect width="6" height="6" x="288" y="36" fill="#000"/><rect width="6" height="6" x="48" y="42" fill="#000"/><rect width="6" height="6" x="78" y="42" fill="#000"/><rect width="6" height="6" x="84" y="42" fill="#000"/><rect width="6" height="6" x="90" y="42" fill="#000"/><rect width="6" height="6" x="96" y="42" fill="#000"/><rect width="6" height="6" x="102" y="42" fill="#000"/><rect width="6" height="6" x="114" y="42" fill="#000"/><rect width="6" height="6" x="120" y="42" fill="#000"/><rect width="6" height="6" x="126" y="42" fill="#000"/><rect width="6" height="6" x="132" y="42" fill="#000"/><rect width="6" height="6" x="156" y="42" fill="#000"/><rect width="6" height="6" x="162" y="42" fill="#000"/><rect width="6" height="6" x="168" y="42" fill="#000"/><rect width="6" height="6" x="174" y="42" fill="#000"/><rect width="6" height="6" x="180" y="42" fill="#000"/><rect width="6" height="6" x="186" y="42" fill="#000"/><rect width="6" height="6" x="210" y="42" fill="#000"/><rect width="6" height="6" x="222" y="42" fill="#000"/><rect width="6" height="6" x="228" y="42" fill="#000"/><rect width="6" height="6" x="234" y="42" fill="#000"/><rect width="6" height="6" x="240" y="42" fill="#000"/><rect width="6" height="6" x="12" y="48" fill="#000"/><rect width="6" height="6" x="18" y="48" fill="#000"/><rect width="6" height="6" x="36" y="48" fill="#000"/><rect width="6" height="6" x="42" y="48" fill="#000"/><rect width="6" height="6" x="48" y="48" fill="#000"/><rect width="6" height="6" x="72" y="48" fill="#000"/><rect width="6" height="6" x="78" y="48" fill="#000"/><rect width="6" height="6" x="96" y="48" fill="#000"/><rect width="6" height="6" x="102" y="48" fill="#000"/><rect width="6" height="6" x="120" y="48" fill="#000"/><rect width="6" height="6" x="126" y="48" fill="#000"/><rect width="6" height="6" x="132" y="48" fill="#000"/><rect width="6" height="6" x="138" y="48" fill="#000"/><rect width="6" height="6" x="144" y="48" fill="#000"/><rect width="6" height="6" x="150" y="48" fill="#000"/><rect width="6" height="6" x="156" y="48" fill="#000"/><rect width="6" height="6" x="162" y="48" fill="#000"/><rect width="6" height="6" x="180" y="48" fill="#000"/><rect width="6" height="6" x="186" y="48" fill="#000"/><rect width="6" height="6" x="210" y="48" fill="#000"/><rect width="6" height="6" x="216" y="48" fill="#000"/><rect width="6" height="6" x="234" y="48" fill="#000"/><rect width="6" height="6" x="246" y="48" fill="#000"/><rect width="6" height="6" x="252" y="48" fill="#000"/><rect width="6" height="6" x="264" y="48" fill="#000"/><rect width="6" height="6" x="6" y="54" fill="#000"/><rect width="6" height="6" x="18" y="54" fill="#000"/><rect width="6" height="6" x="24" y="54" fill="#000"/><rect width="6" height="6" x="54" y="54" fill="#000"/><rect width="6" height="6" x="66" y="54" fill="#000"/><rect width="6" height="6" x="90" y="54" fill="#000"/><rect width="6" height="6" x="96" y="54" fill="#000"/><rect width="6" height="6" x="108" y="54" fill="#000"/><rect width="6" height="6" x="126" y="54" fill="#000"/><rect width="6" height="6" x="132" y="54" fill="#000"/><rect width="6" height="6" x="150" y="54" fill="#000"/><rect width="6" height="6" x="156" y="54" fill="#000"/><rect width="6" height="6" x="162" y="54" fill="#000"/><rect width="6" height="6" x="174" y="54" fill="#000"/><rect width="6" height="6" x="198" y="54" fill="#000"/><rect width="6" height="6" x="234" y="54" fill="#000"/><rect width="6" height="6" x="252" y="54" fill="#000"/><rect width="6" height="6" x="258" y="54" fill="#000"/><rect width="6" height="6" x="276" y="54" fill="#000"/><rect width="6" height="6" x="12" y="60" fill="#000"/><rect width="6" height="6" x="36" y="60" fill="#000"/><rect width="6" height="6" x="54" y="60" fill="#000"/><rect width="6" height="6" x="60" y="60" fill="#000"/><rect width="6" height="6" x="66" y="60" fill="#000"/><rect width="6" height="6" x="78" y="60" fill="#000"/><rect width="6" height="6" x="84" y="60" fill="#000"/><rect width="6" height="6" x="102" y="60" fill="#000"/><rect width="6" height="6" x="114" y="60" fill="#000"/><rect width="6" height="6" x="126" y="60" fill="#000"/><rect width="6" height="6" x="132" y="60" fill="#000"/><rect width="6" height="6" x="138" y="60" fill="#000"/><rect width="6" height="6" x="150" y="60" fill="#000"/><rect width="6" height="6" x="162" y="60" fill="#000"/><rect width="6" height="6" x="180" y="60" fill="#000"/><rect width="6" height="6" x="204" y="60" fill="#000"/><rect width="6" height="6" x="216" y="60" fill="#000"/><rect width="6" height="6" x="222" y="60" fill="#000"/><rect width="6" height="6" x="246" y="60" fill="#000"/><rect width="6" height="6" x="252" y="60" fill="#000"/><rect width="6" height="6" x="258" y="60" fill="#000"/><rect width="6" height="6" x="264" y="60" fill="#000"/><rect width="6" height="6" x="270" y="60" fill="#000"/><rect width="6" height="6" x="6" y="66" fill="#000"/><rect width="6" height="6" x="12" y="66" fill="#000"/><rect width="6" height="6" x="24" y="66" fill="#000"/><rect width="6" height="6" x="48" y="66" fill="#000"/><rect width="6" height="6" x="66" y="66" fill="#000"/><rect width="6" height="6" x="78" y="66" fill="#000"/><rect width="6" height="6" x="138" y="66" fill="#000"/><rect width="6" height="6" x="144" y="66" fill="#000"/><rect width="6" height="6" x="162" y="66" fill="#000"/><rect width="6" height="6" x="168" y="66" fill="#000"/><rect width="6" height="6" x="174" y="66" fill="#000"/><rect width="6" height="6" x="180" y="66" fill="#000"/><rect width="6" height="6" x="198" y="66" fill="#000"/><rect width="6" height="6" x="210" y="66" fill="#000"/><rect width="6" height="6" x="216" y="66" fill="#000"/><rect width="6" height="6" x="222" y="66" fill="#000"/><rect width="6" height="6" x="252" y="66" fill="#000"/><rect width="6" height="6" x="258" y="66" fill="#000"/><rect width="6" height="6" x="264" y="66" fill="#000"/><rect width="6" height="6" x="276" y="66" fill="#000"/><rect width="6" height="6" x="12" y="72" fill="#000"/><rect width="6" height="6" x="24" y="72" fill="#000"/><rect width="6" height="6" x="36" y="72" fill="#000"/><rect width="6" height="6" x="60" y="72" fill="#000"/><rect width="6" height="6" x="78" y="72" fill="#000"/><rect width="6" height="6" x="90" y="72" fill="#000"/><rect width="6" height="6" x="102" y="72" fill="#000"/><rect width="6" height="6" x="108" y="72" fill="#000"/><rect width="6" height="6" x="126" y="72" fill="#000"/><rect width="6" height="6" x="132" y="72" fill="#000"/><rect width="6" height="6" x="156" y="72" fill="#000"/><rect width="6" height="6" x="168" y="72" fill="#000"/><rect width="6" height="6" x="180" y="72" fill="#000"/><rect width="6" height="6" x="186" y="72" fill="#000"/><rect width="6" height="6" x="192" y="72" fill="#000"/><rect width="6" height="6" x="216" y="72" fill="#000"/><rect width="6" height="6" x="240" y="72" fill="#000"/><rect width="6" height="6" x="246" y="72" fill="#000"/><rect width="6" height="6" x="252" y="72" fill="#000"/><rect width="6" height="6" x="276" y="72" fill="#000"/><rect width="6" height="6" x="282" y="72" fill="#000"/><rect width="6" height="6" x="288" y="72" fill="#000"/><rect width="6" height="6" x="0" y="78" fill="#000"/><rect width="6" height="6" x="6" y="78" fill="#000"/><rect width="6" height="6" x="24" y="78" fill="#000"/><rect width="6" height="6" x="42" y="78" fill="#000"/><rect width="6" height="6" x="48" y="78" fill="#000"/><rect width="6" height="6" x="54" y="78" fill="#000"/><rect width="6" height="6" x="66" y="78" fill="#000"/><rect width="6" height="6" x="90" y="78" fill="#000"/><rect width="6" height="6" x="126" y="78" fill="#000"/><rect width="6" height="6" x="132" y="78" fill="#000"/><rect width="6" height="6" x="138" y="78" fill="#000"/><rect width="6" height="6" x="150" y="78" fill="#000"/><rect width="6" height="6" x="186" y="78" fill="#000"/><rect width="6" height="6" x="198" y="78" fill="#000"/><rect width="6" height="6" x="210" y="78" fill="#000"/><rect width="6" height="6" x="216" y="78" fill="#000"/><rect width="6" height="6" x="228" y="78" fill="#000"/><rect width="6" height="6" x="234" y="78" fill="#000"/><rect width="6" height="6" x="246" y="78" fill="#000"/><rect width="6" height="6" x="264" y="78" fill="#000"/><rect width="6" height="6" x="282" y="78" fill="#000"/><rect width="6" height="6" x="288" y="78" fill="#000"/><rect width="6" height="6" x="12" y="84" fill="#000"/><rect width="6" height="6" x="30" y="84" fill="#000"/><rect width="6" height="6" x="36" y="84" fill="#000"/><rect width="6" height="6" x="48" y="84" fill="#000"/><rect width="6" height="6" x="60" y="84" fill="#000"/><rect width="6" height="6" x="72" y="84" fill="#000"/><rect width="6" height="6" x="84" y="84" fill="#000"/><rect width="6" height="6" x="90" y="84" fill="#000"/><rect width="6" height="6" x="96" y="84" fill="#000"/><rect width="6" height="6" x="126" y="84" fill="#000"/><rect width="6" height="6" x="138" y="84" fill="#000"/><rect width="6" height="6" x="144" y="84" fill="#000"/><rect width="6" height="6" x="150" y="84" fill="#000"/><rect width="6" height="6" x="156" y="84" fill="#000"/><rect width="6" height="6" x="174" y="84" fill="#000"/><rect width="6" height="6" x="180" y="84" fill="#000"/><rect width="6" height="6" x="204" y="84" fill="#000"/><rect width="6" height="6" x="210" y="84" fill="#000"/><rect width="6" height="6" x="216" y="84" fill="#000"/><rect width="6" height="6" x="222" y="84" fill="#000"/><rect width="6" height="6" x="228" y="84" fill="#000"/><rect width="6" height="6" x="234" y="84" fill="#000"/><rect width="6" height="6" x="252" y="84" fill="#000"/><rect width="6" height="6" x="264" y="84" fill="#000"/><rect width="6" height="6" x="282" y="84" fill="#000"/><rect width="6" height="6" x="12" y="90" fill="#000"/><rect width="6" height="6" x="30" y="90" fill="#000"/><rect width="6" height="6" x="42" y="90" fill="#000"/><rect width="6" height="6" x="48" y="90" fill="#000"/><rect width="6" height="6" x="54" y="90" fill="#000"/><rect width="6" height="6" x="66" y="90" fill="#000"/><rect width="6" height="6" x="78" y="90" fill="#000"/><rect width="6" height="6" x="90" y="90" fill="#000"/><rect width="6" height="6" x="96" y="90" fill="#000"/><rect width="6" height="6" x="120" y="90" fill="#000"/><rect width="6" height="6" x="132" y="90" fill="#000"/><rect width="6" height="6" x="138" y="90" fill="#000"/><rect width="6" height="6" x="150" y="90" fill="#000"/><rect width="6" height="6" x="156" y="90" fill="#000"/><rect width="6" height="6" x="180" y="90" fill="#000"/><rect width="6" height="6" x="192" y="90" fill="#000"/><rect width="6" height="6" x="198" y="90" fill="#000"/><rect width="6" height="6" x="210" y="90" fill="#000"/><rect width="6" height="6" x="216" y="90" fill="#000"/><rect width="6" height="6" x="240" y="90" fill="#000"/><rect width="6" height="6" x="252" y="90" fill="#000"/><rect width="6" height="6" x="258" y="90" fill="#000"/><rect width="6" height="6" x="264" y="90" fill="#000"/><rect width="6" height="6" x="270" y="90" fill="#000"/><rect width="6" height="6" x="288" y="90" fill="#000"/><rect width="6" height="6" x="12" y="96" fill="#000"/><rect width="6" height="6" x="36" y="96" fill="#000"/><rect width="6" height="6" x="54" y="96" fill="#000"/><rect width="6" height="6" x="66" y="96" fill="#000"/><rect width="6" height="6" x="72" y="96" fill="#000"/><rect width="6" height="6" x="102" y="96" fill="#000"/><rect width="6" height="6" x="114" y="96" fill="#000"/><rect width="6" height="6" x="144" y="96" fill="#000"/><rect width="6" height="6" x="150" y="96" fill="#000"/><rect width="6" height="6" x="156" y="96" fill="#000"/><rect width="6" height="6" x="174" y="96" fill="#000"/><rect width="6" height="6" x="186" y="96" fill="#000"/><rect width="6" height="6" x="198" y="96" fill="#000"/><rect width="6" height="6" x="234" y="96" fill="#000"/><rect width="6" height="6" x="240" y="96" fill="#000"/><rect width="6" height="6" x="246" y="96" fill="#000"/><rect width="6" height="6" x="252" y="96" fill="#000"/><rect width="6" height="6" x="264" y="96" fill="#000"/><rect width="6" height="6" x="276" y="96" fill="#000"/><rect width="6" height="6" x="282" y="96" fill="#000"/><rect width="6" height="6" x="18" y="102" fill="#000"/><rect width="6" height="6" x="24" y="102" fill="#000"/><rect width="6" height="6" x="30" y="102" fill="#000"/><rect width="6" height="6" x="54" y="102" fill="#000"/><rect width="6" height="6" x="66" y="102" fill="#000"/><rect width="6" height="6" x="72" y="102" fill="#000"/><rect width="6" height="6" x="78" y="102" fill="#000"/><rect width="6" height="6" x="84" y="102" fill="#000"/><rect width="6" height="6" x="90" y="102" fill="#000"/><rect width="6" height="6" x="96" y="102" fill="#000"/><rect width="6" height="6" x="102" y="102" fill="#000"/><rect width="6" height="6" x="108" y="102" fill="#000"/><rect width="6" height="6" x="114" y="102" fill="#000"/><rect width="6" height="6" x="120" y="102" fill="#000"/><rect width="6" height="6" x="126" y="102" fill="#000"/><rect width="6" height="6" x="132" y="102" fill="#000"/><rect width="6" height="6" x="144" y="102" fill="#000"/><rect width="6" height="6" x="168" y="102" fill="#000"/><rect width="6" height="6" x="174" y="102" fill="#000"/><rect width="6" height="6" x="180" y="102" fill="#000"/><rect width="6" height="6" x="186" y="102" fill="#000"/><rect width="6" height="6" x="192" y="102" fill="#000"/><rect width="6" height="6" x="204" y="102" fill="#000"/><rect width="6" height="6" x="216" y="102" fill="#000"/><rect width="6" height="6" x="222" y="102" fill="#000"/><rect width="6" height="6" x="240" y="102" fill="#000"/><rect width="6" height="6" x="258" y="102" fill="#000"/><rect width="6" height="6" x="264" y="102" fill="#000"/><rect width="6" height="6" x="270" y="102" fill="#000"/><rect width="6" height="6" x="276" y="102" fill="#000"/><rect width="6" height="6" x="282" y="102" fill="#000"/><rect width="6" height="6" x="288" y="102" fill="#000"/><rect width="6" height="6" x="12" y="108" fill="#000"/><rect width="6" height="6" x="24" y="108" fill="#000"/><rect width="6" height="6" x="30" y="108" fill="#000"/><rect width="6" height="6" x="36" y="108" fill="#000"/><rect width="6" height="6" x="42" y="108" fill="#000"/><rect width="6" height="6" x="72" y="108" fill="#000"/><rect width="6" height="6" x="78" y="108" fill="#000"/><rect width="6" height="6" x="90" y="108" fill="#000"/><rect width="6" height="6" x="96" y="108" fill="#000"/><rect width="6" height="6" x="108" y="108" fill="#000"/><rect width="6" height="6" x="120" y="108" fill="#000"/><rect width="6" height="6" x="126" y="108" fill="#000"/><rect width="6" height="6" x="132" y="108" fill="#000"/><rect width="6" height="6" x="138" y="108" fill="#000"/><rect width="6" height="6" x="144" y="108" fill="#000"/><rect width="6" height="6" x="168" y="108" fill="#000"/><rect width="6" height="6" x="192" y="108" fill="#000"/><rect width="6" height="6" x="210" y="108" fill="#000"/><rect width="6" height="6" x="222" y="108" fill="#000"/><rect width="6" height="6" x="228" y="108" fill="#000"/><rect width="6" height="6" x="246" y="108" fill="#000"/><rect width="6" height="6" x="288" y="108" fill="#000"/><rect width="6" height="6" x="0" y="114" fill="#000"/><rect width="6" height="6" x="6" y="114" fill="#000"/><rect width="6" height="6" x="12" y="114" fill="#000"/><rect width="6" height="6" x="24" y="114" fill="#000"/><rect width="6" height="6" x="30" y="114" fill="#000"/><rect width="6" height="6" x="42" y="114" fill="#000"/><rect width="6" height="6" x="54" y="114" fill="#000"/><rect width="6" height="6" x="72" y="114" fill="#000"/><rect width="6" height="6" x="90" y="114" fill="#000"/><rect width="6" height="6" x="96" y="114" fill="#000"/><rect width="6" height="6" x="102" y="114" fill="#000"/><rect width="6" height="6" x="108" y="114" fill="#000"/><rect width="6" height="6" x="120" y="114" fill="#000"/><rect width="6" height="6" x="150" y="114" fill="#000"/><rect width="6" height="6" x="156" y="114" fill="#000"/><rect width="6" height="6" x="168" y="114" fill="#000"/><rect width="6" height="6" x="174" y="114" fill="#000"/><rect width="6" height="6" x="210" y="114" fill="#000"/><rect width="6" height="6" x="216" y="114" fill="#000"/><rect width="6" height="6" x="228" y="114" fill="#000"/><rect width="6" height="6" x="246" y="114" fill="#000"/><rect width="6" height="6" x="252" y="114" fill="#000"/><rect width="6" height="6" x="258" y="114" fill="#000"/><rect width="6" height="6" x="270" y="114" fill="#000"/><rect width="6" height="6" x="282" y="114" fill="#000"/><rect width="6" height="6" x="6" y="120" fill="#000"/><rect width="6" height="6" x="12" y="120" fill="#000"/><rect width="6" height="6" x="18" y="120" fill="#000"/><rect width="6" height="6" x="24" y="120" fill="#000"/><rect width="6" height="6" x="36" y="120" fill="#000"/><rect width="6" height="6" x="48" y="120" fill="#000"/><rect width="6" height="6" x="60" y="120" fill="#000"/><rect width="6" height="6" x="72" y="120" fill="#000"/><rect width="6" height="6" x="84" y="120" fill="#000"/><rect width="6" height="6" x="96" y="120" fill="#000"/><rect width="6" height="6" x="108" y="120" fill="#000"/><rect width="6" height="6" x="120" y="120" fill="#000"/><rect width="6" height="6" x="126" y="120" fill="#000"/><rect width="6" height="6" x="180" y="120" fill="#000"/><rect width="6" height="6" x="186" y="120" fill="#000"/><rect width="6" height="6" x="204" y="120" fill="#000"/><rect width="6" height="6" x="210" y="120" fill="#000"/><rect width="6" height="6" x="222" y="120" fill="#000"/><rect width="6" height="6" x="234" y="120" fill="#000"/><rect width="6" height="6" x="252" y="120" fill="#000"/><rect width="6" height="6" x="258" y="120" fill="#000"/><rect width="6" height="6" x="270" y="120" fill="#000"/><rect width="6" height="6" x="288" y="120" fill="#000"/><rect width="6" height="6" x="0" y="126" fill="#000"/><rect width="6" height="6" x="12" y="126" fill="#000"/><rect width="6" height="6" x="18" y="126" fill="#000"/><rect width="6" height="6" x="30" y="126" fill="#000"/><rect width="6" height="6" x="42" y="126" fill="#000"/><rect width="6" height="6" x="48" y="126" fill="#000"/><rect width="6" height="6" x="54" y="126" fill="#000"/><rect width="6" height="6" x="78" y="126" fill="#000"/><rect width="6" height="6" x="96" y="126" fill="#000"/><rect width="6" height="6" x="102" y="126" fill="#000"/><rect width="6" height="6" x="114" y="126" fill="#000"/><rect width="6" height="6" x="120" y="126" fill="#000"/><rect width="6" height="6" x="138" y="126" fill="#000"/><rect width="6" height="6" x="150" y="126" fill="#000"/><rect width="6" height="6" x="156" y="126" fill="#000"/><rect width="6" height="6" x="162" y="126" fill="#000"/><rect width="6" height="6" x="180" y="126" fill="#000"/><rect width="6" height="6" x="192" y="126" fill="#000"/><rect width="6" height="6" x="210" y="126" fill="#000"/><rect width="6" height="6" x="216" y="126" fill="#000"/><rect width="6" height="6" x="222" y="126" fill="#000"/><rect width="6" height="6" x="234" y="126" fill="#000"/><rect width="6" height="6" x="252" y="126" fill="#000"/><rect width="6" height="6" x="258" y="126" fill="#000"/><rect width="6" height="6" x="282" y="126" fill="#000"/><rect width="6" height="6" x="6" y="132" fill="#000"/><rect width="6" height="6" x="18" y="132" fill="#000"/><rect width="6" height="6" x="24" y="132" fill="#000"/><rect width="6" height="6" x="30" y="132" fill="#000"/><rect width="6" height="6" x="36" y="132" fill="#000"/><rect width="6" height="6" x="42" y="132" fill="#000"/><rect width="6" height="6" x="48" y="132" fill="#000"/><rect width="6" height="6" x="54" y="132" fill="#000"/><rect width="6" height="6" x="72" y="132" fill="#000"/><rect width="6" height="6" x="90" y="132" fill="#000"/><rect width="6" height="6" x="102" y="132" fill="#000"/><rect width="6" height="6" x="108" y="132" fill="#000"/><rect width="6" height="6" x="114" y="132" fill="#000"/><rect width="6" height="6" x="120" y="132" fill="#000"/><rect width="6" height="6" x="132" y="132" fill="#000"/><rect width="6" height="6" x="138" y="132" fill="#000"/><rect width="6" height="6" x="144" y="132" fill="#000"/><rect width="6" height="6" x="150" y="132" fill="#000"/><rect width="6" height="6" x="156" y="132" fill="#000"/><rect width="6" height="6" x="168" y="132" fill="#000"/><rect width="6" height="6" x="174" y="132" fill="#000"/><rect width="6" height="6" x="192" y="132" fill="#000"/><rect width="6" height="6" x="204" y="132" fill="#000"/><rect width="6" height="6" x="240" y="132" fill="#000"/><rect width="6" height="6" x="246" y="132" fill="#000"/><rect width="6" height="6" x="252" y="132" fill="#000"/><rect width="6" height="6" x="258" y="132" fill="#000"/><rect width="6" height="6" x="264" y="132" fill="#000"/><rect width="6" height="6" x="270" y="132" fill="#000"/><rect width="6" height="6" x="12" y="138" fill="#000"/><rect width="6" height="6" x="24" y="138" fill="#000"/><rect width="6" height="6" x="48" y="138" fill="#000"/><rect width="6" height="6" x="60" y="138" fill="#000"/><rect width="6" height="6" x="72" y="138" fill="#000"/><rect width="6" height="6" x="84" y="138" fill="#000"/><rect width="6" height="6" x="90" y="138" fill="#000"/><rect width="6" height="6" x="126" y="138" fill="#000"/><rect width="6" height="6" x="132" y="138" fill="#000"/><rect width="6" height="6" x="156" y="138" fill="#000"/><rect width="6" height="6" x="162" y="138" fill="#000"/><rect width="6" height="6" x="180" y="138" fill="#000"/><rect width="6" height="6" x="186" y="138" fill="#000"/><rect width="6" height="6" x="204" y="138" fill="#000"/><rect width="6" height="6" x="216" y="138" fill="#000"/><rect width="6" height="6" x="222" y="138" fill="#000"/><rect width="6" height="6" x="228" y="138" fill="#000"/><rect width="6" height="6" x="240" y="138" fill="#000"/><rect width="6" height="6" x="264" y="138" fill="#000"/><rect width="6" height="6" x="276" y="138" fill="#000"/><rect width="6" height="6" x="282" y="138" fill="#000"/><rect width="6" height="6" x="288" y="138" fill="#000"/><rect width="6" height="6" x="24" y="144" fill="#000"/><rect width="6" height="6" x="36" y="144" fill="#000"/><rect width="6" height="6" x="48" y="144" fill="#000"/><rect width="6" height="6" x="54" y="144" fill="#000"/><rect width="6" height="6" x="78" y="144" fill="#000"/><rect width="6" height="6" x="90" y="144" fill="#000"/><rect width="6" height="6" x="96" y="144" fill="#000"/><rect width="6" height="6" x="108" y="144" fill="#000"/><rect width="6" height="6" x="114" y="144" fill="#000"/><rect width="6" height="6" x="120" y="144" fill="#000"/><rect width="6" height="6" x="132" y="144" fill="#000"/><rect width="6" height="6" x="144" y="144" fill="#000"/><rect width="6" height="6" x="156" y="144" fill="#000"/><rect width="6" height="6" x="174" y="144" fill="#000"/><rect width="6" height="6" x="180" y="144" fill="#000"/><rect width="6" height="6" x="186" y="144" fill="#000"/><rect width="6" height="6" x="192" y="144" fill="#000"/><rect width="6" height="6" x="198" y="144" fill="#000"/><rect width="6" height="6" x="204" y="144" fill="#000"/><rect width="6" height="6" x="216" y="144" fill="#000"/><rect width="6" height="6" x="222" y="144" fill="#000"/><rect width="6" height="6" x="234" y="144" fill="#000"/><rect width="6" height="6" x="240" y="144" fill="#000"/><rect width="6" height="6" x="252" y="144" fill="#000"/><rect width="6" height="6" x="264" y="144" fill="#000"/><rect width="6" height="6" x="276" y="144" fill="#000"/><rect width="6" height="6" x="282" y="144" fill="#000"/><rect width="6" height="6" x="0" y="150" fill="#000"/><rect width="6" height="6" x="24" y="150" fill="#000"/><rect width="6" height="6" x="48" y="150" fill="#000"/><rect width="6" height="6" x="72" y="150" fill="#000"/><rect width="6" height="6" x="102" y="150" fill="#000"/><rect width="6" height="6" x="108" y="150" fill="#000"/><rect width="6" height="6" x="114" y="150" fill="#000"/><rect width="6" height="6" x="120" y="150" fill="#000"/><rect width="6" height="6" x="132" y="150" fill="#000"/><rect width="6" height="6" x="156" y="150" fill="#000"/><rect width="6" height="6" x="216" y="150" fill="#000"/><rect width="6" height="6" x="228" y="150" fill="#000"/><rect width="6" height="6" x="240" y="150" fill="#000"/><rect width="6" height="6" x="264" y="150" fill="#000"/><rect width="6" height="6" x="288" y="150" fill="#000"/><rect width="6" height="6" x="0" y="156" fill="#000"/><rect width="6" height="6" x="6" y="156" fill="#000"/><rect width="6" height="6" x="12" y="156" fill="#000"/><rect width="6" height="6" x="24" y="156" fill="#000"/><rect width="6" height="6" x="30" y="156" fill="#000"/><rect width="6" height="6" x="36" y="156" fill="#000"/><rect width="6" height="6" x="42" y="156" fill="#000"/><rect width="6" height="6" x="48" y="156" fill="#000"/><rect width="6" height="6" x="54" y="156" fill="#000"/><rect width="6" height="6" x="60" y="156" fill="#000"/><rect width="6" height="6" x="72" y="156" fill="#000"/><rect width="6" height="6" x="96" y="156" fill="#000"/><rect width="6" height="6" x="120" y="156" fill="#000"/><rect width="6" height="6" x="126" y="156" fill="#000"/><rect width="6" height="6" x="132" y="156" fill="#000"/><rect width="6" height="6" x="138" y="156" fill="#000"/><rect width="6" height="6" x="144" y="156" fill="#000"/><rect width="6" height="6" x="150" y="156" fill="#000"/><rect width="6" height="6" x="156" y="156" fill="#000"/><rect width="6" height="6" x="162" y="156" fill="#000"/><rect width="6" height="6" x="174" y="156" fill="#000"/><rect width="6" height="6" x="192" y="156" fill="#000"/><rect width="6" height="6" x="210" y="156" fill="#000"/><rect width="6" height="6" x="228" y="156" fill="#000"/><rect width="6" height="6" x="234" y="156" fill="#000"/><rect width="6" height="6" x="240" y="156" fill="#000"/><rect width="6" height="6" x="246" y="156" fill="#000"/><rect width="6" height="6" x="252" y="156" fill="#000"/><rect width="6" height="6" x="258" y="156" fill="#000"/><rect width="6" height="6" x="264" y="156" fill="#000"/><rect width="6" height="6" x="270" y="156" fill="#000"/><rect width="6" height="6" x="276" y="156" fill="#000"/><rect width="6" height="6" x="282" y="156" fill="#000"/><rect width="6" height="6" x="0" y="162" fill="#000"/><rect width="6" height="6" x="24" y="162" fill="#000"/><rect width="6" height="6" x="54" y="162" fill="#000"/><rect width="6" height="6" x="60" y="162" fill="#000"/><rect width="6" height="6" x="66" y="162" fill="#000"/><rect width="6" height="6" x="72" y="162" fill="#000"/><rect width="6" height="6" x="84" y="162" fill="#000"/><rect width="6" height="6" x="96" y="162" fill="#000"/><rect width="6" height="6" x="102" y="162" fill="#000"/><rect width="6" height="6" x="108" y="162" fill="#000"/><rect width="6" height="6" x="114" y="162" fill="#000"/><rect width="6" height="6" x="150" y="162" fill="#000"/><rect width="6" height="6" x="156" y="162" fill="#000"/><rect width="6" height="6" x="162" y="162" fill="#000"/><rect width="6" height="6" x="192" y="162" fill="#000"/><rect width="6" height="6" x="204" y="162" fill="#000"/><rect width="6" height="6" x="210" y="162" fill="#000"/><rect width="6" height="6" x="222" y="162" fill="#000"/><rect width="6" height="6" x="228" y="162" fill="#000"/><rect width="6" height="6" x="240" y="162" fill="#000"/><rect width="6" height="6" x="264" y="162" fill="#000"/><rect width="6" height="6" x="282" y="162" fill="#000"/><rect width="6" height="6" x="288" y="162" fill="#000"/><rect width="6" height="6" x="0" y="168" fill="#000"/><rect width="6" height="6" x="6" y="168" fill="#000"/><rect width="6" height="6" x="30" y="168" fill="#000"/><rect width="6" height="6" x="36" y="168" fill="#000"/><rect width="6" height="6" x="42" y="168" fill="#000"/><rect width="6" height="6" x="48" y="168" fill="#000"/><rect width="6" height="6" x="60" y="168" fill="#000"/><rect width="6" height="6" x="66" y="168" fill="#000"/><rect width="6" height="6" x="72" y="168" fill="#000"/><rect width="6" height="6" x="84" y="168" fill="#000"/><rect width="6" height="6" x="108" y="168" fill="#000"/><rect width="6" height="6" x="114" y="168" fill="#000"/><rect width="6" height="6" x="120" y="168" fill="#000"/><rect width="6" height="6" x="126" y="168" fill="#000"/><rect width="6" height="6" x="150" y="168" fill="#000"/><rect width="6" height="6" x="162" y="168" fill="#000"/><rect width="6" height="6" x="186" y="168" fill="#000"/><rect width="6" height="6" x="192" y="168" fill="#000"/><rect width="6" height="6" x="210" y="168" fill="#000"/><rect width="6" height="6" x="222" y="168" fill="#000"/><rect width="6" height="6" x="228" y="168" fill="#000"/><rect width="6" height="6" x="240" y="168" fill="#000"/><rect width="6" height="6" x="246" y="168" fill="#000"/><rect width="6" height="6" x="258" y="168" fill="#000"/><rect width="6" height="6" x="270" y="168" fill="#000"/><rect width="6" height="6" x="276" y="168" fill="#000"/><rect width="6" height="6" x="24" y="174" fill="#000"/><rect width="6" height="6" x="48" y="174" fill="#000"/><rect width="6" height="6" x="60" y="174" fill="#000"/><rect width="6" height="6" x="66" y="174" fill="#000"/><rect width="6" height="6" x="78" y="174" fill="#000"/><rect width="6" height="6" x="96" y="174" fill="#000"/><rect width="6" height="6" x="102" y="174" fill="#000"/><rect width="6" height="6" x="108" y="174" fill="#000"/><rect width="6" height="6" x="120" y="174" fill="#000"/><rect width="6" height="6" x="126" y="174" fill="#000"/><rect width="6" height="6" x="132" y="174" fill="#000"/><rect width="6" height="6" x="144" y="174" fill="#000"/><rect width="6" height="6" x="150" y="174" fill="#000"/><rect width="6" height="6" x="156" y="174" fill="#000"/><rect width="6" height="6" x="168" y="174" fill="#000"/><rect width="6" height="6" x="174" y="174" fill="#000"/><rect width="6" height="6" x="186" y="174" fill="#000"/><rect width="6" height="6" x="204" y="174" fill="#000"/><rect width="6" height="6" x="210" y="174" fill="#000"/><rect width="6" height="6" x="234" y="174" fill="#000"/><rect width="6" height="6" x="240" y="174" fill="#000"/><rect width="6" height="6" x="258" y="174" fill="#000"/><rect width="6" height="6" x="270" y="174" fill="#000"/><rect width="6" height="6" x="282" y="174" fill="#000"/><rect width="6" height="6" x="288" y="174" fill="#000"/><rect width="6" height="6" x="6" y="180" fill="#000"/><rect width="6" height="6" x="12" y="180" fill="#000"/><rect width="6" height="6" x="18" y="180" fill="#000"/><rect width="6" height="6" x="24" y="180" fill="#000"/><rect width="6" height="6" x="30" y="180" fill="#000"/><rect width="6" height="6" x="36" y="180" fill="#000"/><rect width="6" height="6" x="48" y="180" fill="#000"/><rect width="6" height="6" x="60" y="180" fill="#000"/><rect width="6" height="6" x="66" y="180" fill="#000"/><rect width="6" height="6" x="96" y="180" fill="#000"/><rect width="6" height="6" x="102" y="180" fill="#000"/><rect width="6" height="6" x="108" y="180" fill="#000"/><rect width="6" height="6" x="114" y="180" fill="#000"/><rect width="6" height="6" x="120" y="180" fill="#000"/><rect width="6" height="6" x="132" y="180" fill="#000"/><rect width="6" height="6" x="138" y="180" fill="#000"/><rect width="6" height="6" x="144" y="180" fill="#000"/><rect width="6" height="6" x="156" y="180" fill="#000"/><rect width="6" height="6" x="174" y="180" fill="#000"/><rect width="6" height="6" x="180" y="180" fill="#000"/><rect width="6" height="6" x="186" y="180" fill="#000"/><rect width="6" height="6" x="198" y="180" fill="#000"/><rect width="6" height="6" x="204" y="180" fill="#000"/><rect width="6" height="6" x="222" y="180" fill="#000"/><rect width="6" height="6" x="234" y="180" fill="#000"/><rect width="6" height="6" x="252" y="180" fill="#000"/><rect width="6" height="6" x="258" y="180" fill="#000"/><rect width="6" height="6" x="276" y="180" fill="#000"/><rect width="6" height="6" x="288" y="180" fill="#000"/><rect width="6" height="6" x="6" y="186" fill="#000"/><rect width="6" height="6" x="24" y="186" fill="#000"/><rect width="6" height="6" x="42" y="186" fill="#000"/><rect width="6" height="6" x="48" y="186" fill="#000"/><rect width="6" height="6" x="54" y="186" fill="#000"/><rect width="6" height="6" x="78" y="186" fill="#000"/><rect width="6" height="6" x="84" y="186" fill="#000"/><rect width="6" height="6" x="90" y="186" fill="#000"/><rect width="6" height="6" x="96" y="186" fill="#000"/><rect width="6" height="6" x="108" y="186" fill="#000"/><rect width="6" height="6" x="126" y="186" fill="#000"/><rect width="6" height="6" x="132" y="186" fill="#000"/><rect width="6" height="6" x="138" y="186" fill="#000"/><rect width="6" height="6" x="150" y="186" fill="#000"/><rect width="6" height="6" x="156" y="186" fill="#000"/><rect width="6" height="6" x="168" y="186" fill="#000"/><rect width="6" height="6" x="180" y="186" fill="#000"/><rect width="6" height="6" x="186" y="186" fill="#000"/><rect width="6" height="6" x="192" y="186" fill="#000"/><rect width="6" height="6" x="198" y="186" fill="#000"/><rect width="6" height="6" x="210" y="186" fill="#000"/><rect width="6" height="6" x="222" y="186" fill="#000"/><rect width="6" height="6" x="234" y="186" fill="#000"/><rect width="6" height="6" x="240" y="186" fill="#000"/><rect width="6" height="6" x="252" y="186" fill="#000"/><rect width="6" height="6" x="258" y="186" fill="#000"/><rect width="6" height="6" x="264" y="186" fill="#000"/><rect width="6" height="6" x="270" y="186" fill="#000"/><rect width="6" height="6" x="6" y="192" fill="#000"/><rect width="6" height="6" x="12" y="192" fill="#000"/><rect width="6" height="6" x="36" y="192" fill="#000"/><rect width="6" height="6" x="54" y="192" fill="#000"/><rect width="6" height="6" x="66" y="192" fill="#000"/><rect width="6" height="6" x="72" y="192" fill="#000"/><rect width="6" height="6" x="90" y="192" fill="#000"/><rect width="6" height="6" x="108" y="192" fill="#000"/><rect width="6" height="6" x="120" y="192" fill="#000"/><rect width="6" height="6" x="126" y="192" fill="#000"/><rect width="6" height="6" x="150" y="192" fill="#000"/><rect width="6" height="6" x="186" y="192" fill="#000"/><rect width="6" height="6" x="240" y="192" fill="#000"/><rect width="6" height="6" x="246" y="192" fill="#000"/><rect width="6" height="6" x="264" y="192" fill="#000"/><rect width="6" height="6" x="270" y="192" fill="#000"/><rect width="6" height="6" x="282" y="192" fill="#000"/><rect width="6" height="6" x="288" y="192" fill="#000"/><rect width="6" height="6" x="18" y="198" fill="#000"/><rect width="6" height="6" x="24" y="198" fill="#000"/><rect width="6" height="6" x="42" y="198" fill="#000"/><rect width="6" height="6" x="54" y="198" fill="#000"/><rect width="6" height="6" x="84" y="198" fill="#000"/><rect width="6" height="6" x="114" y="198" fill="#000"/><rect width="6" height="6" x="126" y="198" fill="#000"/><rect width="6" height="6" x="132" y="198" fill="#000"/><rect width="6" height="6" x="150" y="198" fill="#000"/><rect width="6" height="6" x="156" y="198" fill="#000"/><rect width="6" height="6" x="162" y="198" fill="#000"/><rect width="6" height="6" x="168" y="198" fill="#000"/><rect width="6" height="6" x="174" y="198" fill="#000"/><rect width="6" height="6" x="186" y="198" fill="#000"/><rect width="6" height="6" x="216" y="198" fill="#000"/><rect width="6" height="6" x="222" y="198" fill="#000"/><rect width="6" height="6" x="234" y="198" fill="#000"/><rect width="6" height="6" x="282" y="198" fill="#000"/><rect width="6" height="6" x="6" y="204" fill="#000"/><rect width="6" height="6" x="12" y="204" fill="#000"/><rect width="6" height="6" x="24" y="204" fill="#000"/><rect width="6" height="6" x="30" y="204" fill="#000"/><rect width="6" height="6" x="36" y="204" fill="#000"/><rect width="6" height="6" x="42" y="204" fill="#000"/><rect width="6" height="6" x="48" y="204" fill="#000"/><rect width="6" height="6" x="54" y="204" fill="#000"/><rect width="6" height="6" x="60" y="204" fill="#000"/><rect width="6" height="6" x="66" y="204" fill="#000"/><rect width="6" height="6" x="78" y="204" fill="#000"/><rect width="6" height="6" x="90" y="204" fill="#000"/><rect width="6" height="6" x="138" y="204" fill="#000"/><rect width="6" height="6" x="144" y="204" fill="#000"/><rect width="6" height="6" x="162" y="204" fill="#000"/><rect width="6" height="6" x="174" y="204" fill="#000"/><rect width="6" height="6" x="180" y="204" fill="#000"/><rect width="6" height="6" x="192" y="204" fill="#000"/><rect width="6" height="6" x="204" y="204" fill="#000"/><rect width="6" height="6" x="228" y="204" fill="#000"/><rect width="6" height="6" x="240" y="204" fill="#000"/><rect width="6" height="6" x="258" y="204" fill="#000"/><rect width="6" height="6" x="264" y="204" fill="#000"/><rect width="6" height="6" x="6" y="210" fill="#000"/><rect width="6" height="6" x="18" y="210" fill="#000"/><rect width="6" height="6" x="42" y="210" fill="#000"/><rect width="6" height="6" x="48" y="210" fill="#000"/><rect width="6" height="6" x="54" y="210" fill="#000"/><rect width="6" height="6" x="84" y="210" fill="#000"/><rect width="6" height="6" x="108" y="210" fill="#000"/><rect width="6" height="6" x="120" y="210" fill="#000"/><rect width="6" height="6" x="150" y="210" fill="#000"/><rect width="6" height="6" x="162" y="210" fill="#000"/><rect width="6" height="6" x="168" y="210" fill="#000"/><rect width="6" height="6" x="174" y="210" fill="#000"/><rect width="6" height="6" x="186" y="210" fill="#000"/><rect width="6" height="6" x="192" y="210" fill="#000"/><rect width="6" height="6" x="198" y="210" fill="#000"/><rect width="6" height="6" x="216" y="210" fill="#000"/><rect width="6" height="6" x="234" y="210" fill="#000"/><rect width="6" height="6" x="240" y="210" fill="#000"/><rect width="6" height="6" x="246" y="210" fill="#000"/><rect width="6" height="6" x="252" y="210" fill="#000"/><rect width="6" height="6" x="258" y="210" fill="#000"/><rect width="6" height="6" x="264" y="210" fill="#000"/><rect width="6" height="6" x="276" y="210" fill="#000"/><rect width="6" height="6" x="282" y="210" fill="#000"/><rect width="6" height="6" x="288" y="210" fill="#000"/><rect width="6" height="6" x="0" y="216" fill="#000"/><rect width="6" height="6" x="18" y="216" fill="#000"/><rect width="6" height="6" x="24" y="216" fill="#000"/><rect width="6" height="6" x="36" y="216" fill="#000"/><rect width="6" height="6" x="66" y="216" fill="#000"/><rect width="6" height="6" x="72" y="216" fill="#000"/><rect width="6" height="6" x="78" y="216" fill="#000"/><rect width="6" height="6" x="96" y="216" fill="#000"/><rect width="6" height="6" x="126" y="216" fill="#000"/><rect width="6" height="6" x="132" y="216" fill="#000"/><rect width="6" height="6" x="138" y="216" fill="#000"/><rect width="6" height="6" x="150" y="216" fill="#000"/><rect width="6" height="6" x="156" y="216" fill="#000"/><rect width="6" height="6" x="168" y="216" fill="#000"/><rect width="6" height="6" x="180" y="216" fill="#000"/><rect width="6" height="6" x="186" y="216" fill="#000"/><rect width="6" height="6" x="204" y="216" fill="#000"/><rect width="6" height="6" x="210" y="216" fill="#000"/><rect width="6" height="6" x="216" y="216" fill="#000"/><rect width="6" height="6" x="228" y="216" fill="#000"/><rect width="6" height="6" x="234" y="216" fill="#000"/><rect width="6" height="6" x="246" y="216" fill="#000"/><rect width="6" height="6" x="252" y="216" fill="#000"/><rect width="6" height="6" x="264" y="216" fill="#000"/><rect width="6" height="6" x="276" y="216" fill="#000"/><rect width="6" height="6" x="288" y="216" fill="#000"/><rect width="6" height="6" x="0" y="222" fill="#000"/><rect width="6" height="6" x="6" y="222" fill="#000"/><rect width="6" height="6" x="12" y="222" fill="#000"/><rect width="6" height="6" x="30" y="222" fill="#000"/><rect width="6" height="6" x="48" y="222" fill="#000"/><rect width="6" height="6" x="54" y="222" fill="#000"/><rect width="6" height="6" x="66" y="222" fill="#000"/><rect width="6" height="6" x="96" y="222" fill="#000"/><rect width="6" height="6" x="156" y="222" fill="#000"/><rect width="6" height="6" x="174" y="222" fill="#000"/><rect width="6" height="6" x="180" y="222" fill="#000"/><rect width="6" height="6" x="198" y="222" fill="#000"/><rect width="6" height="6" x="210" y="222" fill="#000"/><rect width="6" height="6" x="222" y="222" fill="#000"/><rect width="6" height="6" x="228" y="222" fill="#000"/><rect width="6" height="6" x="234" y="222" fill="#000"/><rect width="6" height="6" x="240" y="222" fill="#000"/><rect width="6" height="6" x="246" y="222" fill="#000"/><rect width="6" height="6" x="252" y="222" fill="#000"/><rect width="6" height="6" x="258" y="222" fill="#000"/><rect width="6" height="6" x="264" y="222" fill="#000"/><rect width="6" height="6" x="276" y="222" fill="#000"/><rect width="6" height="6" x="288" y="222" fill="#000"/><rect width="6" height="6" x="6" y="228" fill="#000"/><rect width="6" height="6" x="30" y="228" fill="#000"/><rect width="6" height="6" x="36" y="228" fill="#000"/><rect width="6" height="6" x="42" y="228" fill="#000"/><rect width="6" height="6" x="66" y="228" fill="#000"/><rect width="6" height="6" x="78" y="228" fill="#000"/><rect width="6" height="6" x="96" y="228" fill="#000"/><rect width="6" height="6" x="102" y="228" fill="#000"/><rect width="6" height="6" x="108" y="228" fill="#000"/><rect width="6" height="6" x="114" y="228" fill="#000"/><rect width="6" height="6" x="120" y="228" fill="#000"/><rect width="6" height="6" x="126" y="228" fill="#000"/><rect width="6" height="6" x="132" y="228" fill="#000"/><rect width="6" height="6" x="138" y="228" fill="#000"/><rect width="6" height="6" x="156" y="228" fill="#000"/><rect width="6" height="6" x="162" y="228" fill="#000"/><rect width="6" height="6" x="174" y="228" fill="#000"/><rect width="6" height="6" x="186" y="228" fill="#000"/><rect width="6" height="6" x="198" y="228" fill="#000"/><rect width="6" height="6" x="210" y="228" fill="#000"/><rect width="6" height="6" x="228" y="228" fill="#000"/><rect width="6" height="6" x="240" y="228" fill="#000"/><rect width="6" height="6" x="246" y="228" fill="#000"/><rect width="6" height="6" x="258" y="228" fill="#000"/><rect width="6" height="6" x="264" y="228" fill="#000"/><rect width="6" height="6" x="270" y="228" fill="#000"/><rect width="6" height="6" x="6" y="234" fill="#000"/><rect width="6" height="6" x="12" y="234" fill="#000"/><rect width="6" height="6" x="18" y="234" fill="#000"/><rect width="6" height="6" x="60" y="234" fill="#000"/><rect width="6" height="6" x="66" y="234" fill="#000"/><rect width="6" height="6" x="72" y="234" fill="#000"/><rect width="6" height="6" x="78" y="234" fill="#000"/><rect width="6" height="6" x="84" y="234" fill="#000"/><rect width="6" height="6" x="102" y="234" fill="#000"/><rect width="6" height="6" x="108" y="234" fill="#000"/><rect width="6" height="6" x="132" y="234" fill="#000"/><rect width="6" height="6" x="168" y="234" fill="#000"/><rect width="6" height="6" x="180" y="234" fill="#000"/><rect width="6" height="6" x="192" y="234" fill="#000"/><rect width="6" height="6" x="204" y="234" fill="#000"/><rect width="6" height="6" x="216" y="234" fill="#000"/><rect width="6" height="6" x="270" y="234" fill="#000"/><rect width="6" height="6" x="288" y="234" fill="#000"/><rect width="6" height="6" x="0" y="240" fill="#000"/><rect width="6" height="6" x="6" y="240" fill="#000"/><rect width="6" height="6" x="12" y="240" fill="#000"/><rect width="6" height="6" x="36" y="240" fill="#000"/><rect width="6" height="6" x="42" y="240" fill="#000"/><rect width="6" height="6" x="54" y="240" fill="#000"/><rect width="6" height="6" x="60" y="240" fill="#000"/><rect width="6" height="6" x="66" y="240" fill="#000"/><rect width="6" height="6" x="72" y="240" fill="#000"/><rect width="6" height="6" x="102" y="240" fill="#000"/><rect width="6" height="6" x="108" y="240" fill="#000"/><rect width="6" height="6" x="114" y="240" fill="#000"/><rect width="6" height="6" x="120" y="240" fill="#000"/><rect width="6" height="6" x="126" y="240" fill="#000"/><rect width="6" height="6" x="132" y="240" fill="#000"/><rect width="6" height="6" x="138" y="240" fill="#000"/><rect width="6" height="6" x="144" y="240" fill="#000"/><rect width="6" height="6" x="150" y="240" fill="#000"/><rect width="6" height="6" x="156" y="240" fill="#000"/><rect width="6" height="6" x="174" y="240" fill="#000"/><rect width="6" height="6" x="180" y="240" fill="#000"/><rect width="6" height="6" x="186" y="240" fill="#000"/><rect width="6" height="6" x="192" y="240" fill="#000"/><rect width="6" height="6" x="204" y="240" fill="#000"/><rect width="6" height="6" x="222" y="240" fill="#000"/><rect width="6" height="6" x="240" y="240" fill="#000"/><rect width="6" height="6" x="246" y="240" fill="#000"/><rect width="6" height="6" x="252" y="240" fill="#000"/><rect width="6" height="6" x="258" y="240" fill="#000"/><rect width="6" height="6" x="264" y="240" fill="#000"/><rect width="6" height="6" x="276" y="240" fill="#000"/><rect width="6" height="6" x="48" y="246" fill="#000"/><rect width="6" height="6" x="54" y="246" fill="#000"/><rect width="6" height="6" x="66" y="246" fill="#000"/><rect width="6" height="6" x="84" y="246" fill="#000"/><rect width="6" height="6" x="108" y="246" fill="#000"/><rect width="6" height="6" x="114" y="246" fill="#000"/><rect width="6" height="6" x="126" y="246" fill="#000"/><rect width="6" height="6" x="132" y="246" fill="#000"/><rect width="6" height="6" x="156" y="246" fill="#000"/><rect width="6" height="6" x="168" y="246" fill="#000"/><rect width="6" height="6" x="198" y="246" fill="#000"/><rect width="6" height="6" x="210" y="246" fill="#000"/><rect width="6" height="6" x="222" y="246" fill="#000"/><rect width="6" height="6" x="234" y="246" fill="#000"/><rect width="6" height="6" x="240" y="246" fill="#000"/><rect width="6" height="6" x="264" y="246" fill="#000"/><rect width="6" height="6" x="276" y="246" fill="#000"/><rect width="6" height="6" x="282" y="246" fill="#000"/><rect width="6" height="6" x="288" y="246" fill="#000"/><rect width="6" height="6" x="0" y="252" fill="#000"/><rect width="6" height="6" x="6" y="252" fill="#000"/><rect width="6" height="6" x="12" y="252" fill="#000"/><rect width="6" height="6" x="18" y="252" fill="#000"/><rect width="6" height="6" x="24" y="252" fill="#000"/><rect width="6" height="6" x="30" y="252" fill="#000"/><rect width="6" height="6" x="36" y="252" fill="#000"/><rect width="6" height="6" x="48" y="252" fill="#000"/><rect width="6" height="6" x="54" y="252" fill="#000"/><rect width="6" height="6" x="60" y="252" fill="#000"/><rect width="6" height="6" x="66" y="252" fill="#000"/><rect width="6" height="6" x="72" y="252" fill="#000"/><rect width="6" height="6" x="78" y="252" fill="#000"/><rect width="6" height="6" x="84" y="252" fill="#000"/><rect width="6" height="6" x="90" y="252" fill="#000"/><rect width="6" height="6" x="102" y="252" fill="#000"/><rect width="6" height="6" x="108" y="252" fill="#000"/><rect width="6" height="6" x="120" y="252" fill="#000"/><rect width="6" height="6" x="126" y="252" fill="#000"/><rect width="6" height="6" x="132" y="252" fill="#000"/><rect width="6" height="6" x="144" y="252" fill="#000"/><rect width="6" height="6" x="156" y="252" fill="#000"/><rect width="6" height="6" x="168" y="252" fill="#000"/><rect width="6" height="6" x="180" y="252" fill="#000"/><rect width="6" height="6" x="198" y="252" fill="#000"/><rect width="6" height="6" x="222" y="252" fill="#000"/><rect width="6" height="6" x="228" y="252" fill="#000"/><rect width="6" height="6" x="240" y="252" fill="#000"/><rect width="6" height="6" x="252" y="252" fill="#000"/><rect width="6" height="6" x="264" y="252" fill="#000"/><rect width="6" height="6" x="270" y="252" fill="#000"/><rect width="6" height="6" x="288" y="252" fill="#000"/><rect width="6" height="6" x="0" y="258" fill="#000"/><rect width="6" height="6" x="36" y="258" fill="#000"/><rect width="6" height="6" x="54" y="258" fill="#000"/><rect width="6" height="6" x="60" y="258" fill="#000"/><rect width="6" height="6" x="66" y="258" fill="#000"/><rect width="6" height="6" x="72" y="258" fill="#000"/><rect width="6" height="6" x="90" y="258" fill="#000"/><rect width="6" height="6" x="96" y="258" fill="#000"/><rect width="6" height="6" x="102" y="258" fill="#000"/><rect width="6" height="6" x="114" y="258" fill="#000"/><rect width="6" height="6" x="120" y="258" fill="#000"/><rect width="6" height="6" x="132" y="258" fill="#000"/><rect width="6" height="6" x="156" y="258" fill="#000"/><rect width="6" height="6" x="162" y="258" fill="#000"/><rect width="6" height="6" x="168" y="258" fill="#000"/><rect width="6" height="6" x="174" y="258" fill="#000"/><rect width="6" height="6" x="186" y="258" fill="#000"/><rect width="6" height="6" x="192" y="258" fill="#000"/><rect width="6" height="6" x="210" y="258" fill="#000"/><rect width="6" height="6" x="216" y="258" fill="#000"/><rect width="6" height="6" x="228" y="258" fill="#000"/><rect width="6" height="6" x="234" y="258" fill="#000"/><rect width="6" height="6" x="240" y="258" fill="#000"/><rect width="6" height="6" x="264" y="258" fill="#000"/><rect width="6" height="6" x="270" y="258" fill="#000"/><rect width="6" height="6" x="0" y="264" fill="#000"/><rect width="6" height="6" x="12" y="264" fill="#000"/><rect width="6" height="6" x="18" y="264" fill="#000"/><rect width="6" height="6" x="24" y="264" fill="#000"/><rect width="6" height="6" x="36" y="264" fill="#000"/><rect width="6" height="6" x="72" y="264" fill="#000"/><rect width="6" height="6" x="84" y="264" fill="#000"/><rect width="6" height="6" x="96" y="264" fill="#000"/><rect width="6" height="6" x="102" y="264" fill="#000"/><rect width="6" height="6" x="108" y="264" fill="#000"/><rect width="6" height="6" x="126" y="264" fill="#000"/><rect width="6" height="6" x="132" y="264" fill="#000"/><rect width="6" height="6" x="138" y="264" fill="#000"/><rect width="6" height="6" x="144" y="264" fill="#000"/><rect width="6" height="6" x="150" y="264" fill="#000"/><rect width="6" height="6" x="156" y="264" fill="#000"/><rect width="6" height="6" x="174" y="264" fill="#000"/><rect width="6" height="6" x="180" y="264" fill="#000"/><rect width="6" height="6" x="198" y="264" fill="#000"/><rect width="6" height="6" x="204" y="264" fill="#000"/><rect width="6" height="6" x="210" y="264" fill="#000"/><rect width="6" height="6" x="234" y="264" fill="#000"/><rect width="6" height="6" x="240" y="264" fill="#000"/><rect width="6" height="6" x="246" y="264" fill="#000"/><rect width="6" height="6" x="252" y="264" fill="#000"/><rect width="6" height="6" x="258" y="264" fill="#000"/><rect width="6" height="6" x="264" y="264" fill="#000"/><rect width="6" height="6" x="282" y="264" fill="#000"/><rect width="6" height="6" x="288" y="264" fill="#000"/><rect width="6" height="6" x="0" y="270" fill="#000"/><rect width="6" height="6" x="12" y="270" fill="#000"/><rect width="6" height="6" x="18" y="270" fill="#000"/><rect width="6" height="6" x="24" y="270" fill="#000"/><rect width="6" height="6" x="36" y="270" fill="#000"/><rect width="6" height="6" x="48" y="270" fill="#000"/><rect width="6" height="6" x="78" y="270" fill="#000"/><rect width="6" height="6" x="84" y="270" fill="#000"/><rect width="6" height="6" x="90" y="270" fill="#000"/><rect width="6" height="6" x="96" y="270" fill="#000"/><rect width="6" height="6" x="102" y="270" fill="#000"/><rect width="6" height="6" x="108" y="270" fill="#000"/><rect width="6" height="6" x="126" y="270" fill="#000"/><rect width="6" height="6" x="132" y="270" fill="#000"/><rect width="6" height="6" x="150" y="270" fill="#000"/><rect width="6" height="6" x="156" y="270" fill="#000"/><rect width="6" height="6" x="162" y="270" fill="#000"/><rect width="6" height="6" x="168" y="270" fill="#000"/><rect width="6" height="6" x="174" y="270" fill="#000"/><rect width="6" height="6" x="180" y="270" fill="#000"/><rect width="6" height="6" x="186" y="270" fill="#000"/><rect width="6" height="6" x="192" y="270" fill="#000"/><rect width="6" height="6" x="198" y="270" fill="#000"/><rect width="6" height="6" x="222" y="270" fill="#000"/><rect width="6" height="6" x="240" y="270" fill="#000"/><rect width="6" height="6" x="246" y="270" fill="#000"/><rect width="6" height="6" x="264" y="270" fill="#000"/><rect width="6" height="6" x="288" y="270" fill="#000"/><rect width="6" height="6" x="0" y="276" fill="#000"/><rect width="6" height="6" x="12" y="276" fill="#000"/><rect width="6" height="6" x="18" y="276" fill="#000"/><rect width="6" height="6" x="24" y="276" fill="#000"/><rect width="6" height="6" x="36" y="276" fill="#000"/><rect width="6" height="6" x="48" y="276" fill="#000"/><rect width="6" height="6" x="54" y="276" fill="#000"/><rect width="6" height="6" x="60" y="276" fill="#000"/><rect width="6" height="6" x="78" y="276" fill="#000"/><rect width="6" height="6" x="84" y="276" fill="#000"/><rect width="6" height="6" x="90" y="276" fill="#000"/><rect width="6" height="6" x="96" y="276" fill="#000"/><rect width="6" height="6" x="132" y="276" fill="#000"/><rect width="6" height="6" x="138" y="276" fill="#000"/><rect width="6" height="6" x="150" y="276" fill="#000"/><rect width="6" height="6" x="156" y="276" fill="#000"/><rect width="6" height="6" x="168" y="276" fill="#000"/><rect width="6" height="6" x="180" y="276" fill="#000"/><rect width="6" height="6" x="198" y="276" fill="#000"/><rect width="6" height="6" x="204" y="276" fill="#000"/><rect width="6" height="6" x="210" y="276" fill="#000"/><rect width="6" height="6" x="222" y="276" fill="#000"/><rect width="6" height="6" x="246" y="276" fill="#000"/><rect width="6" height="6" x="252" y="276" fill="#000"/><rect width="6" height="6" x="258" y="276" fill="#000"/><rect width="6" height="6" x="264" y="276" fill="#000"/><rect width="6" height="6" x="270" y="276" fill="#000"/><rect width="6" height="6" x="276" y="276" fill="#000"/><rect width="6" height="6" x="0" y="282" fill="#000"/><rect width="6" height="6" x="36" y="282" fill="#000"/><rect width="6" height="6" x="60" y="282" fill="#000"/><rect width="6" height="6" x="96" y="282" fill="#000"/><rect width="6" height="6" x="126" y="282" fill="#000"/><rect width="6" height="6" x="132" y="282" fill="#000"/><rect width="6" height="6" x="144" y="282" fill="#000"/><rect width="6" height="6" x="150" y="282" fill="#000"/><rect width="6" height="6" x="162" y="282" fill="#000"/><rect width="6" height="6" x="168" y="282" fill="#000"/><rect width="6" height="6" x="174" y="282" fill="#000"/><rect width="6" height="6" x="180" y="282" fill="#000"/><rect width="6" height="6" x="192" y="282" fill="#000"/><rect width="6" height="6" x="198" y="282" fill="#000"/><rect width="6" height="6" x="204" y="282" fill="#000"/><rect width="6" height="6" x="210" y="282" fill="#000"/><rect width="6" height="6" x="216" y="282" fill="#000"/><rect width="6" height="6" x="234" y="282" fill="#000"/><rect width="6" height="6" x="258" y="282" fill="#000"/><rect width="6" height="6" x="276" y="282" fill="#000"/><rect width="6" height="6" x="0" y="288" fill="#000"/><rect width="6" height="6" x="6" y="288" fill="#000"/><rect width="6" height="6" x="12" y="288" fill="#000"/><rect width="6" height="6" x="18" y="288" fill="#000"/><rect width="6" height="6" x="24" y="288" fill="#000"/><rect width="6" height="6" x="30" y="288" fill="#000"/><rect width="6" height="6" x="36" y="288" fill="#000"/><rect width="6" height="6" x="54" y="288" fill="#000"/><rect width="6" height="6" x="60" y="288" fill="#000"/><rect width="6" height="6" x="66" y="288" fill="#000"/><rect width="6" height="6" x="84" y="288" fill="#000"/><rect width="6" height="6" x="96" y="288" fill="#000"/><rect width="6" height="6" x="102" y="288" fill="#000"/><rect width="6" height="6" x="108" y="288" fill="#000"/><rect width="6" height="6" x="126" y="288" fill="#000"/><rect width="6" height="6" x="132" y="288" fill="#000"/><rect width="6" height="6" x="144" y="288" fill="#000"/><rect width="6" height="6" x="162" y="288" fill="#000"/><rect width="6" height="6" x="168" y="288" fill="#000"/><rect width="6" height="6" x="216" y="288" fill="#000"/><rect width="6" height="6" x="222" y="288" fill="#000"/><rect width="6" height="6" x="228" y="288" fill="#000"/><rect width="6" height="6" x="234" y="288" fill="#000"/><rect width="6" height="6" x="246" y="288" fill="#000"/><rect width="6" height="6" x="264" y="288" fill="#000"/><rect width="6" height="6" x="276" y="288" fill="#000"/><rect width="6" height="6" x="282" y="288" fill="#000"/><rect width="6" height="6" x="288" y="288" fill="#000"/></svg>
|
metadata
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: upi_link
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- balram
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: exe
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2026-07-08 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: rqrcode
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '2.2'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '2.2'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: chunky_png
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '1.4'
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '1.4'
|
|
41
|
+
description: Lightweight gem to build UPI deep links, validate VPAs, and generate
|
|
42
|
+
QR codes — no payment gateway, no merchant account, just link generation for direct
|
|
43
|
+
P2P-style UPI collection.
|
|
44
|
+
email:
|
|
45
|
+
- developer.balram@gmail.com
|
|
46
|
+
executables: []
|
|
47
|
+
extensions: []
|
|
48
|
+
extra_rdoc_files: []
|
|
49
|
+
files:
|
|
50
|
+
- CHANGELOG.md
|
|
51
|
+
- LICENSE.txt
|
|
52
|
+
- README.md
|
|
53
|
+
- Rakefile
|
|
54
|
+
- lib/upi_link.rb
|
|
55
|
+
- lib/upi_link/intent_link.rb
|
|
56
|
+
- lib/upi_link/qr_generator.rb
|
|
57
|
+
- lib/upi_link/uri_builder.rb
|
|
58
|
+
- lib/upi_link/version.rb
|
|
59
|
+
- lib/upi_link/vpa_validator.rb
|
|
60
|
+
- sig/upi_link.rbs
|
|
61
|
+
- test_qr.svg
|
|
62
|
+
homepage: https://github.com/balram2107/upi_link
|
|
63
|
+
licenses:
|
|
64
|
+
- MIT
|
|
65
|
+
metadata:
|
|
66
|
+
allowed_push_host: https://rubygems.org
|
|
67
|
+
source_code_uri: https://github.com/balram2107/upi_link
|
|
68
|
+
changelog_uri: https://github.com/balram2107/upi_link/blob/main/CHANGELOG.md
|
|
69
|
+
documentation_uri: https://github.com/balram2107/upi_link/blob/main/README.md
|
|
70
|
+
post_install_message:
|
|
71
|
+
rdoc_options: []
|
|
72
|
+
require_paths:
|
|
73
|
+
- lib
|
|
74
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
75
|
+
requirements:
|
|
76
|
+
- - ">="
|
|
77
|
+
- !ruby/object:Gem::Version
|
|
78
|
+
version: 3.2.0
|
|
79
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
80
|
+
requirements:
|
|
81
|
+
- - ">="
|
|
82
|
+
- !ruby/object:Gem::Version
|
|
83
|
+
version: '0'
|
|
84
|
+
requirements: []
|
|
85
|
+
rubygems_version: 3.5.11
|
|
86
|
+
signing_key:
|
|
87
|
+
specification_version: 4
|
|
88
|
+
summary: Generate UPI payment links and QR codes for Ruby/Rails apps
|
|
89
|
+
test_files: []
|