-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathindex.html
422 lines (380 loc) · 81.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
<!doctype html>
<!--
Material Design Lite
Copyright 2015 Google Inc. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License
-->
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="A front-end template that helps you build fast, modern mobile web apps.">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<title>Material Design Lite</title>
<!-- Add to homescreen for Chrome on Android -->
<meta name="mobile-web-app-capable" content="yes">
<link rel="icon" sizes="192x192" href="images/android-desktop.png">
<!-- Add to homescreen for Safari on iOS -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="Material Design Lite">
<link rel="apple-touch-icon-precomposed" href="images/ios-desktop.png">
<!-- Tile icon for Win8 (144x144 + tile color) -->
<meta name="msapplication-TileImage" content="images/touch/ms-touch-icon-144x144-precomposed.png">
<meta name="msapplication-TileColor" content="#3372DF">
<link rel="shortcut icon" href="images/favicon.png">
<link rel="stylesheet" href="annotorious-0.6.4/example/highlight.js/zenburn.css">
<link rel="stylesheet" href="annotorious-0.6.4/css/theme-dark/annotorious-dark.css" />
<link rel="stylesheet" href="remodal/style/remodal.css">
<link rel="stylesheet" href="remodal/style/remodal-default-theme.css" />
<!-- SEO: If your mobile URL is different from the desktop URL, add a canonical link to the desktop page https://developers.google.com/webmasters/smartphone-sites/feature-phones -->
<!--
<link rel="canonical" href="http://www.example.com/">
-->
<link rel="stylesheet" href="style/roboto_etc.css">
<link rel="stylesheet" href="style/material_icons.css">
<link rel="stylesheet" href="style/material.cyan-light_blue.min.css">
<link rel="stylesheet" href="style/styles.css">
<link rel="stylesheet" href="style/modal.css">
<style>
#view-source {
/*position: relative;*/
display: block;
right: 0;
bottom: 0;
margin-right: 40px;
margin-bottom: 40px;
z-index: 900;
}
</style>
<script>
var firstImage = true;
</script>
<!-- jQuery -->
<script src="js/shared/jquery.min.js"></script>
<script src="js/shared/material.min.js"></script>
<script>
var base_query_url = "http://127.0.0.1:8081";
var local_list = [];
// please note,
// that IE11 now returns undefined again for window.chrome
// and new Opera 30 outputs true for window.chrome
// and new IE Edge outputs to true now for window.chrome
// and if not iOS Chrome check
// so use the below updated condition
var isChromium = window.chrome,
winNav = window.navigator,
vendorName = winNav.vendor,
isOpera = winNav.userAgent.indexOf("OPR") > -1,
isIEedge = winNav.userAgent.indexOf("Edge") > -1,
isIOSChrome = winNav.userAgent.match("CriOS");
if(isIOSChrome){
// is Google Chrome on IOS
} else if(isChromium !== null && isChromium !== undefined && vendorName === "Google Inc." && isOpera == false && isIEedge == false) {
// is Google Chrome
} else {
// not Google Chrome
}
</script>
<!-- Annotorious -->
<script src="annotorious-0.6.4/example/highlight.js/highlight.pack.js"></script>
<script src="annotorious-0.6.4/annotorious.min.js"></script>
<script src="js/shared/autoSave.js"></script>
</head>
<body ng-app="LabeldApp">
<div class="demo-layout mdl-layout mdl-js-layout mdl-layout--fixed-drawer mdl-layout--fixed-header">
<header class="demo-header mdl-layout__header mdl-color--grey-100 mdl-color-text--grey-600" ng-controller="MenuController">
<div class="mdl-layout__header-row">
<div>
<img src="images/person-flat.png" class="demo-avatar">
<span>[email protected]</span>
</div>
<span id="title" class="mdl-layout-title"></span>
<div class="mdl-layout-spacer"></div>
<div class="mdl-textfield mdl-js-textfield mdl-textfield--expandable">
<label class="mdl-button mdl-js-button mdl-button--icon" for="search">
<i class="material-icons">search</i>
</label>
<div class="mdl-textfield__expandable-holder">
<input class="mdl-textfield__input" type="text" id="search">
<label class="mdl-textfield__label" for="search">Enter your query...</label>
</div>
</div>
<button class="mdl-button mdl-js-button mdl-js-ripple-effect mdl-button--icon" ng-click="downloadJson()" id="downloadbtn">
<i class="material-icons">file_download</i>
</button>
<button class="mdl-button mdl-js-button mdl-js-ripple-effect mdl-button--icon" id="hdrbtn">
<i class="material-icons">more_vert</i>
</button>
<ul class="mdl-menu mdl-js-menu mdl-js-ripple-effect mdl-menu--bottom-right" for="hdrbtn">
<li data-remodal-target="help_modal" class="mdl-menu__item">Help</li>
<li data-remodal-target="about_modal" class="mdl-menu__item">About</li>
<li data-remodal-target="contact_modal" class="mdl-menu__item">Contact</li>
<!--<li class="mdl-menu__item">Log Out</li>-->
</ul>
<button id="accbtn" class="mdl-button mdl-js-button mdl-js-ripple-effect mdl-button--icon">
<i class="material-icons" role="presentation">settings</i>
<span class="visuallyhidden">Accounts</span>
</button>
<ul class="mdl-menu mdl-menu--bottom-right mdl-js-menu mdl-js-ripple-effect" for="accbtn">
<li data-remodal-target="annotation_settings_modal" id="annotationSettingsBtn" class="mdl-menu__item">Annotation Settings</li>
<!--<li data-remodal-target="classify_settings_modal" class="mdl-menu__item">Classify Settings</li>-->
<!--<li data-remodal-target="discover_settings_modal" class="mdl-menu__item">Discover Settings</li>-->
<!--<li data-remodal-target="contribute_settings_modal" class="mdl-menu__item">Contribute Settings</li>-->
<!--<li class="mdl-menu__item"><i class="material-icons">add</i>Add another account...</li>-->
</ul>
</div>
</header>
<div class="demo-drawer mdl-layout__drawer mdl-color--blue-grey-900 mdl-color-text--blue-grey-50">
<a href="#" ><img src="images/logo.png" class="logo"></a>
<nav class="demo-navigation mdl-navigation mdl-color--blue-grey-800">
<a class="mdl-navigation__link" href="#annotate"><i class="mdl-color-text--blue-grey-400 material-icons" role="presentation">photo_size_select_large</i>Annotate</a>
<!--<a class="mdl-navigation__link" href="#classify"><i class="mdl-color-text--blue-grey-400 material-icons" role="presentation">perm_media</i>Classify</a>-->
<!--<a class="mdl-navigation__link" href="#discover"><i class="mdl-color-text--blue-grey-400 material-icons" role="presentation">public</i>Discover</a>-->
<!--<a class="mdl-navigation__link" href="#contribute"><i class="mdl-color-text--blue-grey-400 material-icons" role="presentation">rowing</i>Contribute</a>-->
<!--<a class="mdl-navigation__link" href=""><i class="mdl-color-text--blue-grey-400 material-icons" role="presentation">inbox</i>Inbox</a>-->
<!--<a class="mdl-navigation__link" href=""><i class="mdl-color-text--blue-grey-400 material-icons" role="presentation">delete</i>Trash</a>-->
<!--<a class="mdl-navigation__link" href=""><i class="mdl-color-text--blue-grey-400 material-icons" role="presentation">report</i>Spam</a>-->
<!--<a class="mdl-navigation__link" href=""><i class="mdl-color-text--blue-grey-400 material-icons" role="presentation">forum</i>Forums</a>-->
<!--<a class="mdl-navigation__link" href=""><i class="mdl-color-text--blue-grey-400 material-icons" role="presentation">flag</i>Updates</a>-->
<!--<a class="mdl-navigation__link" href=""><i class="mdl-color-text--blue-grey-400 material-icons" role="presentation">local_offer</i>Promos</a>-->
<!--<a class="mdl-navigation__link" href=""><i class="mdl-color-text--blue-grey-400 material-icons" role="presentation">shopping_cart</i>Purchases</a>-->
<!--<a class="mdl-navigation__link" href=""><i class="mdl-color-text--blue-grey-400 material-icons" role="presentation">people</i>Social</a>-->
<div class="mdl-layout-spacer"></div>
<a class="mdl-navigation__link" href=""><i class="mdl-color-text--blue-grey-400 material-icons" role="presentation">help_outline</i><span class="visuallyhidden">Help</span></a>
</nav>
</div>
<div class="remodal" data-remodal-id="annotation_settings_modal" data-remodal-options="hashTracking: false">
<button data-remodal-action="close" class="remodal-close"></button>
<h3 class="mdl-dialog__title">Annotation Settings</h3>
<div class="mdl-dialog__content">
<label id="useFlickrClick" class="mdl-checkbox mdl-js-checkbox mdl-js-ripple-effect" for="useFlickr">
<input type="checkbox" id="useFlickr" class="mdl-checkbox__input" checked>
<span class="mdl-checkbox__label">Pull Images from Flickr</span>
</label>
<div id="localInput">
<p>
LabelD will serve you images found in <code>node/rest/data</code>
</p>
<form method="post" enctype="multipart/form-data" action="/#upload">
<input type="file" name="file" multiple>
<input type="submit" value="Submit">
</form>
<!--<input type="file" webkitdirectory directory multiple/>-->
</div>
</div>
<br>
<button data-remodal-action="cancel" class="remodal-cancel">Cancel</button>
<button data-remodal-action="confirm" class="remodal-confirm">OK</button>
</div>
<div class="remodal" data-remodal-id="about_modal" data-remodal-options="hashTracking: false">
<button data-remodal-action="close" class="remodal-close"></button>
<h3 class="mdl-dialog__title">About</h3>
<div class="mdl-dialog__content about-modal">
<p>
Thanks for using LabelD!
</p>
<div class="qr-code-wrapper" data-account-id="52acd667b7af1746fd000132">
<div class="qrcode" data-size="3" data-level="l" data-css-size="170">
<table class="qr-code"><tbody><tr style="height:5px"><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td></tr><tr style="height:5px"><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td></tr><tr style="height:5px"><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td></tr><tr style="height:5px"><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td></tr><tr style="height:5px"><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td></tr><tr style="height:5px"><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td></tr><tr style="height:5px"><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td></tr><tr style="height:5px"><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td></tr><tr style="height:5px"><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td></tr><tr style="height:5px"><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td></tr><tr style="height:5px"><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td></tr><tr style="height:5px"><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td></tr><tr style="height:5px"><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td></tr><tr style="height:5px"><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td></tr><tr style="height:5px"><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td></tr><tr style="height:5px"><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td></tr><tr style="height:5px"><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td></tr><tr style="height:5px"><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td></tr><tr style="height:5px"><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td></tr><tr style="height:5px"><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td></tr><tr style="height:5px"><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td></tr><tr style="height:5px"><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td></tr><tr style="height:5px"><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td></tr><tr style="height:5px"><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td></tr><tr style="height:5px"><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td></tr><tr style="height:5px"><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td></tr><tr style="height:5px"><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td></tr><tr style="height:5px"><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td></tr><tr style="height:5px"><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td><td style="border-top-width:0;width:5px;height:5px" class="black"></td><td style="border-top-width:0;width:5px;height:5px" class="white"></td></tr></tbody></table><table></table></div>
<p><code class="address-text" data-uri="bitcoin:16ERoEmNKx6i1Na6wgVr2tWbGyuxT6k1wj">16ERoEmNKx6i1Na6wgVr2tWbGyuxT6k1wj</code></p>
</div>
</div>
<br>
<!--<button data-remodal-action="cancel" class="remodal-cancel">Cancel</button>-->
<button data-remodal-action="confirm" class="remodal-confirm">OK</button>
</div>
<div class="remodal" data-remodal-id="help_modal" data-remodal-options="hashTracking: false">
<button data-remodal-action="close" class="remodal-close"></button>
<h3 class="mdl-dialog__title">Help</h3>
<div class="mdl-dialog__content about-modal">
<p>
Thanks for using LabelD!
<ul>
<li><strong>Settings</strong> allows you to toggle between Imgur and local source for your images</li>
<li>The <strong>search button/bar</strong> allows you to toggle the keyword for Imgur sourced images</li>
<li>The <strong>download button</strong> opens the annotation json in a new browser window</li>
</ul>
</p>
</div>
<br>
<!--<button data-remodal-action="cancel" class="remodal-cancel">Cancel</button>-->
<button data-remodal-action="confirm" class="remodal-confirm">OK</button>
</div>
<!--<div class="remodal" data-remodal-id="classify_settings_modal" data-remodal-options="hashTracking: false">-->
<!--<button data-remodal-action="close" class="remodal-close"></button>-->
<!--<h3 class="mdl-dialog__title">Annotation Settings</h3>-->
<!--<div class="mdl-dialog__content">-->
<!--<label id="useFlickrClick" class="mdl-checkbox mdl-js-checkbox mdl-js-ripple-effect" for="useFlickr">-->
<!--<input type="checkbox" id="useFlickr" class="mdl-checkbox__input" checked>-->
<!--<span class="mdl-checkbox__label">Pull Images from Flickr</span>-->
<!--</label>-->
<!--<div id="localInput">-->
<!--<p>-->
<!--LabelD will serve you images found in <code>node/rest/data</code>-->
<!--</p>-->
<!--<!–<input type="file" webkitdirectory directory multiple/>–>-->
<!--</div>-->
<!--</div>-->
<!--<br>-->
<!--<button data-remodal-action="cancel" class="remodal-cancel">Cancel</button>-->
<!--<button data-remodal-action="confirm" class="remodal-confirm">OK</button>-->
<!--</div>-->
<!--<div class="remodal" data-remodal-id="discover_settings_modal" data-remodal-options="hashTracking: false">-->
<!--<button data-remodal-action="close" class="remodal-close"></button>-->
<!--<h3 class="mdl-dialog__title">Annotation Settings</h3>-->
<!--<div class="mdl-dialog__content">-->
<!--<label id="useFlickrClick" class="mdl-checkbox mdl-js-checkbox mdl-js-ripple-effect" for="useFlickr">-->
<!--<input type="checkbox" id="useFlickr" class="mdl-checkbox__input" checked>-->
<!--<span class="mdl-checkbox__label">Pull Images from Flickr</span>-->
<!--</label>-->
<!--<div id="localInput">-->
<!--<p>-->
<!--LabelD will serve you images found in <code>node/rest/data</code>-->
<!--</p>-->
<!--<!–<input type="file" webkitdirectory directory multiple/>–>-->
<!--</div>-->
<!--</div>-->
<!--<br>-->
<!--<button data-remodal-action="cancel" class="remodal-cancel">Cancel</button>-->
<!--<button data-remodal-action="confirm" class="remodal-confirm">OK</button>-->
<!--</div>-->
<!--<div class="remodal" data-remodal-id="contribute_settings_modal" data-remodal-options="hashTracking: false">-->
<!--<button data-remodal-action="close" class="remodal-close"></button>-->
<!--<h3 class="mdl-dialog__title">Annotation Settings</h3>-->
<!--<div class="mdl-dialog__content">-->
<!--<label id="useFlickrClick" class="mdl-checkbox mdl-js-checkbox mdl-js-ripple-effect" for="useFlickr">-->
<!--<input type="checkbox" id="useFlickr" class="mdl-checkbox__input" checked>-->
<!--<span class="mdl-checkbox__label">Pull Images from Flickr</span>-->
<!--</label>-->
<!--<div id="localInput">-->
<!--<p>-->
<!--LabelD will serve you images found in <code>node/rest/data</code>-->
<!--</p>-->
<!--<!–<input type="file" webkitdirectory directory multiple/>–>-->
<!--</div>-->
<!--</div>-->
<!--<br>-->
<!--<button data-remodal-action="cancel" class="remodal-cancel">Cancel</button>-->
<!--<button data-remodal-action="confirm" class="remodal-confirm">OK</button>-->
<!--</div>-->
<div class="remodal" data-remodal-id="modal">
<button data-remodal-action="close" class="remodal-close"></button>
<h3 class="mdl-dialog__title">Annotation Settings</h3>
<div class="mdl-dialog__content">
<label id="useFlickrClick" class="mdl-checkbox mdl-js-checkbox mdl-js-ripple-effect" for="useFlickr">
<input type="checkbox" id="useFlickr" class="mdl-checkbox__input" checked>
<span class="mdl-checkbox__label">Pull Images from Flickr</span>
</label>
<div id="localInput">
<p>
LabelD will serve you images found in <code>node/rest/data</code>
</p>
<!--<input type="file" webkitdirectory directory multiple/>-->
</div>
</div>
<br>
<button data-remodal-action="cancel" class="remodal-cancel">Cancel</button>
<button data-remodal-action="confirm" class="remodal-confirm">OK</button>
</div>
<!--<dialog id="dialog" class="mdl-dialog">-->
<!--<h3 class="mdl-dialog__title">Annotation Settings</h3>-->
<!--<div class="mdl-dialog__content">-->
<!--<label id="useFlickrClick" class="mdl-checkbox mdl-js-checkbox mdl-js-ripple-effect" for="useFlickr">-->
<!--<input type="checkbox" id="useFlickr" class="mdl-checkbox__input" checked>-->
<!--<span class="mdl-checkbox__label">Pull Images from Flickr</span>-->
<!--</label>-->
<!--<div id="localInput">-->
<!--<p>-->
<!--LabelD will serve you images found in <code>node/rest/data</code>-->
<!--</p>-->
<!--<!–<input type="file" webkitdirectory directory multiple/>–>-->
<!--</div>-->
<!--</div>-->
<!--<div class="mdl-dialog__actions">-->
<!--<button type="button" class="mdl-button">Close</button>-->
<!--<button type="button" class="mdl-button" disabled>Disabled action</button>-->
<!--</div>-->
<!--</dialog>-->
<main class="mdl-layout__content mdl-color--grey-100">
<!--<button class="mdl-button mdl-button--raised mdl-js-button dialog-button">Show Dialog</button>-->
<div ng-view></div>
</main>
</div>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" style="position: fixed; left: -1000px; height: -1000px;">
<defs>
<mask id="piemask" maskContentUnits="objectBoundingBox">
<circle cx=0.5 cy=0.5 r=0.49 fill="white" />
<circle cx=0.5 cy=0.5 r=0.40 fill="black" />
</mask>
<g id="piechart">
<circle cx=0.5 cy=0.5 r=0.5 />
<path d="M 0.5 0.5 0.5 0 A 0.5 0.5 0 0 1 0.95 0.28 z" stroke="none" fill="rgba(255, 255, 255, 0.75)" />
</g>
</defs>
</svg>
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 500 250" style="position: fixed; left: -1000px; height: -1000px;">
<defs>
<g id="chart">
<g id="Gridlines">
<line fill="#888888" stroke="#888888" stroke-miterlimit="10" x1="0" y1="27.3" x2="468.3" y2="27.3" />
<line fill="#888888" stroke="#888888" stroke-miterlimit="10" x1="0" y1="66.7" x2="468.3" y2="66.7" />
<line fill="#888888" stroke="#888888" stroke-miterlimit="10" x1="0" y1="105.3" x2="468.3" y2="105.3" />
<line fill="#888888" stroke="#888888" stroke-miterlimit="10" x1="0" y1="144.7" x2="468.3" y2="144.7" />
<line fill="#888888" stroke="#888888" stroke-miterlimit="10" x1="0" y1="184.3" x2="468.3" y2="184.3" />
</g>
<g id="Numbers">
<text transform="matrix(1 0 0 1 485 29.3333)" fill="#888888" font-family="'Roboto'" font-size="9">500</text>
<text transform="matrix(1 0 0 1 485 69)" fill="#888888" font-family="'Roboto'" font-size="9">400</text>
<text transform="matrix(1 0 0 1 485 109.3333)" fill="#888888" font-family="'Roboto'" font-size="9">300</text>
<text transform="matrix(1 0 0 1 485 149)" fill="#888888" font-family="'Roboto'" font-size="9">200</text>
<text transform="matrix(1 0 0 1 485 188.3333)" fill="#888888" font-family="'Roboto'" font-size="9">100</text>
<text transform="matrix(1 0 0 1 0 249.0003)" fill="#888888" font-family="'Roboto'" font-size="9">1</text>
<text transform="matrix(1 0 0 1 78 249.0003)" fill="#888888" font-family="'Roboto'" font-size="9">2</text>
<text transform="matrix(1 0 0 1 154.6667 249.0003)" fill="#888888" font-family="'Roboto'" font-size="9">3</text>
<text transform="matrix(1 0 0 1 232.1667 249.0003)" fill="#888888" font-family="'Roboto'" font-size="9">4</text>
<text transform="matrix(1 0 0 1 309 249.0003)" fill="#888888" font-family="'Roboto'" font-size="9">5</text>
<text transform="matrix(1 0 0 1 386.6667 249.0003)" fill="#888888" font-family="'Roboto'" font-size="9">6</text>
<text transform="matrix(1 0 0 1 464.3333 249.0003)" fill="#888888" font-family="'Roboto'" font-size="9">7</text>
</g>
<g id="Layer_5">
<polygon opacity="0.36" stroke-miterlimit="10" points="0,223.3 48,138.5 154.7,169 211,88.5
294.5,80.5 380,165.2 437,75.5 469.5,223.3 "/>
</g>
<g id="Layer_4">
<polygon stroke-miterlimit="10" points="469.3,222.7 1,222.7 48.7,166.7 155.7,188.3 212,132.7
296.7,128 380.7,184.3 436.7,125 "/>
</g>
</g>
</defs>
</svg>
<!--<a id="view-source" class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-button--colored mdl-color-text--white">View Source</a>-->
<script src="remodal/js/remodal.min.js"></script>
<script src="js/shared/dialog-polyfill.min.js"></script>
<!-- Modal -->
<!--<script src="js/shared/modal.js"></script>-->
<!-- Angular.js -->
<script src="js/shared/angular.min.js"></script>
<script src="js/shared/angular-route.js"></script>
<!-- App -->
<script src="js/app.js"></script>
<!-- Controllers -->
<script src="js/controllers/AnnotationController.js"></script>
<script src="js/controllers/ClassifyController.js"></script>
<script src="js/controllers/ContributeController.js"></script>
<script src="js/controllers/DiscoverController.js"></script>
<script src="js/controllers/MenuController.js"></script>
<!-- Routes -->
<script src="js/routes/pageRoutes.js"></script>
<!-- Util -->
<script src="js/ui.js"></script>
</body>
</html>