wco_email 0.1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README.txt +129 -0
- data/Rakefile +5 -0
- data/app/assets/config/wco_email_manifest.js +7 -0
- data/app/assets/javascript/vendor-trash/jquery-ui.min.js +13 -0
- data/app/assets/javascript/vendor-trash/jquery.fileupload.js +1482 -0
- data/app/assets/javascript/vendor-trash/jquery.iframe-transport.js +224 -0
- data/app/assets/javascript/vendor-trash/jquery.ui.widget.js +572 -0
- data/app/assets/javascript/vendor-trash/summernote-bs4.min.js +3 -0
- data/app/assets/javascript/wco_email/application.js +11 -0
- data/app/assets/javascript/wco_email/contexts.js +19 -0
- data/app/assets/javascript/wco_email/conversations.js +177 -0
- data/app/assets/javascript/wco_email/file_upload.js-trash +32 -0
- data/app/assets/javascript/wco_email/shared.js +22 -0
- data/app/assets/stylesheets/wco_email/application.scss +29 -0
- data/app/assets/stylesheets/wco_email/contexts.scss +63 -0
- data/app/assets/stylesheets/wco_email/conversations.scss +16 -0
- data/app/assets/stylesheets/wco_email/tags.scss +6 -0
- data/app/controllers/wco_email/application_controller.rb +16 -0
- data/app/controllers/wco_email/contexts_controller.rb +156 -0
- data/app/controllers/wco_email/conversations_controller.rb +129 -0
- data/app/controllers/wco_email/email_action_templates_controller.rb +77 -0
- data/app/controllers/wco_email/email_actions_controller.rb +55 -0
- data/app/controllers/wco_email/email_campaigns_controller.rb +73 -0
- data/app/controllers/wco_email/email_filters_controller.rb +72 -0
- data/app/controllers/wco_email/email_layouts_controller.rb +13 -0
- data/app/controllers/wco_email/email_templates_controller.rb +124 -0
- data/app/controllers/wco_email/message_stubs_controller.rb +14 -0
- data/app/controllers/wco_email/messages_controller.rb +28 -0
- data/app/controllers/wco_email/obfuscated_redirects_controller.rb +20 -0
- data/app/controllers/wco_email/sessions_controller.rb +19 -0
- data/app/controllers/wco_email/unsubscribes_controller.rb +40 -0
- data/app/helpers/wco_email/application_helper.rb +20 -0
- data/app/jobs/wco_email/message_intake_job.rb +54 -0
- data/app/mailers/wco_email/application_mailer.rb +98 -0
- data/app/views/202212 Mailchimp Templates/202212 1col fixed-width.html +863 -0
- data/app/views/202212 Mailchimp Templates/202212 1col full-width.html +906 -0
- data/app/views/202212 Mailchimp Templates/202212 2col fixed-width 2.html +1003 -0
- data/app/views/202212 Mailchimp Templates/202212 2col fixed-width.html +1082 -0
- data/app/views/202212 Mailchimp Templates/202212 2col full-width 2.html +1053 -0
- data/app/views/202212 Mailchimp Templates/202212 2col full-width.html +1147 -0
- data/app/views/202212 Mailchimp Templates/202212 3col fixed-width.html +1087 -0
- data/app/views/202212 Mailchimp Templates/202212 3col full-width.html +1136 -0
- data/app/views/202212 Mailchimp Templates/202212 catalog various-colors-1.html +1223 -0
- data/app/views/202212 Mailchimp Templates/202212 educate.html +1080 -0
- data/app/views/202212 Mailchimp Templates/202212 follow up.html +1001 -0
- data/app/views/202212 Mailchimp Templates/202212 make an announcement.html +1048 -0
- data/app/views/202212 Mailchimp Templates/202212 sell-a-product.html +977 -0
- data/app/views/202212 Mailchimp Templates/202212 tell a story.html +1168 -0
- data/app/views/202212 Mailchimp Templates/202212 theme art-newsletter.html +1612 -0
- data/app/views/202212 Mailchimp Templates/202212 theme caribou-xmas.html +856 -0
- data/app/views/202212 Mailchimp Templates/202212 theme colorbox.html +1027 -0
- data/app/views/202212 Mailchimp Templates/202212 theme competition-invitation.html +918 -0
- data/app/views/202212 Mailchimp Templates/202212 theme event-veerle.html +1132 -0
- data/app/views/202212 Mailchimp Templates/202212 theme fall-colors.html +1407 -0
- data/app/views/202212 Mailchimp Templates/202212 theme gift-giving.html +787 -0
- data/app/views/202212 Mailchimp Templates/202212 theme giftgiving-snowmen.html +731 -0
- data/app/views/202212 Mailchimp Templates/202212 theme heart-of-flowers.html +795 -0
- data/app/views/202212 Mailchimp Templates/202212 theme hero-card.html +915 -0
- data/app/views/202212 Mailchimp Templates/202212 theme hero-image.html +1148 -0
- data/app/views/202212 Mailchimp Templates/202212 theme monthly-contest.html +967 -0
- data/app/views/202212 Mailchimp Templates/202212 theme multiple-event.html +1189 -0
- data/app/views/202212 Mailchimp Templates/202212 theme postcard.html +914 -0
- data/app/views/202212 Mailchimp Templates/202212 theme snowy-fields.html +733 -0
- data/app/views/202212 Mailchimp Templates/202212 theme soft.html +849 -0
- data/app/views/202212 Mailchimp Templates/202212 theme sophisticated.html +1079 -0
- data/app/views/202212 Mailchimp Templates/202212 theme subtle.html +1218 -0
- data/app/views/202212 Mailchimp Templates/202212 theme ticket.html +1015 -0
- data/app/views/202212 Mailchimp Templates/202212 theme whale.html +888 -0
- data/app/views/202310 Email Templates/_acknowledgement_of_document_receipt.html.erb +23 -0
- data/app/views/202310 Email Templates/_support_ticket_created.html.erb +26 -0
- data/app/views/layouts/wco_email/application.haml +64 -0
- data/app/views/layouts/wco_email/mailbox.haml-trash +62 -0
- data/app/views/wco_email/_analytics.erb +16 -0
- data/app/views/wco_email/_main_header.haml +31 -0
- data/app/views/wco_email/_sidebar.haml +10 -0
- data/app/views/wco_email/application_mailer/_footer_unsubscribe.html.erb +24 -0
- data/app/views/wco_email/application_mailer/_header_logo.html.erb +12 -0
- data/app/views/wco_email/application_mailer/forwarder_notify.html.erb +17 -0
- data/app/views/wco_email/contexts/_form.haml +59 -0
- data/app/views/wco_email/contexts/_form_reply.haml +27 -0
- data/app/views/wco_email/contexts/_header.haml +22 -0
- data/app/views/wco_email/contexts/_index.haml +8 -0
- data/app/views/wco_email/contexts/edit.haml +8 -0
- data/app/views/wco_email/contexts/iframe_src.haml +3 -0
- data/app/views/wco_email/contexts/index.haml +51 -0
- data/app/views/wco_email/contexts/new.haml +5 -0
- data/app/views/wco_email/contexts/show.haml +34 -0
- data/app/views/wco_email/contexts/summary.csv.erb +4 -0
- data/app/views/wco_email/contexts/summary.haml +16 -0
- data/app/views/wco_email/conversations/_actions.haml +21 -0
- data/app/views/wco_email/conversations/_search.haml +14 -0
- data/app/views/wco_email/conversations/index.haml +43 -0
- data/app/views/wco_email/conversations/show.haml +27 -0
- data/app/views/wco_email/email_action_templates/_form.haml +45 -0
- data/app/views/wco_email/email_action_templates/_header.haml +8 -0
- data/app/views/wco_email/email_action_templates/edit.haml +7 -0
- data/app/views/wco_email/email_action_templates/index.haml +36 -0
- data/app/views/wco_email/email_action_templates/new.haml +9 -0
- data/app/views/wco_email/email_action_templates/show.haml +11 -0
- data/app/views/wco_email/email_actions/_form.haml +24 -0
- data/app/views/wco_email/email_actions/_form_mini.haml-trash +28 -0
- data/app/views/wco_email/email_actions/_header.haml +8 -0
- data/app/views/wco_email/email_actions/edit.haml +4 -0
- data/app/views/wco_email/email_actions/index.haml +31 -0
- data/app/views/wco_email/email_actions/new.haml +4 -0
- data/app/views/wco_email/email_actions/show.haml +0 -0
- data/app/views/wco_email/email_campaigns/_form.haml +33 -0
- data/app/views/wco_email/email_campaigns/_header.haml +5 -0
- data/app/views/wco_email/email_campaigns/edit.haml +5 -0
- data/app/views/wco_email/email_campaigns/index.haml +14 -0
- data/app/views/wco_email/email_campaigns/new.haml +5 -0
- data/app/views/wco_email/email_campaigns/show.haml +17 -0
- data/app/views/wco_email/email_filters/_form.haml +40 -0
- data/app/views/wco_email/email_filters/_header.haml +5 -0
- data/app/views/wco_email/email_filters/edit.haml +5 -0
- data/app/views/wco_email/email_filters/index.haml +48 -0
- data/app/views/wco_email/email_filters/new.haml +5 -0
- data/app/views/wco_email/email_templates/_form.haml +48 -0
- data/app/views/wco_email/email_templates/_form_mini.haml +9 -0
- data/app/views/wco_email/email_templates/_form_reply_mini.haml +8 -0
- data/app/views/wco_email/email_templates/_form_schedule_mini.haml +11 -0
- data/app/views/wco_email/email_templates/_header.haml +6 -0
- data/app/views/wco_email/email_templates/_index.haml +26 -0
- data/app/views/wco_email/email_templates/_index_expanded.haml +13 -0
- data/app/views/wco_email/email_templates/_m20221201react.html.erb +1202 -0
- data/app/views/wco_email/email_templates/_m20221222merryxmas.html.erb +766 -0
- data/app/views/wco_email/email_templates/_m202309_feedback.html.erb +1161 -0
- data/app/views/wco_email/email_templates/_m202309_ror4.html.erb +1068 -0
- data/app/views/wco_email/email_templates/_marketing_node_1.html.erb +984 -0
- data/app/views/wco_email/email_templates/_marketing_react_1.html +0 -0
- data/app/views/wco_email/email_templates/_marketing_react_2.html.erb +749 -0
- data/app/views/wco_email/email_templates/_marketing_react_3.html.erb +628 -0
- data/app/views/wco_email/email_templates/_marketing_ror_1.html +751 -0
- data/app/views/wco_email/email_templates/_marketing_ror_2.html.erb +755 -0
- data/app/views/wco_email/email_templates/_marketing_ror_3.html.erb +25 -0
- data/app/views/wco_email/email_templates/_marketing_ror_4.html.erb +25 -0
- data/app/views/wco_email/email_templates/_marketing_ror_5.html.erb +17 -0
- data/app/views/wco_email/email_templates/_marketing_wordpress_1.html +0 -0
- data/app/views/wco_email/email_templates/_marketing_wordpress_2.html +0 -0
- data/app/views/wco_email/email_templates/_meta.haml +6 -0
- data/app/views/wco_email/email_templates/_piousbox_roundborders.html.erb +1007 -0
- data/app/views/wco_email/email_templates/_piousbox_social.html.erb +181 -0
- data/app/views/wco_email/email_templates/_plain.haml +15 -0
- data/app/views/wco_email/email_templates/_rec_resume_shared_with_you.html.erb +39 -0
- data/app/views/wco_email/email_templates/_slug-1.html.erb +0 -0
- data/app/views/wco_email/email_templates/_slug-2.html.erb +0 -0
- data/app/views/wco_email/email_templates/_slug-3.html.erb +0 -0
- data/app/views/wco_email/email_templates/_tracking_footer.html.erb +13 -0
- data/app/views/wco_email/email_templates/_wasyaco_roundborders.html.erb +686 -0
- data/app/views/wco_email/email_templates/_wasyaco_social.html.erb +181 -0
- data/app/views/wco_email/email_templates/edit.haml +6 -0
- data/app/views/wco_email/email_templates/new.haml +6 -0
- data/app/views/wco_email/email_templates/show.haml +11 -0
- data/app/views/wco_email/email_templates/show_iframe.haml +2 -0
- data/app/views/wco_email/lead_action_templates/_header.haml +7 -0
- data/app/views/wco_email/lead_actions/_header.haml +8 -0
- data/app/views/wco_email/message_stubs/_index.haml +10 -0
- data/app/views/wco_email/messages/_form_reply.haml-trash +17 -0
- data/app/views/wco_email/messages/_meta.haml +30 -0
- data/app/views/wco_email/messages/show.haml +13 -0
- data/app/views/wco_email/messages/show_iframe.haml +5 -0
- data/app/views/wco_email/sessions/new.html.erb +4 -0
- data/app/views/wco_email/unsubscribes/_header.haml +4 -0
- data/app/views/wco_email/unsubscribes/_table.haml +22 -0
- data/config/initializers/assets.rb +10 -0
- data/config/routes.rb +49 -0
- data/lib/tasks/bjjcollective/sitemap.rb +50 -0
- data/lib/tasks/db_tasks.rake +12 -0
- data/lib/tasks/direct_mail_tasks.rake +35 -0
- data/lib/tasks/infinite_shelter/sitemap.rb +25 -0
- data/lib/tasks/piousbox/sitemap.rb +80 -0
- data/lib/tasks/publish2_wordpress_tasks.rake +54 -0
- data/lib/tasks/scrape_reddit_tasks.rake-bk +23 -0
- data/lib/tasks/trash/email_tasks.rake-trash +126 -0
- data/lib/tasks/trash/sitemap_tasks.rake-trash +146 -0
- data/lib/tasks/wasya_co/sitemap.rb +281 -0
- data/lib/tasks/wco_email_tasks.rake +117 -0
- data/lib/wco_email/README_email_actions.rb +7 -0
- data/lib/wco_email/README_email_contexts.rb +7 -0
- data/lib/wco_email/engine.rb +8 -0
- data/lib/wco_email.rb +19 -0
- metadata +493 -0
@@ -0,0 +1,224 @@
|
|
1
|
+
/*
|
2
|
+
* jQuery Iframe Transport Plugin
|
3
|
+
* https://github.com/blueimp/jQuery-File-Upload
|
4
|
+
*
|
5
|
+
* Copyright 2011, Sebastian Tschan
|
6
|
+
* https://blueimp.net
|
7
|
+
*
|
8
|
+
* Licensed under the MIT license:
|
9
|
+
* https://opensource.org/licenses/MIT
|
10
|
+
*/
|
11
|
+
|
12
|
+
/* global define, require, window, document, JSON */
|
13
|
+
|
14
|
+
;(function (factory) {
|
15
|
+
'use strict';
|
16
|
+
if (typeof define === 'function' && define.amd) {
|
17
|
+
// Register as an anonymous AMD module:
|
18
|
+
define(['jquery'], factory);
|
19
|
+
} else if (typeof exports === 'object') {
|
20
|
+
// Node/CommonJS:
|
21
|
+
factory(require('jquery'));
|
22
|
+
} else {
|
23
|
+
// Browser globals:
|
24
|
+
factory(window.jQuery);
|
25
|
+
}
|
26
|
+
}(function ($) {
|
27
|
+
'use strict';
|
28
|
+
|
29
|
+
// Helper variable to create unique names for the transport iframes:
|
30
|
+
var counter = 0,
|
31
|
+
jsonAPI = $,
|
32
|
+
jsonParse = 'parseJSON';
|
33
|
+
|
34
|
+
if ('JSON' in window && 'parse' in JSON) {
|
35
|
+
jsonAPI = JSON;
|
36
|
+
jsonParse = 'parse';
|
37
|
+
}
|
38
|
+
|
39
|
+
// The iframe transport accepts four additional options:
|
40
|
+
// options.fileInput: a jQuery collection of file input fields
|
41
|
+
// options.paramName: the parameter name for the file form data,
|
42
|
+
// overrides the name property of the file input field(s),
|
43
|
+
// can be a string or an array of strings.
|
44
|
+
// options.formData: an array of objects with name and value properties,
|
45
|
+
// equivalent to the return data of .serializeArray(), e.g.:
|
46
|
+
// [{name: 'a', value: 1}, {name: 'b', value: 2}]
|
47
|
+
// options.initialIframeSrc: the URL of the initial iframe src,
|
48
|
+
// by default set to "javascript:false;"
|
49
|
+
$.ajaxTransport('iframe', function (options) {
|
50
|
+
if (options.async) {
|
51
|
+
// javascript:false as initial iframe src
|
52
|
+
// prevents warning popups on HTTPS in IE6:
|
53
|
+
/*jshint scripturl: true */
|
54
|
+
var initialIframeSrc = options.initialIframeSrc || 'javascript:false;',
|
55
|
+
/*jshint scripturl: false */
|
56
|
+
form,
|
57
|
+
iframe,
|
58
|
+
addParamChar;
|
59
|
+
return {
|
60
|
+
send: function (_, completeCallback) {
|
61
|
+
form = $('<form style="display:none;"></form>');
|
62
|
+
form.attr('accept-charset', options.formAcceptCharset);
|
63
|
+
addParamChar = /\?/.test(options.url) ? '&' : '?';
|
64
|
+
// XDomainRequest only supports GET and POST:
|
65
|
+
if (options.type === 'DELETE') {
|
66
|
+
options.url = options.url + addParamChar + '_method=DELETE';
|
67
|
+
options.type = 'POST';
|
68
|
+
} else if (options.type === 'PUT') {
|
69
|
+
options.url = options.url + addParamChar + '_method=PUT';
|
70
|
+
options.type = 'POST';
|
71
|
+
} else if (options.type === 'PATCH') {
|
72
|
+
options.url = options.url + addParamChar + '_method=PATCH';
|
73
|
+
options.type = 'POST';
|
74
|
+
}
|
75
|
+
// IE versions below IE8 cannot set the name property of
|
76
|
+
// elements that have already been added to the DOM,
|
77
|
+
// so we set the name along with the iframe HTML markup:
|
78
|
+
counter += 1;
|
79
|
+
iframe = $(
|
80
|
+
'<iframe src="' + initialIframeSrc +
|
81
|
+
'" name="iframe-transport-' + counter + '"></iframe>'
|
82
|
+
).bind('load', function () {
|
83
|
+
var fileInputClones,
|
84
|
+
paramNames = $.isArray(options.paramName) ?
|
85
|
+
options.paramName : [options.paramName];
|
86
|
+
iframe
|
87
|
+
.unbind('load')
|
88
|
+
.bind('load', function () {
|
89
|
+
var response;
|
90
|
+
// Wrap in a try/catch block to catch exceptions thrown
|
91
|
+
// when trying to access cross-domain iframe contents:
|
92
|
+
try {
|
93
|
+
response = iframe.contents();
|
94
|
+
// Google Chrome and Firefox do not throw an
|
95
|
+
// exception when calling iframe.contents() on
|
96
|
+
// cross-domain requests, so we unify the response:
|
97
|
+
if (!response.length || !response[0].firstChild) {
|
98
|
+
throw new Error();
|
99
|
+
}
|
100
|
+
} catch (e) {
|
101
|
+
response = undefined;
|
102
|
+
}
|
103
|
+
// The complete callback returns the
|
104
|
+
// iframe content document as response object:
|
105
|
+
completeCallback(
|
106
|
+
200,
|
107
|
+
'success',
|
108
|
+
{'iframe': response}
|
109
|
+
);
|
110
|
+
// Fix for IE endless progress bar activity bug
|
111
|
+
// (happens on form submits to iframe targets):
|
112
|
+
$('<iframe src="' + initialIframeSrc + '"></iframe>')
|
113
|
+
.appendTo(form);
|
114
|
+
window.setTimeout(function () {
|
115
|
+
// Removing the form in a setTimeout call
|
116
|
+
// allows Chrome's developer tools to display
|
117
|
+
// the response result
|
118
|
+
form.remove();
|
119
|
+
}, 0);
|
120
|
+
});
|
121
|
+
form
|
122
|
+
.prop('target', iframe.prop('name'))
|
123
|
+
.prop('action', options.url)
|
124
|
+
.prop('method', options.type);
|
125
|
+
if (options.formData) {
|
126
|
+
$.each(options.formData, function (index, field) {
|
127
|
+
$('<input type="hidden"/>')
|
128
|
+
.prop('name', field.name)
|
129
|
+
.val(field.value)
|
130
|
+
.appendTo(form);
|
131
|
+
});
|
132
|
+
}
|
133
|
+
if (options.fileInput && options.fileInput.length &&
|
134
|
+
options.type === 'POST') {
|
135
|
+
fileInputClones = options.fileInput.clone();
|
136
|
+
// Insert a clone for each file input field:
|
137
|
+
options.fileInput.after(function (index) {
|
138
|
+
return fileInputClones[index];
|
139
|
+
});
|
140
|
+
if (options.paramName) {
|
141
|
+
options.fileInput.each(function (index) {
|
142
|
+
$(this).prop(
|
143
|
+
'name',
|
144
|
+
paramNames[index] || options.paramName
|
145
|
+
);
|
146
|
+
});
|
147
|
+
}
|
148
|
+
// Appending the file input fields to the hidden form
|
149
|
+
// removes them from their original location:
|
150
|
+
form
|
151
|
+
.append(options.fileInput)
|
152
|
+
.prop('enctype', 'multipart/form-data')
|
153
|
+
// enctype must be set as encoding for IE:
|
154
|
+
.prop('encoding', 'multipart/form-data');
|
155
|
+
// Remove the HTML5 form attribute from the input(s):
|
156
|
+
options.fileInput.removeAttr('form');
|
157
|
+
}
|
158
|
+
form.submit();
|
159
|
+
// Insert the file input fields at their original location
|
160
|
+
// by replacing the clones with the originals:
|
161
|
+
if (fileInputClones && fileInputClones.length) {
|
162
|
+
options.fileInput.each(function (index, input) {
|
163
|
+
var clone = $(fileInputClones[index]);
|
164
|
+
// Restore the original name and form properties:
|
165
|
+
$(input)
|
166
|
+
.prop('name', clone.prop('name'))
|
167
|
+
.attr('form', clone.attr('form'));
|
168
|
+
clone.replaceWith(input);
|
169
|
+
});
|
170
|
+
}
|
171
|
+
});
|
172
|
+
form.append(iframe).appendTo(document.body);
|
173
|
+
},
|
174
|
+
abort: function () {
|
175
|
+
if (iframe) {
|
176
|
+
// javascript:false as iframe src aborts the request
|
177
|
+
// and prevents warning popups on HTTPS in IE6.
|
178
|
+
// concat is used to avoid the "Script URL" JSLint error:
|
179
|
+
iframe
|
180
|
+
.unbind('load')
|
181
|
+
.prop('src', initialIframeSrc);
|
182
|
+
}
|
183
|
+
if (form) {
|
184
|
+
form.remove();
|
185
|
+
}
|
186
|
+
}
|
187
|
+
};
|
188
|
+
}
|
189
|
+
});
|
190
|
+
|
191
|
+
// The iframe transport returns the iframe content document as response.
|
192
|
+
// The following adds converters from iframe to text, json, html, xml
|
193
|
+
// and script.
|
194
|
+
// Please note that the Content-Type for JSON responses has to be text/plain
|
195
|
+
// or text/html, if the browser doesn't include application/json in the
|
196
|
+
// Accept header, else IE will show a download dialog.
|
197
|
+
// The Content-Type for XML responses on the other hand has to be always
|
198
|
+
// application/xml or text/xml, so IE properly parses the XML response.
|
199
|
+
// See also
|
200
|
+
// https://github.com/blueimp/jQuery-File-Upload/wiki/Setup#content-type-negotiation
|
201
|
+
$.ajaxSetup({
|
202
|
+
converters: {
|
203
|
+
'iframe text': function (iframe) {
|
204
|
+
return iframe && $(iframe[0].body).text();
|
205
|
+
},
|
206
|
+
'iframe json': function (iframe) {
|
207
|
+
return iframe && jsonAPI[jsonParse]($(iframe[0].body).text());
|
208
|
+
},
|
209
|
+
'iframe html': function (iframe) {
|
210
|
+
return iframe && $(iframe[0].body).html();
|
211
|
+
},
|
212
|
+
'iframe xml': function (iframe) {
|
213
|
+
var xmlDoc = iframe && iframe[0];
|
214
|
+
return xmlDoc && $.isXMLDoc(xmlDoc) ? xmlDoc :
|
215
|
+
$.parseXML((xmlDoc.XMLDocument && xmlDoc.XMLDocument.xml) ||
|
216
|
+
$(xmlDoc.body).html());
|
217
|
+
},
|
218
|
+
'iframe script': function (iframe) {
|
219
|
+
return iframe && $.globalEval($(iframe[0].body).text());
|
220
|
+
}
|
221
|
+
}
|
222
|
+
});
|
223
|
+
|
224
|
+
}));
|