-
Notifications
You must be signed in to change notification settings - Fork 4
/
local_storage.html
executable file
·385 lines (344 loc) · 27.8 KB
/
local_storage.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
<!doctype html>
<!--
The MIT License (MIT)
Copyright (c) 2015 Signiant Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
******************************
* INSTRUCTIONS
******************************
This sample webpage provides an example of how you can use the Signiant Web Transfer API to transfer to and from local storage.
Need help? Visit https://support.signiant.com/
-->
<html><head>
<script type="text/javascript">
/* SETUP
** Get your API key from https://developer.mediashuttle.com and enter it on line 41.
** CLOUD SUPPORT
** Signiant Flight supports Amazon S3 and Azure as well.
** Check out amazon.html for an example using Amazon S3.
** Check out azure.html for an example using Microsoft Azure.
*/
var apikey = ""; //See above on how to get an API key.
var defaultServer = 'api-transfers.developer.mediashuttle.com';
var userName = 'transferapi';
var password = 'transferapi';
var trustCertificate = "-----BEGIN CERTIFICATE-----\nMIIE6zCCA9OgAwIBAgIBADANBgkqhkiG9w0BAQUFADCBkjELMAkGA1UEBhMCQ0Ex\nEDAOBgNVBAgTB09udGFyaW8xDzANBgNVBAcTBk90dGF3YTEhMB8GA1UEChMYU2ln\nbmlhbnQgTVMgVHJhbnNmZXIgQVBJMQ8wDQYDVQQLEwZEZXZPcHMxLDAqBgNVBAMT\nI1NpZ25pYW50IE1TIFRyYW5zZmVyIEFQSSBUcnVzdGVkIENBMB4XDTEzMDYxMjA0\nMDAwMVoXDTMzMDYxMjA0MDAwMVowgZIxCzAJBgNVBAYTAkNBMRAwDgYDVQQIEwdP\nbnRhcmlvMQ8wDQYDVQQHEwZPdHRhd2ExITAfBgNVBAoTGFNpZ25pYW50IE1TIFRy\nYW5zZmVyIEFQSTEPMA0GA1UECxMGRGV2T3BzMSwwKgYDVQQDEyNTaWduaWFudCBN\nUyBUcmFuc2ZlciBBUEkgVHJ1c3RlZCBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEP\nADCCAQoCggEBAM/iBZG81g6OgpB1u+Xiwcocx9HJeM5DSkL/L3ZVMl1pKulh9JnB\nzQryK2mvC24FwScdfqEv788cwgNzXquY2EUqz0y4ult24GziI8oyGb/OZGlP7Jax\n+2c9Rd1LV8A3z9U4IwXMHJ35pbjMnH6QjaswFl4XjSIP7XK+SBANXxq/3aE9bulL\nlx50GTjek2o7l1TkZ+gPVCDFyaGpc1ezgZ95zXTizk6jJw+JZYzcBw8xtFHx4rna\ntB3VLbTO8rVleY0wE7YSOtabb1e3Z+W3RzJ8hqueoih0wUzN+cbUH/H3dLJ/dBcQ\n59gdam3Db/pmbuiqOTWBBumZ0TVd8i1jT2MCAwEAAaOCAUgwggFEMA8GA1UdEwEB\n/wQFMAMBAf8wEQYJYIZIAYb4QgEBBAQDAgIEMAsGA1UdDwQEAwIBBjAwBglghkgB\nhvhCAQ0EIxYhVHJ1c3RlZCBERFMgQ2VydGlmaWNhdGUgQXV0aG9yaXR5MB0GA1Ud\nDgQWBBTaOaPuXmtLDTJVv++VYBiQr9gHCTCBvwYDVR0jBIG3MIG0gBTaOaPuXmtL\nDTJVv++VYBiQr9gHCaGBmKSBlTCBkjELMAkGA1UEBhMCQ0ExEDAOBgNVBAgTB09u\ndGFyaW8xDzANBgNVBAcTBk90dGF3YTEhMB8GA1UEChMYU2lnbmlhbnQgTVMgVHJh\nbnNmZXIgQVBJMQ8wDQYDVQQLEwZEZXZPcHMxLDAqBgNVBAMTI1NpZ25pYW50IE1T\nIFRyYW5zZmVyIEFQSSBUcnVzdGVkIENBggEAMA0GCSqGSIb3DQEBBQUAA4IBAQCb\n1ZLHXZM0vRUDOJpPgWv+3WDPYDcDHwfTImcsutbAobL61TRD+MBDmv89A8W8wYWk\n5MiDhBvAUVUhJm1rgLxxjOjqiX4WpikbhmMc5hjNQN0h1Ybt7XideN+DCiR/tnAv\nhMyW0efovrHwYN15XxoDN/GgMYb7kNy9Jc4mi5jt05wSaDKv1iht7VFE6K2SVuvi\nwwmz+4BaAlbp5yCDULwqtCpkaS6w05538Bfhruw9iswZcZyAK5E9iTFT0h+jpe23\nQhYpTkcLu9vhCM/7jEV6SGxRMFnV5JVPs/sGDVcdW9D9j92h+p0ti+HXiIR0TwDb\ngPIRFH2JSaYBwoIFQMPl\n-----END CERTIFICATE-----";
/* When you generate an API key from https://manage.signiant.com you generate a "secret" as well. You need to use that secret to generate a signature on your server. */
var globalSignature = null; //JSON Web Token (JWT) calculated from server (see signature_generators folder for examples). Please note that secrets are only good for 5 minutes. You will need to refres the generation every 5 minutes.
/* FILE DESTINATION
** Change the folder path that the file will go into.
*/
var destinationFolderPath = ''; //(optional) String: Path you want the file to go into (ie. folder1/folder2/)
</script>
<script src='https://updates.signiant.com/javascript-api/2.5.2/transferapi.min.js' type='text/javascript'></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" type="text/javascript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.9.0/moment.min.js" type="text/javascript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/foggy/1.1.1/jquery.foggy.min.js" type="text/javascript"></script>
<script src="http://cdn.imnjb.me/libs/humanize/0.0.9/humanize.min.js" type="text/javascript"></script>
<title>Signiant Web Transfer API Demo</title>
<script>
//the global transfer object that is used for uploading
var transferObject = null;
/**
* Callback for failure call of Signiant.Mst.initialize()
*
* @return null
*/
var failureCallback = function () {
/* Launch the Signiant installer widget into the 'mainContent' div. */
var installWidget = new Signiant.Mst.SigAppInstallWidget('mainContent', {
dismissInstallAppCallback: checkForSigniant.bind(self, 'false'), //called when the user clicks "I have the app" in the install widget
installAppCompleteCallback: initializeUploadObject //called when the app install is verified
});
installWidget.showInstallerWindow();
}
/**
* Check for the plugin. This is the first method to be called on document load (see last function below).
* On success, call initializeUploadObject. If the plugin doesn't load, call pluginNotLoaded
*
* @return null
*/
function checkForSigniant(failQuick) {
console.log("Check for Signiant App");
Signiant.Mst.configure({
networkConnectivityErrorCallback: networkConnectivityErrorCallback,
appCommunicationErrorCallback: appCommunicationErrorCallback,
networkConnectivityRestoredCallback: networkConnectivityRestoredCallback
});
/*
You can call detectPlugin or the Signiant.Mst.initialize method below.
detectPlugin provides default functionality that is easier to implement.
Signiant.Mst.initialize allows you to override what happens if the app is not loaded (failureCallback)
*/
detectPlugin({success:initializeUploadObject, error:appNotLoaded});
/*
Signiant.Mst.initialize(initializeUploadObject, failureCallback, {
timeout: 10000, // how long initialize will take to timeout, default: 1 second
withAppTimeout: 20000, // how long initialize will take to timeout if we have detected cookie that signals the app is intalled, default: 5 seconds
failPreemptivelyIfAppNotInstalled: failQuick // call error right away if cookie not present, default: true
});
*/
}
/**
* The Signiant App couldn't be loaded - display an error message
*
* @return null
*/
function appNotLoaded(){
alert("Signiant App Failed to load. This demo will not work.");
}
/**
* Setup the upload object - the global var transferObject
*
* @return null
*/
function initializeUploadObject(){
//create a new upload Object
transferObject = new Signiant.Mst.Upload();
//set the default server
transferObject.setServer(defaultServer);
transferObject.setTrustedCA(trustCertificate);
transferObject.setCredentials(userName, password);
//the following methods are self explanatory
transferObject.subscribeForTransferErrors(transferErrors);
transferObject.subscribeForBasicEvents(transferEvents);
transferObject.subscribeForTransferProgress(transferProgressCallback);
//setup the storage config options to upload to the right S3 bucket
//send the server the API key
transferObject.setApiKey(apikey); //required
}
// This will be called when the Transfer API detects network loss (will not throw if only changing networks)
// The Signiant App should recover and continue transfer if network timeout is < 1 minute
function networkConnectivityErrorCallback () {
console.log("Network Connectivity Loss Detected");
alert("Network Loss Detected, Waiting for Network To Return");
}
// This will be called when the Transfer API detects network connectivity is restored
// The Signiant App should recover and continue transfer
function networkConnectivityRestoredCallback () {
console.log("Network Connectivity Restored");
alert("Network Connectivity Restored");
if ( transferObject === 'undefined' ){
alert("transfer object undefined")
} else {
if ( transferObject.currentTransferState == Signiant.Mst.transferState.TRANSFERRING ){
alert("state == TRANSFERRING")
} else {
alert("state != TRANSFERRING")
}
}
}
// The Signiant App would have cancelled any running transfers if this callback is fired
function appCommunicationErrorCallback () {
console.log("Connection to Signiant App Lost");
alert("Your connection has been lost. Press launch application on the next dialog.")
reInitializeApp();
}
/* Called in response to success initialize on Signiant.mst.initialize */
function reIntializeSuccess() {
console.log("Connection to Signiant App Re-established");
alert("Connection to Signiant App Re-established");
if ( transferObject !== 'undefined' ){
console.log("Checking to restart transfer");
// check and see if transfer was running, if so restart transfer
// we could send a cancel as well at this point to ensure the previous transfer was cancelled
// but Signiant App will cancel transfers when communication with Browser lost for significant period of time
if ( transferObject.currentTransferState == Signiant.Mst.transferState.TRANSFERRING ){
console.log("Restarting Transfer");
alert("Restarting Transfer in Progress");
// Set back to IDLE, pending this being tracked in Transfer API
transferObject.currentTransferState = Signiant.Mst.transferState.IDLE;
transferObject.startUpload();
}
}
}
/* Called in response to failure to initialize on Signiant.mst.initialize */
function reInitializeFailure() {
console.log("Re-Initialize Signiant App Failed, retrying");
alert("Signiant App Connection Lost, Retrying...");
reInitializeApp();
}
/* Timeout is time to wait for app to respond to new session request. We suggest 20 seconds, but you may want to lower this. If the timer completes and no message is received, reInitializeFailure will fire */
function reInitializeApp() {
console.log("Attempt Re Initialize Connection to Signiant");
var options = { "timeout" : 20000 };
Signiant.Mst.initialize(reIntializeSuccess, reInitializeFailure, options);
}
function appErrorFailure(){
alert("Signiant App Failed to load. Transfer Services will not be available.");
}
/**
* Open the file selection dialog, and call callbackUpload when it closes.
*
* @return null
*/
function chooseFiles() {
transferObject.chooseUploadFiles( callbackUpload );
}
/**
* Callback when the file picker is closed.
*
* @return null
*/
var callbackUpload = function(event,selectedFiles) {
var filesArray = new Array();
for (var i = 0; i < selectedFiles.length; i++) {
filesArray.push(selectedFiles[i].path);
}
//set the files to upload on the transfer object
transferObject.setFilesToUpload(filesArray);
//optionally set the subfolder for the files to go into (eg. "/folder1/folder2/folder3")
//transferObject.setSubFolder(destinationFolderPath);
//start the upload
transferObject.startUpload();
//modify the UI
$("#contentUploadText").html("Starting upload...");
$("#contentListing").fadeTo(1000, 0.3);
$("#contentUpload").on('click', cancelUpload);
}
/**
* Display progress of upload (doesn't work on download at the moment.)
*
* @return null
*/
function transferProgressCallback(transferObject, numBytesSent, numBytesTotal, estimatedTimeRemaining) {
var percent = Math.round((numBytesSent/numBytesTotal)*100);
$("#contentUploadText").html(percent+"% completed.<p>Completes in about "+moment.duration(estimatedTimeRemaining*1000).humanize()+"</p>");
}
/**
* Log errors to the JavaScript console.
*
* @return null
*/
function transferErrors (transferObject, eventCode, eventMsg, propertyName){
//alert("Sample Upload Transfer Error " + eventCode + ", " + eventMsg);
}
/**
* Display feedback to the user depending on what events are returned
*
* @return null
*/
function transferEvents ( transferObject, eventCode, eventMsg, eventData ) {
//alert("Sample Upload Transfer Event " + eventCode + ", " + eventMsg);
var message = eventMsg;
switch(eventCode) {
case "TRANSFER_STARTED":
$("#uploadFileChooser").attr("class","icon-completed");
break;
case "TRANSFER_CANCEL_EVENT":
case "TRANSFER_COMPLETED":
transferObject.clearAllFiles();
setTimeout(function() {resetUpload()},900);
break;
case "TRANSFER_ERROR_EVENT":
transferObject.clearAllFiles();
$("#contentUploadText").html("Upload something...");
$("#uploadFileChooser").attr("class","icon-add");
$("#contentListing").fadeTo(1000, 1);
$("#contentUpload").unbind('click');
$("#contentUpload").click(chooseFiles);
break;
default:
return
}
}
/**
* Gracefully cancel the upload
*
* @return null
*/
function cancelUpload() {
$("#contentUploadText").html("Cancelling upload<p>This will take a few seconds.");
console.log("Cancel Upload files");
try {
transferObject.cancel();
} catch (exception) {
alert("Exception in Cancel Upload Files"+exception);
}
}
/**
* Download a file from the cloud.
*
* @param {String} fileName The complete name of the file to download from S3 (can also be a "directory")
* Note that this method is not called in this example. It is shown here for completeness.
* @return null
*/
function downloadFile(fileName) {
//create a new download Object
var download = new Signiant.Mst.Download();
//set the download server
download.setServer(defaultServer);
//set the storage configuration
download.setStorageConfig('{"account-name":"'+azureAccountName+'", "access-key":"'+azureAccessKey+'", "container":"'+azureContainer+'"}');
//set the probeLB (probe load balancer) to true (always true for Flight).
download.setProbeLB(true);
//set the files to download to the file that is passed
download.setFilesToDownload(new Array(fileName));
//open the file picker so the user selects where to save the file.
download.chooseDownloadFolder( function(message, folder) {
//set the download folder to what they set
download.setDownloadFolder(folder);
//double check that we actually set the files by calling getFiles on the download object instead of using the fileName that as passed
selectedFiles = download.getFiles();
if (selectedFiles.length == 0)
alert("No files Selected for Download");
else{
//do the download
download.startDownload();
}
});
}
/**
* Reset the ability to upload files.
*
* @return null
*/
function resetUpload() {
$("#contentUpload").unbind('click');
$("#contentUpload").click(chooseFiles);
$("#contentUploadText").html("Upload something...");
$("#uploadFileChooser").attr("class","icon-add");
}
/**
* Runs when the document is fully loaded.
*
* @return null
*/
$(document).ready(function(){
//does the Signiant app exist?
checkForSigniant(true);
//update the container display to show the items currently in the bucket.
resetUpload();
});
</script>
</head>
<body>
<div class="header"><div class="icon-logo" style="width: 141px; height: 20px;" ></div> <div id="headerBackground"></div></div>
<div id="mainContent" class="content">
<div id="contentUpload">
<div id="uploadFileChooser" class="icon-add" style="width: 85px; height: 62px;margin: auto;margin-top: 115px;"></div>
<div id="contentUploadText">Upload something... </div>
</div>
</div>
<div class="footer">
© 2015 Signiant.
</div>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<style>
body{margin:0;padding:0;font-family:sans-serif}.header{position:relative;top:0;width:100%;height:70px;left:0;z-index:1}#headerBackground{position:absolute;z-index:-1;top:0;bottom:0;left:0;right:0;background-color:#000;opacity:.1}.content{position:relative;width:100%;height:100%;padding-top:75px}.footer{float:left;bottom:30px;padding-left:35px;padding-top:100px;left:35px;clear:both;font-size:80%;color:#000;opacity:.25}#contentUpload{float:left;width:20%;height:362px;border:1px solid rgba(0,0,0,.3);border-radius:25px;margin-left:20%;text-align:center;cursor:pointer}#contentUploadText{padding-top:20px}#contentUploadText P{opacity:.5}#contentListing{float:left;border:1px solid rgba(0,0,0,.3);border-radius:25px;width:40%;margin-left:25px;padding-top:35px;padding-bottom:70px;padding-left:30px;position:relative}#contentListing .fa-refresh{right:20px;top:20px;position:absolute}#objects{display:table;margin-top:10px;font-size:90%;width:100%}.row{width:100%;border:1px solid red;display:table-row;margin-top:10px;font-size:95%}.cell{display:table-cell;padding-top:10px}.cell A{text-decoration:none;color:#000}#objects .fa{padding-right:15px}.date{color:#000;opacity:.4;font-size:90%}.icon-add{background-image:url('data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2018.1.1%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0D%0A%3C%21DOCTYPE%20svg%20PUBLIC%20%22-//W3C//DTD%20SVG%201.1//EN%22%20%22http%3A//www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd%22%20%5B%0D%0A%09%3C%21ENTITY%20ns_extend%20%22http%3A//ns.adobe.com/Extensibility/1.0/%22%3E%0D%0A%09%3C%21ENTITY%20ns_ai%20%22http%3A//ns.adobe.com/AdobeIllustrator/10.0/%22%3E%0D%0A%09%3C%21ENTITY%20ns_graphs%20%22http%3A//ns.adobe.com/Graphs/1.0/%22%3E%0D%0A%09%3C%21ENTITY%20ns_vars%20%22http%3A//ns.adobe.com/Variables/1.0/%22%3E%0D%0A%09%3C%21ENTITY%20ns_imrep%20%22http%3A//ns.adobe.com/ImageReplacement/1.0/%22%3E%0D%0A%09%3C%21ENTITY%20ns_sfw%20%22http%3A//ns.adobe.com/SaveForWeb/1.0/%22%3E%0D%0A%09%3C%21ENTITY%20ns_custom%20%22http%3A//ns.adobe.com/GenericCustomNamespace/1.0/%22%3E%0D%0A%09%3C%21ENTITY%20ns_adobe_xpath%20%22http%3A//ns.adobe.com/XPath/1.0/%22%3E%0D%0A%5D%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3Ax%3D%22%26ns_extend%3B%22%20xmlns%3Ai%3D%22%26ns_ai%3B%22%20xmlns%3Agraph%3D%22%26ns_graphs%3B%22%0D%0A%09%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2284.1px%22%20height%3D%2261.7px%22%0D%0A%09%20viewBox%3D%220%200%2084.1%2061.7%22%20enable-background%3D%22new%200%200%2084.1%2061.7%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cmetadata%3E%0D%0A%09%3Csfw%20%20xmlns%3D%22%26ns_sfw%3B%22%3E%0D%0A%09%09%3Cslices%3E%3C/slices%3E%0D%0A%09%09%3CsliceSourceBounds%20%20height%3D%22280.5%22%20width%3D%222940.8%22%20x%3D%22447.5%22%20y%3D%22-424.2%22%20bottomLeftOrigin%3D%22true%22%3E%3C/sliceSourceBounds%3E%0D%0A%09%3C/sfw%3E%0D%0A%3C/metadata%3E%0D%0A%3Cg%20opacity%3D%220.7%22%3E%0D%0A%09%3Cpath%20d%3D%22M67.3%2C61.7H19.6C8.8%2C61.7%2C0%2C52.9%2C0%2C42.1c0-7.8%2C4.6-14.6%2C11.3-17.7c0-0.6-0.1-1.3-0.1-1.9C11.2%2C10%2C21.2%2C0%2C33.6%2C0%0D%0A%09%09C43%2C0%2C51%2C5.7%2C54.4%2C13.9c1.9-1.7%2C4.5-2.7%2C7.3-2.7c6.2%2C0%2C11.2%2C5%2C11.2%2C11.2c0%2C2.2-0.7%2C4.3-1.8%2C6c7.4%2C1.8%2C13%2C8.4%2C13%2C16.4%0D%0A%09%09C84.1%2C54.1%2C76.6%2C61.7%2C67.3%2C61.7z%22/%3E%0D%0A%3C/g%3E%0D%0A%3Cg%3E%0D%0A%09%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M53.2%2C39.1c0%2C0.9-0.8%2C1.7-1.7%2C1.7h-7.4v7.4c0%2C0.9-0.8%2C1.7-1.7%2C1.7h-3.4c-0.9%2C0-1.7-0.8-1.7-1.7v-7.4h-7.4%0D%0A%09%09c-0.9%2C0-1.7-0.8-1.7-1.7v-3.4c0-0.9%2C0.8-1.7%2C1.7-1.7h7.4v-7.4c0-0.9%2C0.8-1.7%2C1.7-1.7h3.4c0.9%2C0%2C1.7%2C0.8%2C1.7%2C1.7v7.4h7.4%0D%0A%09%09c0.9%2C0%2C1.7%2C0.8%2C1.7%2C1.7V39.1z%22/%3E%0D%0A%3C/g%3E%0D%0A%3C/svg%3E%0D%0A');background-repeat:no-repeat}.icon-completed{background-image:url('data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2018.1.1%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0D%0A%3C%21DOCTYPE%20svg%20PUBLIC%20%22-//W3C//DTD%20SVG%201.1//EN%22%20%22http%3A//www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd%22%20%5B%0D%0A%09%3C%21ENTITY%20ns_extend%20%22http%3A//ns.adobe.com/Extensibility/1.0/%22%3E%0D%0A%09%3C%21ENTITY%20ns_ai%20%22http%3A//ns.adobe.com/AdobeIllustrator/10.0/%22%3E%0D%0A%09%3C%21ENTITY%20ns_graphs%20%22http%3A//ns.adobe.com/Graphs/1.0/%22%3E%0D%0A%09%3C%21ENTITY%20ns_vars%20%22http%3A//ns.adobe.com/Variables/1.0/%22%3E%0D%0A%09%3C%21ENTITY%20ns_imrep%20%22http%3A//ns.adobe.com/ImageReplacement/1.0/%22%3E%0D%0A%09%3C%21ENTITY%20ns_sfw%20%22http%3A//ns.adobe.com/SaveForWeb/1.0/%22%3E%0D%0A%09%3C%21ENTITY%20ns_custom%20%22http%3A//ns.adobe.com/GenericCustomNamespace/1.0/%22%3E%0D%0A%09%3C%21ENTITY%20ns_adobe_xpath%20%22http%3A//ns.adobe.com/XPath/1.0/%22%3E%0D%0A%5D%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3Ax%3D%22%26ns_extend%3B%22%20xmlns%3Ai%3D%22%26ns_ai%3B%22%20xmlns%3Agraph%3D%22%26ns_graphs%3B%22%0D%0A%09%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2284.9px%22%20height%3D%2262.3px%22%0D%0A%09%20viewBox%3D%220%200%2084.9%2062.3%22%20enable-background%3D%22new%200%200%2084.9%2062.3%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cmetadata%3E%0D%0A%09%3Csfw%20%20xmlns%3D%22%26ns_sfw%3B%22%3E%0D%0A%09%09%3Cslices%3E%3C/slices%3E%0D%0A%09%09%3CsliceSourceBounds%20%20height%3D%22280.5%22%20width%3D%222940.8%22%20x%3D%22447.5%22%20y%3D%22-424.2%22%20bottomLeftOrigin%3D%22true%22%3E%3C/sliceSourceBounds%3E%0D%0A%09%3C/sfw%3E%0D%0A%3C/metadata%3E%0D%0A%3Cg%3E%0D%0A%09%3Cdefs%3E%0D%0A%09%09%3Cpath%20id%3D%22XMLID_9_%22%20d%3D%22M67.9%2C62.3H19.8C8.9%2C62.3%2C0%2C53.4%2C0%2C42.5c0-7.7%2C4.5-14.7%2C11.4-17.9c0-0.7-0.1-1.3-0.1-1.9%0D%0A%09%09%09C11.3%2C10.1%2C21.4%2C0%2C34%2C0c9.2%2C0%2C17.5%2C5.6%2C21%2C14.1c2-1.8%2C4.6-2.7%2C7.3-2.7c6.2%2C0%2C11.3%2C5.1%2C11.3%2C11.3c0%2C2.2-0.6%2C4.3-1.8%2C6.1%0D%0A%09%09%09c7.7%2C1.8%2C13.1%2C8.7%2C13.1%2C16.5C84.9%2C54.7%2C77.3%2C62.3%2C67.9%2C62.3z%20M56.2%2C31.5L40.6%2C16c-0.3-0.3-0.6-0.4-1-0.4c-0.4%2C0-0.8%2C0.1-1%2C0.4%0D%0A%09%09%09L23.1%2C31.5c-0.3%2C0.3-0.4%2C0.7-0.4%2C1.1c0%2C0.8%2C0.6%2C1.4%2C1.4%2C1.4H34v15.6c0%2C0.8%2C0.7%2C1.4%2C1.4%2C1.4h8.5c0.8%2C0%2C1.4-0.7%2C1.4-1.4V34h9.9%0D%0A%09%09%09c0.8%2C0%2C1.4-0.7%2C1.4-1.4C56.6%2C32.2%2C56.5%2C31.8%2C56.2%2C31.5z%22/%3E%0D%0A%09%3C/defs%3E%0D%0A%09%3Cuse%20xlink%3Ahref%3D%22%23XMLID_9_%22%20%20overflow%3D%22visible%22%20opacity%3D%220.7%22/%3E%0D%0A%09%3CclipPath%20id%3D%22XMLID_2_%22%3E%0D%0A%09%09%3Cuse%20xlink%3Ahref%3D%22%23XMLID_9_%22%20%20overflow%3D%22visible%22%20opacity%3D%220.7%22/%3E%0D%0A%09%3C/clipPath%3E%0D%0A%3C/g%3E%0D%0A%3C/svg%3E%0D%0A');background-repeat:no-repeat}.icon-download{background-image:url('data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3C%21--%20Generator%3A%20Adobe%20Illustrator%2018.1.1%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200%29%20%20--%3E%0D%0A%3C%21DOCTYPE%20svg%20PUBLIC%20%22-//W3C//DTD%20SVG%201.1//EN%22%20%22http%3A//www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd%22%20%5B%0D%0A%09%3C%21ENTITY%20ns_extend%20%22http%3A//ns.adobe.com/Extensibility/1.0/%22%3E%0D%0A%09%3C%21ENTITY%20ns_ai%20%22http%3A//ns.adobe.com/AdobeIllustrator/10.0/%22%3E%0D%0A%09%3C%21ENTITY%20ns_graphs%20%22http%3A//ns.adobe.com/Graphs/1.0/%22%3E%0D%0A%09%3C%21ENTITY%20ns_vars%20%22http%3A//ns.adobe.com/Variables/1.0/%22%3E%0D%0A%09%3C%21ENTITY%20ns_imrep%20%22http%3A//ns.adobe.com/ImageReplacement/1.0/%22%3E%0D%0A%09%3C%21ENTITY%20ns_sfw%20%22http%3A//ns.adobe.com/SaveForWeb/1.0/%22%3E%0D%0A%09%3C%21ENTITY%20ns_custom%20%22http%3A//ns.adobe.com/GenericCustomNamespace/1.0/%22%3E%0D%0A%09%3C%21ENTITY%20ns_adobe_xpath%20%22http%3A//ns.adobe.com/XPath/1.0/%22%3E%0D%0A%5D%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3Ax%3D%22%26ns_extend%3B%22%20xmlns%3Ai%3D%22%26ns_ai%3B%22%20xmlns%3Agraph%3D%22%26ns_graphs%3B%22%0D%0A%09%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2284.1px%22%20height%3D%2261.7px%22%0D%0A%09%20viewBox%3D%220%200%2084.1%2061.7%22%20enable-background%3D%22new%200%200%2084.1%2061.7%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cmetadata%3E%0D%0A%09%3Csfw%20%20xmlns%3D%22%26ns_sfw%3B%22%3E%0D%0A%09%09%3Cslices%3E%3C/slices%3E%0D%0A%09%09%3CsliceSourceBounds%20%20height%3D%22280.5%22%20width%3D%222940.8%22%20x%3D%22447.5%22%20y%3D%22-424.2%22%20bottomLeftOrigin%3D%22true%22%3E%3C/sliceSourceBounds%3E%0D%0A%09%3C/sfw%3E%0D%0A%3C/metadata%3E%0D%0A%3Cg%20opacity%3D%220.7%22%3E%0D%0A%09%3Cpath%20d%3D%22M67.3%2C61.7H19.6C8.8%2C61.7%2C0%2C52.9%2C0%2C42.1c0-7.6%2C4.4-14.5%2C11.3-17.7c0-0.7-0.1-1.3-0.1-1.9C11.2%2C10%2C21.2%2C0%2C33.6%2C0%0D%0A%09%09c9.1%2C0%2C17.3%2C5.5%2C20.8%2C13.9c2-1.8%2C4.6-2.7%2C7.3-2.7c6.2%2C0%2C11.2%2C5%2C11.2%2C11.2c0%2C2.1-0.6%2C4.2-1.8%2C6c7.6%2C1.8%2C13%2C8.6%2C13%2C16.4%0D%0A%09%09C84.1%2C54.1%2C76.6%2C61.7%2C67.3%2C61.7z%20M54.7%2C33.6h-9.8V18.2c0-0.7-0.7-1.4-1.4-1.4H35c-0.7%2C0-1.4%2C0.7-1.4%2C1.4v15.4h-9.8%0D%0A%09%09c-0.8%2C0-1.4%2C0.7-1.4%2C1.4c0%2C0.3%2C0.1%2C0.7%2C0.4%2C1l15.4%2C15.4c0.3%2C0.3%2C0.6%2C0.4%2C1%2C0.4c0.4%2C0%2C0.7-0.1%2C1-0.4l15.4-15.4%0D%0A%09%09c0.3-0.3%2C0.4-0.7%2C0.4-1.1C56.1%2C34.3%2C55.5%2C33.6%2C54.7%2C33.6z%22/%3E%0D%0A%3C/g%3E%0D%0A%3C/svg%3E%0D%0A');background-repeat:no-repeat}.icon-logo{top: 17px; left: 17px; position:absolute;background-image:url('webtransferapi.png')}
</style>
</body></html>