text
stringlengths
14
5.22M
meta
dict
__index_level_0__
int64
0
9.97k
input_ids
sequencelengths
128
128
attention_mask
sequencelengths
128
128
labels
sequencelengths
128
128
Lee Young-ae, a South Korean actress known for her role in the Korean historical drama Dae Jang Geum, knows exactly why people want democracy. Democracy, which led to the collapse of autocratic rule and the release of creativity in her country, helped the so-called Korean wave of popular culture sweep Asia, Lee said in an interview with Ming Pao Daily last month. South Korea had been ruled by political strongmen between the 1960s and 1980s before it began the process of democratization in the 1990s. Lee said creativity and freedom of expression used to be highly suppressed in South Korea and female actresses could not even wear sleeveless clothes to perform. However, after people were allowed to vote for their leader, censorship was abolished and as a result all social disputes and once politically sensitive issues could be used as themes in performances, while people were allowed to watch movies that had been banned from public showing. Such a phenomenon resulting from democratization has helped expand the market and attract tremendous investment into the culture industry, creating a benign circle for the Korean Wave, she said. Asked if she would be worried that the Korean Wave would subside in the future, Lee said "no". It is an unique blending of various factors that can continuously create surprise and would never be outdated, she said.
{ "redpajama_set_name": "RedPajamaC4" }
1,568
[ 128000, 55088, 13566, 12, 6043, 11, 264, 4987, 16526, 24577, 3967, 369, 1077, 3560, 304, 279, 16526, 13970, 20156, 423, 6043, 622, 526, 4323, 372, 11, 8964, 7041, 3249, 1274, 1390, 20095, 627, 33103, 46360, 11, 902, 6197, 311, 279, 18678, 315, 3154, 38341, 6037, 323, 279, 4984, 315, 28697, 304, 1077, 3224, 11, 9087, 279, 779, 19434, 16526, 12330, 315, 5526, 7829, 24021, 13936, 11, 12336, 1071, 304, 459, 7274, 449, 56983, 393, 3524, 13690, 1566, 2305, 627, 26070, 12126, 1047, 1027, 21989, 555, 5054, 3831, 5794, 1990, 279, 220, 5162, 15, 82, 323, 220, 3753, 15, 82, 1603, 433, 6137, 279, 1920, 315, 97167, 2065, 304, 279, 220, 2550, 15, 82, 627, 55088, 1071, 28697, 323, 11542, 315, 7645, 1511, 311, 387, 7701, 56089, 304, 4987 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 55088, 13566, 12, 6043, 11, 264, 4987, 16526, 24577, 3967, 369, 1077, 3560, 304, 279, 16526, 13970, 20156, 423, 6043, 622, 526, 4323, 372, 11, 8964, 7041, 3249, 1274, 1390, 20095, 627, 33103, 46360, 11, 902, 6197, 311, 279, 18678, 315, 3154, 38341, 6037, 323, 279, 4984, 315, 28697, 304, 1077, 3224, 11, 9087, 279, 779, 19434, 16526, 12330, 315, 5526, 7829, 24021, 13936, 11, 12336, 1071, 304, 459, 7274, 449, 56983, 393, 3524, 13690, 1566, 2305, 627, 26070, 12126, 1047, 1027, 21989, 555, 5054, 3831, 5794, 1990, 279, 220, 5162, 15, 82, 323, 220, 3753, 15, 82, 1603, 433, 6137, 279, 1920, 315, 97167, 2065, 304, 279, 220, 2550, 15, 82, 627, 55088, 1071, 28697, 323, 11542, 315, 7645, 1511, 311, 387, 7701, 56089, 304, 4987, -100 ]
Q: Passing a typedef from header to source - C I have the following main.c file: #include <stdio.h> #include <stdlib.h> #include <wctype.h> #include "lista.h" int main(int argc, char *argv[]) { struct nod *root = NULL; root = init(root); return 0; } And lista.h: #ifndef LISTA_H_INCLUDED #define LISTA_H_INCLUDED #include "lista.c" typedef struct nod { int Value; struct nod *Next; }nod; nod* init(nod *); void printList(nod *); #endif // LISTA_H_INCLUDED And finally lista.c which is: #include<stdio.h> #include<conio.h> #include<stdlib.h> #include "lista.h" nod* init(nod *root) { root = NULL; return root; } void printList(nod *root) { //We don't want to change original root node! nod *aux = root; printf("\n=== Printed list =====\n"); while (aux != NULL) { printf(aux->Value); aux = aux->Next; } puts("\n"); } Even after included header file, I'm getting three errors which say: Unknown type name 'nod' How to make that typedef from lista.h to be seen on lista.c? I just can't figure out what is happening here. A: Have a look at your lista.h header file: #ifndef LISTA_H_INCLUDED #define LISTA_H_INCLUDED #include "lista.c" [..] #endif // LISTA_H_INCLUDED You're including lista.c, which you shouldn't do at all. And the error occures, because at that time nod isn't defined yet.
{ "redpajama_set_name": "RedPajamaStackExchange" }
6,859
[ 128000, 48, 25, 77392, 264, 13809, 505, 4342, 311, 2592, 482, 356, 358, 617, 279, 2768, 1925, 522, 1052, 512, 1085, 366, 10558, 870, 397, 1085, 366, 13450, 870, 397, 1085, 366, 86, 17654, 870, 1363, 1085, 330, 33760, 870, 1875, 396, 1925, 1577, 12107, 11, 1181, 353, 6645, 25376, 517, 262, 2080, 16387, 353, 2959, 284, 1808, 280, 262, 3789, 284, 3003, 9387, 629, 262, 471, 220, 15, 280, 633, 3112, 14456, 870, 512, 5645, 28064, 32, 2083, 37178, 198, 1467, 28064, 32, 2083, 37178, 271, 1085, 330, 33760, 522, 1875, 5399, 2080, 16387, 198, 517, 262, 528, 5273, 280, 262, 2080, 16387, 353, 5971, 280, 92, 35666, 401, 35666, 9, 3003, 1471, 347, 28140, 1019, 1194, 861, 1471, 347, 63710, 2730, 443, 28064, 32, 2083, 37178 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 48, 25, 77392, 264, 13809, 505, 4342, 311, 2592, 482, 356, 358, 617, 279, 2768, 1925, 522, 1052, 512, 1085, 366, 10558, 870, 397, 1085, 366, 13450, 870, 397, 1085, 366, 86, 17654, 870, 1363, 1085, 330, 33760, 870, 1875, 396, 1925, 1577, 12107, 11, 1181, 353, 6645, 25376, 517, 262, 2080, 16387, 353, 2959, 284, 1808, 280, 262, 3789, 284, 3003, 9387, 629, 262, 471, 220, 15, 280, 633, 3112, 14456, 870, 512, 5645, 28064, 32, 2083, 37178, 198, 1467, 28064, 32, 2083, 37178, 271, 1085, 330, 33760, 522, 1875, 5399, 2080, 16387, 198, 517, 262, 528, 5273, 280, 262, 2080, 16387, 353, 5971, 280, 92, 35666, 401, 35666, 9, 3003, 1471, 347, 28140, 1019, 1194, 861, 1471, 347, 63710, 2730, 443, 28064, 32, 2083, 37178, -100 ]
My apologies for the recent silence on the Kipi blog. This week has been one of many trials and I would like to take the week as a moment of silence for those affected, traumatized, and hurt by Monday's bombings in the Boston Marathon. Though many of those I know who were in the marathon or near the blast are safe, my heart continually wrenches for those whose lives have been brutally interrupted by the evil acts of others. Let us continue to pray and reach out to those in need of help, and may justice be rightfully carried through. It was evil and I hatred the bombers that fixed this evil act. I live in Boston and my dad was thinking about going to the marathon and viewing it. Thank god I didn't drive. It chances out during the attack, I was receiving my academic writing order by the side of UK Essay Help and one of the persons in there acquired a handset call about it and she was shouting out that something happened at the marathon. Are you lack abilities in academic writing? Are you uninterested in the one's dull tasks? Then essayswriting.Org is what can solve all your troubles, you simply purchase an essay and do your commercial enterprise even as our team is working for you. "write my essay" is now not a problem. We deal with all topics, as our writers have the deep know-how of various styles of technological know-how. Also, they're skilled to deal with all ranges of complexity. Right here you may discover the fine professional Paper Writing Services creator who will manage any venture you have. Thank god I didn't drive. It risks out amid the assault, I was getting my scholastic composition arrange by the side of Buy Assignments Online and one of the people in there procured a handset call about it and she was yelling out that something occurred at the long distance race. Essay Writing Service Help and one of the people in there procured a handset call about it and she was yelling out that something occurred at the long distance race. This post is outstandingly beneficial for us. Best we Pay for Assignment Help might be basic on your writing and do our top notch to deny you of this unattractive weight. Using a section of the recommendations for an unfathomable range moreover! Such an educational post. Blogs are evermore a good treat for those who are remarkably attentive in reading. I am one of them. I have read many blogs of various sites. This blog is literally written on a very helpful topic. 2500+ assignment experts at IrelandAssignmentHelp.com offer all its students with outstanding report writing services ireland services. We have native assignment experts from ireland that will guide you to finish your work appropriately.
{ "redpajama_set_name": "RedPajamaC4" }
7,851
[ 128000, 5159, 73273, 369, 279, 3293, 21847, 389, 279, 735, 92021, 5117, 13, 1115, 2046, 706, 1027, 832, 315, 1690, 19622, 323, 358, 1053, 1093, 311, 1935, 279, 2046, 439, 264, 4545, 315, 21847, 369, 1884, 11754, 11, 99136, 1534, 11, 323, 13194, 555, 7159, 596, 74479, 304, 279, 10406, 51273, 13, 18056, 1690, 315, 1884, 358, 1440, 889, 1051, 304, 279, 45796, 477, 3221, 279, 21327, 527, 6220, 11, 856, 4851, 35611, 60588, 288, 369, 1884, 6832, 6439, 617, 1027, 70287, 37883, 555, 279, 14289, 14385, 315, 3885, 13, 6914, 603, 3136, 311, 24739, 323, 5662, 704, 311, 1884, 304, 1205, 315, 1520, 11, 323, 1253, 12437, 387, 99124, 11953, 1555, 627, 2181, 574, 14289, 323, 358, 35242, 279, 69920, 430, 8521, 420, 14289, 1180, 13, 358 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 5159, 73273, 369, 279, 3293, 21847, 389, 279, 735, 92021, 5117, 13, 1115, 2046, 706, 1027, 832, 315, 1690, 19622, 323, 358, 1053, 1093, 311, 1935, 279, 2046, 439, 264, 4545, 315, 21847, 369, 1884, 11754, 11, 99136, 1534, 11, 323, 13194, 555, 7159, 596, 74479, 304, 279, 10406, 51273, 13, 18056, 1690, 315, 1884, 358, 1440, 889, 1051, 304, 279, 45796, 477, 3221, 279, 21327, 527, 6220, 11, 856, 4851, 35611, 60588, 288, 369, 1884, 6832, 6439, 617, 1027, 70287, 37883, 555, 279, 14289, 14385, 315, 3885, 13, 6914, 603, 3136, 311, 24739, 323, 5662, 704, 311, 1884, 304, 1205, 315, 1520, 11, 323, 1253, 12437, 387, 99124, 11953, 1555, 627, 2181, 574, 14289, 323, 358, 35242, 279, 69920, 430, 8521, 420, 14289, 1180, 13, 358, -100 ]
package org.testobject.kernel.replay.impl; import org.testobject.commons.util.concurrency.Get; import org.testobject.commons.util.concurrency.Sequence; import org.testobject.kernel.inference.input.Framebuffer; /** * * @author enijkamp * */ public interface FramebufferSequence extends Sequence<Framebuffer> { interface Factory { FramebufferSequence create(Get<Framebuffer> framebuffer, long delayMs); } void open(); void close(); }
{ "redpajama_set_name": "RedPajamaGithub" }
3,502
[ 128000, 1757, 1262, 6085, 1735, 32326, 1351, 1387, 15654, 401, 475, 1262, 6085, 1735, 18960, 2013, 2932, 16353, 2283, 280, 475, 1262, 6085, 1735, 18960, 2013, 2932, 16353, 64637, 280, 475, 1262, 6085, 1735, 32326, 1896, 2251, 10252, 37534, 7726, 401, 1784, 353, 720, 353, 571, 3170, 665, 19275, 1141, 198, 1235, 740, 898, 3834, 16722, 7726, 14405, 2289, 29971, 27, 59638, 29, 341, 1602, 60015, 1594, 17367, 341, 2451, 197, 197, 59638, 14405, 1893, 25467, 27, 59638, 29, 74119, 11, 1317, 7781, 22365, 317, 2451, 197, 534, 1602, 4402, 1825, 545, 1602, 4402, 3345, 545, 534, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 1757, 1262, 6085, 1735, 32326, 1351, 1387, 15654, 401, 475, 1262, 6085, 1735, 18960, 2013, 2932, 16353, 2283, 280, 475, 1262, 6085, 1735, 18960, 2013, 2932, 16353, 64637, 280, 475, 1262, 6085, 1735, 32326, 1896, 2251, 10252, 37534, 7726, 401, 1784, 353, 720, 353, 571, 3170, 665, 19275, 1141, 198, 1235, 740, 898, 3834, 16722, 7726, 14405, 2289, 29971, 27, 59638, 29, 341, 1602, 60015, 1594, 17367, 341, 2451, 197, 197, 59638, 14405, 1893, 25467, 27, 59638, 29, 74119, 11, 1317, 7781, 22365, 317, 2451, 197, 534, 1602, 4402, 1825, 545, 1602, 4402, 3345, 545, 534, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100 ]
California Cell Towers Affected by Power Outages 26 Nov California Cell Towers Affected by Power Outages The threat of deadly fires has created power outages that have affected California cell towers. The West Coast of the United States must deal with the Santa Ana and Diablo winds. These winds pose a greater threat of deadly fires that spread quickly due to wind speed. Power companies have taken extreme measures to minimize the threat of fires. However, these measures are also having a negative impact on California cell towers. As fires raged across the state, power companies such as PG&E, tried to combat the threat of increasing fires by cutting off the power supply. Rolling blackouts took the state by surprise. The thought behind the companies' actions was to prevent any unnecessary sparking from lines hitting trees and creating kinder. In theory, this seemed somewhat reasonable to government officials. However, a huge issue quickly arose with the California cell towers. California Cell Towers Are Lacking "Neither California nor the federal government requires cell phone towers to have backup power, even though network service is a critical part of modern life." This means the responsibility of mobile connectivity falls upon the cell phone companies. Some California cell tower sites do indeed have back-up generators, but not all of them, and the ones that do may only run for a few hours. It was not just residents that were affected by the cell tower outages in California. Businesses also faced no communications, business that provided internet and televisions capabilities. In retrospect, Californian residents were cut off in solidarity. With no access to new emergency information and no way to contact 911 or call for help. If a fire was raging up to your backyard, you wouldn't know until you saw the flames… Telecom Steps Up The executives from major telecom companies addressed the Public Utilities Commission of California about its fire-preventing strategies. Companies such as AT&T, T-Mobile, and Verizon had come to make statements about the power outages. The companies were followed by dozens of concerned citizens. At the end of a three-hour question and answer hearing, it seemed that the only thing that was established was that each party blamed the opposing parties, telecom vs. utilities and etcetera. Costs Begin to Pile Up The three-hour hearing had painted a picture of apocalyptic proportions, which was not too far off. A director of the Sonoma County Department of Emergency Management made a terrifying comment. "I literally drove up to the fire that night two hours into it, and I stared at that fire coming down the hill knowing that I could not warn my community, that my community could not receive my phone calls, my cable messages. I could not reach them." The power outages had created chaos. Also, at the hearing, the cost began to pile up. Nearly 90,000 customers were out of mobile services and 1,600 California cell towers were down. In some counties over half the population had lost cell service, leaving these communities at large extremely vulnerable. Sonoma County alone suffered up to $70 million in economic losses. The losses were devastating. Fortunately, last week after the hearing a proposal had arisen. California cell Tower Power Proposal According to a new station in San Francisco, Kron 4, a state senator, Steve Glazer, has generated a new proposal. He has proposed that the state enforces a mandatory 72-hour battery back up on every cell tower throughout California. The cell towers will be powered by the telecom companies that own them, but that is not all. Glazer also proposes that the utility companies should be responsible for providing battery backup for citizens with extreme medical conditions for items such as refrigerated medications and machine functionalities. This proposal will have costs for both sides, but it also has the potential to save lives. If your company is in need of locating cell towers, contact the telecom location-based experts at GeoTel Communications. Author: Valerie Stephen business communications, cable industry, cell towers, Fiber Optic Cable, telecom
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
7,145
[ 128000, 46510, 14299, 68457, 9947, 1599, 555, 7572, 4470, 1154, 198, 1627, 4723, 7188, 14299, 68457, 9947, 1599, 555, 7572, 4470, 1154, 198, 791, 6023, 315, 25114, 27176, 706, 3549, 2410, 704, 1154, 430, 617, 11754, 7188, 2849, 40825, 627, 791, 4410, 16377, 315, 279, 3723, 4273, 2011, 3568, 449, 279, 16376, 33238, 323, 74337, 29592, 13, 4314, 29592, 17477, 264, 7191, 6023, 315, 25114, 27176, 430, 9041, 6288, 4245, 311, 10160, 4732, 13, 7572, 5220, 617, 4529, 14560, 11193, 311, 30437, 279, 6023, 315, 27176, 13, 4452, 11, 1521, 11193, 527, 1101, 3515, 264, 8389, 5536, 389, 7188, 2849, 40825, 627, 2170, 27176, 436, 3359, 4028, 279, 1614, 11, 2410, 5220, 1778, 439, 31144, 69248, 11, 6818, 311, 12896, 279, 6023, 315, 7859, 27176, 555, 14713, 1022 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 46510, 14299, 68457, 9947, 1599, 555, 7572, 4470, 1154, 198, 1627, 4723, 7188, 14299, 68457, 9947, 1599, 555, 7572, 4470, 1154, 198, 791, 6023, 315, 25114, 27176, 706, 3549, 2410, 704, 1154, 430, 617, 11754, 7188, 2849, 40825, 627, 791, 4410, 16377, 315, 279, 3723, 4273, 2011, 3568, 449, 279, 16376, 33238, 323, 74337, 29592, 13, 4314, 29592, 17477, 264, 7191, 6023, 315, 25114, 27176, 430, 9041, 6288, 4245, 311, 10160, 4732, 13, 7572, 5220, 617, 4529, 14560, 11193, 311, 30437, 279, 6023, 315, 27176, 13, 4452, 11, 1521, 11193, 527, 1101, 3515, 264, 8389, 5536, 389, 7188, 2849, 40825, 627, 2170, 27176, 436, 3359, 4028, 279, 1614, 11, 2410, 5220, 1778, 439, 31144, 69248, 11, 6818, 311, 12896, 279, 6023, 315, 7859, 27176, 555, 14713, 1022, -100 ]
In this story, we're heading to the picturesque town of Charlevoix. In an area that's well known for its great skiing opportunities, there's another winter sport that is fast becoming a Michigan tradition. Destination Michigan host Matthew Ozanich was in attendance for this year's Dogman Challenge Fat Bike Race.
{ "redpajama_set_name": "RedPajamaC4" }
5,924
[ 128000, 644, 420, 3446, 11, 584, 2351, 14836, 311, 279, 75001, 6424, 315, 4969, 273, 3415, 953, 13, 763, 459, 3158, 430, 596, 1664, 3967, 369, 1202, 2294, 63117, 10708, 11, 1070, 596, 2500, 12688, 10775, 430, 374, 5043, 10671, 264, 14972, 14135, 13, 42828, 14972, 3552, 19475, 36704, 276, 718, 574, 304, 28116, 369, 420, 1060, 596, 14588, 1543, 26323, 26417, 38930, 24583, 13, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 644, 420, 3446, 11, 584, 2351, 14836, 311, 279, 75001, 6424, 315, 4969, 273, 3415, 953, 13, 763, 459, 3158, 430, 596, 1664, 3967, 369, 1202, 2294, 63117, 10708, 11, 1070, 596, 2500, 12688, 10775, 430, 374, 5043, 10671, 264, 14972, 14135, 13, 42828, 14972, 3552, 19475, 36704, 276, 718, 574, 304, 28116, 369, 420, 1060, 596, 14588, 1543, 26323, 26417, 38930, 24583, 13, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100 ]
Don't forget to check out today's freebie - Mobile Onboarding Screens - an interesting concept design created with Sketch. This project comes with clean design, well organized elements and editable content. Feel free to download and use it in your own projects and presentations.
{ "redpajama_set_name": "RedPajamaC4" }
8,891
[ 128000, 8161, 956, 10894, 311, 1817, 704, 3432, 596, 1949, 22493, 482, 13716, 1952, 38669, 69781, 482, 459, 7185, 7434, 2955, 3549, 449, 39501, 13, 1115, 2447, 4131, 449, 4335, 2955, 11, 1664, 17057, 5540, 323, 38509, 2262, 13, 32833, 1949, 311, 4232, 323, 1005, 433, 304, 701, 1866, 7224, 323, 38480, 13, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 8161, 956, 10894, 311, 1817, 704, 3432, 596, 1949, 22493, 482, 13716, 1952, 38669, 69781, 482, 459, 7185, 7434, 2955, 3549, 449, 39501, 13, 1115, 2447, 4131, 449, 4335, 2955, 11, 1664, 17057, 5540, 323, 38509, 2262, 13, 32833, 1949, 311, 4232, 323, 1005, 433, 304, 701, 1866, 7224, 323, 38480, 13, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100 ]
Франци́ск Ива́нович Ве́нцек (14 сентября 1885, Самарканд — 8 июня 1918, Самара) — один из участников борьбы за установление Советской власти в Самаре. Биография Родился в Самарканде в небогатой польской семье. Родители были сосланы в Среднюю Азию за участие в выступлениях против царского режима. Под влиянием многочисленных политических ссыльных и сам занялся политикой. С 1904 года член ВКП(б), занимался партийной работой в Самарканде, Москве, Харькове, Туле. Был одним из организаторов забастовки на оружейном и патронном заводах в Туле в июне 1915 года. Неоднократно арестовывался. После забастовки был выслан в Калугу, но сбежал в Самару. С конца 1915 года вёл партийную работу в Самаре. Руководил большевистскими кружками на Трубочном заводе и в потребительском обществе «Самопомощь». Активно участвовал в Февральской революции 1917 года, был одним из организаторов и секретарём первого Самарского совета. В Самаре же познакомился с большевичкой С. И. Дерябиной, впоследствии ставшей гражданской женой Венцека. После Октябрьской революции Дерябина была назначена губернским комиссаром по делам печати, а Венцек был избран членом губисполкома, а вскоре и заместителем председателя губисполкома. В январе 1918 года был делегатом 3-го Всероссийского съезда Советов. С 10 апреля 1918 года возглавил Ревтрибунал в Самаре. Гибель В июне 1918 года при наступлении на Самару отрядов чехословацкого корпуса принимал участие в обороне города. Вместе с несколькими десятками красногвардейцев Венцек и завотделом горисполкома И. И. Штыркин держали оборону в одном из зданий города. Когда боеприпасы кончились и защитники решили сдаться Венцек и Штыркин попытались смешаться с толпой. Однако были опознаны местным лавочником Филашевым. Он же стал подстрекать толпу к расправе над пленными, конвоировавшимися чехами. Бывший губернский секретарь Карцев первым подбежал к Венцеку и ударил того камнем в лицо. Следом с булыжником на арестованных напал продавец ювелирных изделий Воронцов. За ними толпа накинулась на арестованных. Как позднее установило следствие, Штыркин был застрелен Филашевым из имевшегося у него револьвера. Кем был застрелен Венцек, установить не удалось, хотя было выяснено, что Карцев также имел при себе оружие. Осенью 1918 года Карцев был арестован, было доказано, что именно его удар стал сигналом к расправе над пленными. Погибшие были похоронены на Всехсвятском кладбище (ныне парк имени Щорса) . Память В 1926 году в Самаре в честь Франциска Ивановича была переименована одна из центральных улиц города. А на доме № 61 по этой улице была установлена мемориальная доска с пояснением её названия. Версии произошедшего После распада СССР, появились различные статьи, в которых излагались иные версии гибели Венцека. Объединяло их одно, во всех этих версиях Венцек объявлялся палачом, садистом, которого растерзала толпа матерей и жён казнённых им самарцев. Однако, несмотря на работу в Ревтрибунале, Венцек не мог выносить смертные приговоры, так как смертная казнь в РСФСР в начале 1918 года была отменена. Примечания Литература Яковлев Н. Н., Ф. И. Венцек (1885—1918), в книге: Борцы революции — Куйбышев, 1956. Липатова А. М. Самарских улиц имена. — Самара, 2008 (2-е издание). Стр. 30-31. Ссылки Большевики Делегаты III Всероссийского съезда Советов Погибшие в Гражданскую войну в России
{ "redpajama_set_name": "RedPajamaWikipedia" }
4,012
[ 128000, 55258, 35682, 15458, 54939, 66144, 43896, 94538, 54939, 47805, 34082, 23784, 1532, 54939, 2156, 10589, 15298, 320, 975, 119388, 220, 9367, 20, 11, 107415, 17721, 4898, 76559, 4194, 2345, 220, 23, 120190, 220, 7529, 23, 11, 107415, 100611, 8, 4194, 2345, 103546, 23934, 105763, 103903, 124357, 103205, 44946, 103699, 56892, 126774, 101469, 112281, 5927, 107415, 17721, 1532, 382, 61432, 1840, 114173, 720, 34604, 9706, 107638, 5927, 107415, 17721, 4898, 76559, 1532, 5927, 104450, 14837, 8131, 16742, 118839, 101469, 104255, 110299, 13, 119329, 111512, 105170, 112154, 106148, 4655, 5927, 125375, 119385, 57855, 104785, 12182, 44946, 124499, 5927, 115112, 62776, 10693, 104863, 121485, 101943, 111030, 1506, 13, 105949, 112701, 113104, 106599, 113001, 118315, 122554, 109270, 5524, 57319, 29118, 44786, 7740, 97185, 107242, 4329, 103285, 122554, 38822, 16742, 382, 19871 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 55258, 35682, 15458, 54939, 66144, 43896, 94538, 54939, 47805, 34082, 23784, 1532, 54939, 2156, 10589, 15298, 320, 975, 119388, 220, 9367, 20, 11, 107415, 17721, 4898, 76559, 4194, 2345, 220, 23, 120190, 220, 7529, 23, 11, 107415, 100611, 8, 4194, 2345, 103546, 23934, 105763, 103903, 124357, 103205, 44946, 103699, 56892, 126774, 101469, 112281, 5927, 107415, 17721, 1532, 382, 61432, 1840, 114173, 720, 34604, 9706, 107638, 5927, 107415, 17721, 4898, 76559, 1532, 5927, 104450, 14837, 8131, 16742, 118839, 101469, 104255, 110299, 13, 119329, 111512, 105170, 112154, 106148, 4655, 5927, 125375, 119385, 57855, 104785, 12182, 44946, 124499, 5927, 115112, 62776, 10693, 104863, 121485, 101943, 111030, 1506, 13, 105949, 112701, 113104, 106599, 113001, 118315, 122554, 109270, 5524, 57319, 29118, 44786, 7740, 97185, 107242, 4329, 103285, 122554, 38822, 16742, 382, 19871, -100 ]
canadian glider replacement cushions best. floor decor pompano beach florida floor decor pompano beach floor decor pompano beach floor decor pompano beach. hay rack planter liners square tapered self watering planter inserts click to enlarge home decor ideas for living room on a budget home library ideas pinterest. 24 inch shadow box shadow box agates shadow box with silver frame with texture inch shadow box. jelly roll cookie sheet jelly roll pan gs stainless steel jelly roll baking pan cookie sheet best quality. hitachi cordless tool kits cordless lithium ion hammer drill impact driver combo kit. mi casa furniture denver colorado beach fl. high heel shoe furniture old world high heel shoe lounge chair. waterproof shower window shade bathroom shade inside out waterproof blinds for shower window canada waterproof blinds for shower window nz. dresser with glass knobs milk glass dresser drawer pulls dresser glass knobs white dresser glass knobs.
{ "redpajama_set_name": "RedPajamaC4" }
4,715
[ 128000, 4919, 10272, 2840, 1814, 14039, 68241, 1888, 627, 31549, 10799, 30584, 857, 78, 11573, 76754, 6558, 10799, 30584, 857, 78, 11573, 6558, 10799, 30584, 857, 78, 11573, 6558, 10799, 30584, 857, 78, 11573, 627, 68412, 30759, 3197, 466, 96474, 9518, 95155, 659, 73841, 3197, 466, 50398, 4299, 311, 53744, 2162, 10799, 6848, 369, 5496, 3130, 389, 264, 8199, 2162, 6875, 6848, 62116, 627, 1187, 17560, 12737, 3830, 12737, 3830, 945, 988, 12737, 3830, 449, 15310, 4124, 449, 10651, 17560, 12737, 3830, 627, 73, 12160, 6638, 12829, 11071, 52441, 6638, 7363, 29181, 25468, 9699, 52441, 6638, 28915, 7363, 12829, 11071, 1888, 4367, 627, 23306, 31464, 23125, 1752, 5507, 32596, 23125, 1752, 57907, 28772, 24354, 31646, 5536, 5696, 23569, 16530, 627, 8318, 25233, 14891, 3453, 424, 1933, 2172, 11573 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 4919, 10272, 2840, 1814, 14039, 68241, 1888, 627, 31549, 10799, 30584, 857, 78, 11573, 76754, 6558, 10799, 30584, 857, 78, 11573, 6558, 10799, 30584, 857, 78, 11573, 6558, 10799, 30584, 857, 78, 11573, 627, 68412, 30759, 3197, 466, 96474, 9518, 95155, 659, 73841, 3197, 466, 50398, 4299, 311, 53744, 2162, 10799, 6848, 369, 5496, 3130, 389, 264, 8199, 2162, 6875, 6848, 62116, 627, 1187, 17560, 12737, 3830, 12737, 3830, 945, 988, 12737, 3830, 449, 15310, 4124, 449, 10651, 17560, 12737, 3830, 627, 73, 12160, 6638, 12829, 11071, 52441, 6638, 7363, 29181, 25468, 9699, 52441, 6638, 28915, 7363, 12829, 11071, 1888, 4367, 627, 23306, 31464, 23125, 1752, 5507, 32596, 23125, 1752, 57907, 28772, 24354, 31646, 5536, 5696, 23569, 16530, 627, 8318, 25233, 14891, 3453, 424, 1933, 2172, 11573, -100 ]
ZAMBIA: Striving together to build the Church January 17, 2018 ▪ Murcadha O Flaherty Formation of marriage and family catechists in Zambia, priest with trained couples in Kabwe Diocese Zambia's Church is flourishing thanks to the zeal of catechists helping dedicated priests – both working together with challenges such as impassable roads in the rainy seasons and no electricity in remote parishes. we act with a spirit of sacrifice and determination Catholic charity, Aid to the Church in Need interviewed Tony Zender, head of ACN's Zambia section about the issues facing the Church there. He said: "When we all strive together to build up the Church, when we act with a spirit of sacrifice and determination, we give a sign that it is we who wish to sustain our Church." He added: "And then the Lord will grant graces to the Church that we would not otherwise have received. And incidentally, the same applies to Europe." The charity is supporting the catechist training centre's two-year training courses in Mansa Diocese situated in the poorest region of the country. Mr Zender described the type of activities the catechists do while they "reside in small individual houses with their families." He said: "In the two-year training, the men are prepared for their service as catechists while the women attend further education courses to equip them to work as educators in the future communities – both in the catechism and in the field of domestic economy, such as tailoring." Speaking of the aid provided by the charity, he said: "we now also support the catechists with bicycles so that they are mobile and can carry out their responsibilities better. "In the future we also want to carry out the renovation of the catechist training centre. We saw the gratitude of the centre's rector and training staff." He added: "In future we hope to not only support the next training course but also to help with the renovation work, because the buildings are in very poor condition." Now the Church needs the help of every one of the faithful Highlighting the value of each lay person's contribution to the Church, he said: "Now the Church needs the help of every one of the faithful." Mr Zender outlined the daily help that the trained catechists are now providing to the faithful. He said: "The priests are often only present in the parishes for a few days per quarter, or sometimes for only a few days in the year, and the catechists perform very good evangelism work in the priests' absence." The catechists are serving as an inspiration for both the faithful as well as priests in Zambia. He added: "They care for the people, and together with their families they also serve as a role model… If, as a priest, one sees their determination to sacrifice themselves for the Church, it is also motivational for some of the priests." Like St Barnabas, the priests are leading by example in Zambia, Mr Zender said: "Something that impressed me again and again was the exemplary way in which some priests perform their service. "Sometimes they live in places where there is no electricity, where perhaps they have to draw running water from a tank, and where sometimes they have to live completely on their own." The priests are serving as models of encouragement to the faithful in Zambia and elsewhere, he added: "To me they are setting an example, in the sense that they are facing up to their situation." The charity is continuing to provide help where the need is greatest in Zambia including in the construction of parochial buildings, provision of motor vehicles, catechist training and spiritual retreats. Aid to the Church in Need – www.acnuk.org contact: [email protected] or call 020 8642 8668 Article first published in The Portal http://www.portalmag.co.uk/ Prayer and Faith
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
4,029
[ 128000, 57, 70300, 5987, 25, 4610, 2299, 3871, 311, 1977, 279, 9441, 198, 33327, 220, 1114, 11, 220, 679, 23, 14860, 103, 15356, 35555, 4317, 507, 3061, 1494, 1368, 198, 60558, 315, 11103, 323, 3070, 59239, 331, 1705, 304, 95104, 11, 28185, 449, 16572, 21961, 304, 41536, 906, 7923, 58744, 198, 57, 53937, 596, 9441, 374, 99359, 9523, 311, 279, 69779, 315, 59239, 331, 1705, 10695, 12514, 42963, 1389, 2225, 3318, 3871, 449, 11774, 1778, 439, 96689, 481, 19795, 304, 279, 63857, 15956, 323, 912, 18200, 304, 8870, 1370, 21168, 627, 906, 1180, 449, 264, 9090, 315, 28235, 323, 26314, 198, 34, 96430, 23693, 11, 38505, 311, 279, 9441, 304, 14998, 30147, 19036, 1901, 1693, 11, 2010, 315, 10807, 45, 596, 95104, 3857, 922, 279, 4819, 13176, 279 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 57, 70300, 5987, 25, 4610, 2299, 3871, 311, 1977, 279, 9441, 198, 33327, 220, 1114, 11, 220, 679, 23, 14860, 103, 15356, 35555, 4317, 507, 3061, 1494, 1368, 198, 60558, 315, 11103, 323, 3070, 59239, 331, 1705, 304, 95104, 11, 28185, 449, 16572, 21961, 304, 41536, 906, 7923, 58744, 198, 57, 53937, 596, 9441, 374, 99359, 9523, 311, 279, 69779, 315, 59239, 331, 1705, 10695, 12514, 42963, 1389, 2225, 3318, 3871, 449, 11774, 1778, 439, 96689, 481, 19795, 304, 279, 63857, 15956, 323, 912, 18200, 304, 8870, 1370, 21168, 627, 906, 1180, 449, 264, 9090, 315, 28235, 323, 26314, 198, 34, 96430, 23693, 11, 38505, 311, 279, 9441, 304, 14998, 30147, 19036, 1901, 1693, 11, 2010, 315, 10807, 45, 596, 95104, 3857, 922, 279, 4819, 13176, 279, -100 ]
The mission of the Royal Oak Public Library is to be an informational, intellectual, cultural and recreational resource for all people; to inspire the spirit, educate the mind, and be a center of community pride. In keeping with this mission, Royal Oak Public Library provides space for the display notices of public interest submitted by groups, organizations, and governmental units engaged in non-profit educational, cultural, intellectual, civic or charitable activities. Only ROPL-approved postings will be permitted. Tracts or other publications placed in the library without prior approval will be removed and discarded. The library reserves the right to determine that a proposed posting meets the guidelines of this policy and to decide the appropriate placement for postings and literature to be distributed. Commercial or partisan political items will not be posted or distributed. Date sensitive items will be posted for 30 days prior to the earliest date indicated on the item, and will be removed and discarded after the latest date has passed. Items that are not date sensitive will be made available for no more than 90 days. Notices and announcements for the bulletin boards must be 8½x14 inches or smaller. A single copy of the announcement or notice will be posted in only one place within the library. Library does not accept notices, announcements or posters with "tear-off" sections. Except for newspapers and magazines, items must be 8½x14 inches or smaller. Materials must be provided in quantities of 5 or more. Adopted by Library Board: 11/26/1996; revised 5/22/01; revised 9/26/06; reaffirmed 05/27/08; 03/24/09; revised 3/23/2010; reviewed 3/22/2011; reaffirmed 06/28/2016.
{ "redpajama_set_name": "RedPajamaC4" }
7,249
[ 128000, 791, 9131, 315, 279, 16591, 18787, 3142, 11896, 374, 311, 387, 459, 47735, 11, 20207, 11, 13042, 323, 37100, 5211, 369, 682, 1274, 26, 311, 31740, 279, 9090, 11, 39170, 279, 4059, 11, 323, 387, 264, 4219, 315, 4029, 22519, 13, 763, 10494, 449, 420, 9131, 11, 16591, 18787, 3142, 11896, 5825, 3634, 369, 279, 3113, 35871, 315, 586, 2802, 14976, 555, 5315, 11, 11351, 11, 323, 52811, 8316, 17045, 304, 2536, 28926, 16627, 11, 13042, 11, 20207, 11, 44973, 477, 48801, 7640, 627, 7456, 12076, 2989, 67362, 75581, 690, 387, 15480, 13, 1183, 11613, 477, 1023, 29085, 9277, 304, 279, 6875, 2085, 4972, 14765, 690, 387, 7108, 323, 44310, 627, 791, 6875, 30600, 279, 1314, 311, 8417, 430, 264, 11223, 17437, 20628, 279, 17959, 315, 420 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 791, 9131, 315, 279, 16591, 18787, 3142, 11896, 374, 311, 387, 459, 47735, 11, 20207, 11, 13042, 323, 37100, 5211, 369, 682, 1274, 26, 311, 31740, 279, 9090, 11, 39170, 279, 4059, 11, 323, 387, 264, 4219, 315, 4029, 22519, 13, 763, 10494, 449, 420, 9131, 11, 16591, 18787, 3142, 11896, 5825, 3634, 369, 279, 3113, 35871, 315, 586, 2802, 14976, 555, 5315, 11, 11351, 11, 323, 52811, 8316, 17045, 304, 2536, 28926, 16627, 11, 13042, 11, 20207, 11, 44973, 477, 48801, 7640, 627, 7456, 12076, 2989, 67362, 75581, 690, 387, 15480, 13, 1183, 11613, 477, 1023, 29085, 9277, 304, 279, 6875, 2085, 4972, 14765, 690, 387, 7108, 323, 44310, 627, 791, 6875, 30600, 279, 1314, 311, 8417, 430, 264, 11223, 17437, 20628, 279, 17959, 315, 420, -100 ]
Resume Cv Template Recent 19 Beautiful Graph Resume Cover Letter Template is just one of the many collections of Sample Resume Reference that we have on this website. We have a lot of Sample Resume Template or Cover Letter Template and any other things concerning in this website. We're not just providing info about , but , you can get a lot more reference to create your Resume and Cover Letter as well. So , don't forget to keep visiting Vcuregistry.org to get the latest update about Sample Resume Format , Cover Letter Sample , Sample Resume Template and more. Resume Cv Template Recent 19 Beautiful Graph Resume Cover Letter Template was posted in May 30, 2018 at 6:40 pm. Resume Cv Template Recent 19 Beautiful Graph Resume Cover Letter Template has viewed by 40 users. Click it and download the Resume Cv Template Recent 19 Beautiful Graph Resume Cover Letter Template. Resume Awards and Certificates, List Of Free Resume Template Download Open Office was posted April 20, 2018 at 7:44 am by Vcuregistry.org . More over List Of Free Resume Template Download Open Office has viewed by 3253 visitor. Resume Awards and Certificates, Top Resume Template For Manager Position was posted May 16, 2018 at 10:40 pm by Vcuregistry.org . More over Top Resume Template For Manager Position has viewed by 3870 visitor. Resume Awards and Certificates, Sample Pdf Free Pdf Resume Templates Download was posted June 9, 2018 at 1:40 am by Vcuregistry.org . More over Sample Pdf Free Pdf Resume Templates Download has viewed by 3620 visitor.
{ "redpajama_set_name": "RedPajamaC4" }
5,700
[ 128000, 29663, 53842, 14692, 35390, 220, 777, 20055, 12441, 34498, 18230, 27757, 14692, 374, 1120, 832, 315, 279, 1690, 15661, 315, 19690, 34498, 17650, 430, 584, 617, 389, 420, 3997, 13, 1226, 617, 264, 2763, 315, 19690, 34498, 14692, 477, 18230, 27757, 14692, 323, 904, 1023, 2574, 18815, 304, 420, 3997, 13, 1226, 2351, 539, 1120, 8405, 3630, 922, 1174, 719, 1174, 499, 649, 636, 264, 2763, 810, 5905, 311, 1893, 701, 34498, 323, 18230, 27757, 439, 1664, 13, 2100, 1174, 1541, 956, 10894, 311, 2567, 17136, 650, 66, 554, 70, 5050, 2726, 311, 636, 279, 5652, 2713, 922, 19690, 34498, 15392, 1174, 18230, 27757, 19690, 1174, 19690, 34498, 14692, 323, 810, 627, 29663, 53842, 14692, 35390, 220, 777, 20055, 12441, 34498, 18230, 27757, 14692, 574, 8621, 304 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 29663, 53842, 14692, 35390, 220, 777, 20055, 12441, 34498, 18230, 27757, 14692, 374, 1120, 832, 315, 279, 1690, 15661, 315, 19690, 34498, 17650, 430, 584, 617, 389, 420, 3997, 13, 1226, 617, 264, 2763, 315, 19690, 34498, 14692, 477, 18230, 27757, 14692, 323, 904, 1023, 2574, 18815, 304, 420, 3997, 13, 1226, 2351, 539, 1120, 8405, 3630, 922, 1174, 719, 1174, 499, 649, 636, 264, 2763, 810, 5905, 311, 1893, 701, 34498, 323, 18230, 27757, 439, 1664, 13, 2100, 1174, 1541, 956, 10894, 311, 2567, 17136, 650, 66, 554, 70, 5050, 2726, 311, 636, 279, 5652, 2713, 922, 19690, 34498, 15392, 1174, 18230, 27757, 19690, 1174, 19690, 34498, 14692, 323, 810, 627, 29663, 53842, 14692, 35390, 220, 777, 20055, 12441, 34498, 18230, 27757, 14692, 574, 8621, 304, -100 ]
Dr. Richard Hawker is a cardiologist at the Children's Hospital at Westmead (Sydney, NSW), and has been traveling to PNG for over twenty years for the purpose of screening and diagnosing children with congenital (birth) defects of the heart. In fact, his voluntary efforts in PNG pre-date Operation Open Heart in the country! Prior to OOH being invited to PNG in the early 1990's, Dr. Hawker screening work identified patients who could travel to Australia for surgery. This is his last planned visit to PNG with the Operation Open Heart team. We, along with the local PNG cardiologists, greatly appreciate his long term commitment and expertise that he has shared, and wish him the very best with his planned retirement shortly. At the welcome function, Dr. Hawker was officially recognised and presented with a token of appreciation by Kathy Johnson (fundraising coordinator of the local OOH committee).
{ "redpajama_set_name": "RedPajamaC4" }
107
[ 128000, 9023, 13, 12131, 12897, 7197, 374, 264, 73151, 16549, 520, 279, 15394, 596, 15429, 520, 4410, 2727, 329, 320, 35767, 19316, 11, 39008, 705, 323, 706, 1027, 21646, 311, 42739, 369, 927, 17510, 1667, 369, 279, 7580, 315, 23061, 323, 13493, 14759, 2911, 449, 83066, 2223, 320, 28813, 8, 42655, 315, 279, 4851, 627, 644, 2144, 11, 813, 37079, 9045, 304, 42739, 864, 18920, 17145, 5377, 18449, 304, 279, 3224, 0, 32499, 311, 507, 47861, 1694, 18719, 311, 42739, 304, 279, 4216, 220, 2550, 15, 596, 11, 2999, 13, 12897, 7197, 23061, 990, 11054, 6978, 889, 1436, 5944, 311, 8494, 369, 15173, 627, 2028, 374, 813, 1566, 13205, 4034, 311, 42739, 449, 279, 17145, 5377, 18449, 2128, 13, 1226, 11, 3235, 449, 279, 2254, 42739, 73151, 22012 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 9023, 13, 12131, 12897, 7197, 374, 264, 73151, 16549, 520, 279, 15394, 596, 15429, 520, 4410, 2727, 329, 320, 35767, 19316, 11, 39008, 705, 323, 706, 1027, 21646, 311, 42739, 369, 927, 17510, 1667, 369, 279, 7580, 315, 23061, 323, 13493, 14759, 2911, 449, 83066, 2223, 320, 28813, 8, 42655, 315, 279, 4851, 627, 644, 2144, 11, 813, 37079, 9045, 304, 42739, 864, 18920, 17145, 5377, 18449, 304, 279, 3224, 0, 32499, 311, 507, 47861, 1694, 18719, 311, 42739, 304, 279, 4216, 220, 2550, 15, 596, 11, 2999, 13, 12897, 7197, 23061, 990, 11054, 6978, 889, 1436, 5944, 311, 8494, 369, 15173, 627, 2028, 374, 813, 1566, 13205, 4034, 311, 42739, 449, 279, 17145, 5377, 18449, 2128, 13, 1226, 11, 3235, 449, 279, 2254, 42739, 73151, 22012, -100 ]
'IRISH' JOE DROPS TWO BOMBS AT BIG M EAST RUTHERFORD, N.J. – With most of the front-line Meadowlands drivers competing on the North America Cup card, Saturday night provided an opportunity for others to shine at the Big M, and none shone brighter than Freehold regular 'Irish' Joe Hanney, who guided a pair of longshots to victory lane. Hanney's first score came in the fifth race, as he guided Village Jackson to a lifetime-best 1:51.1 score in a claiming handicap pace. In his last five starts with claimers, Village Jackson had been no worse than fourth, and this time around, the 11-year-old gelding prevailed at odds of 55-1, topping an Exacta that paid $694.40, a Trifecta that came back $5,275.00 and the 50-Cent Pick-5, which returned a whopping $15,266.00. But he had more damage to do. In the very next race, Hanney was at it again, this time in a pace for horses who had a TrackMaster rating of 80 or less, scoring with In Rock We Trust in a lifetime-best 1:51.1 at odds of 30-1. The Exacta returned $899.40 and Trifecta $3,603.40. Hanney also trains both horses. For Hanney fans who played a $2 win parlay, their return was a handsome $3,636. Delaware-circuit regular Mike Cole also had a driving double on the program, as did Big M regular Andy Miller. Corey Callahan had a second straight superb Saturday by winning four times. Last week, Callahan visited the winner's circle on six occasions. A LITTLE MORE: 20-Cent Jackpot Super High-Five players have much to look forward to Friday night. The fifth race JSH5 failed to result in a single-ticket winner, upping the carryover to $113,204.60. … All-source handle on the 13-race card totaled $2,614,953. … Racing resumes Friday at 7:15 p.m.
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
2,392
[ 128000, 6, 2871, 16849, 6, 10458, 36, 423, 1308, 5119, 47358, 426, 1937, 7497, 7520, 37954, 386, 198, 36, 6483, 432, 1406, 3087, 37, 4373, 11, 452, 3587, 13, 1389, 3161, 1455, 315, 279, 4156, 8614, 89842, 8329, 12050, 27260, 389, 279, 4892, 5270, 11098, 3786, 11, 7884, 3814, 3984, 459, 6776, 369, 3885, 311, 33505, 520, 279, 6295, 386, 11, 323, 7000, 559, 606, 53657, 1109, 3658, 6416, 5912, 364, 49213, 819, 6, 13142, 21296, 3520, 11, 889, 33687, 264, 6857, 315, 1317, 28734, 311, 12845, 21971, 627, 74225, 3520, 596, 1176, 5573, 3782, 304, 279, 18172, 7102, 11, 439, 568, 33687, 25036, 13972, 311, 264, 19569, 57701, 220, 16, 25, 3971, 13, 16, 5573, 304, 264, 21039, 75379, 18338, 13, 763, 813, 1566, 4330, 8638, 449 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 6, 2871, 16849, 6, 10458, 36, 423, 1308, 5119, 47358, 426, 1937, 7497, 7520, 37954, 386, 198, 36, 6483, 432, 1406, 3087, 37, 4373, 11, 452, 3587, 13, 1389, 3161, 1455, 315, 279, 4156, 8614, 89842, 8329, 12050, 27260, 389, 279, 4892, 5270, 11098, 3786, 11, 7884, 3814, 3984, 459, 6776, 369, 3885, 311, 33505, 520, 279, 6295, 386, 11, 323, 7000, 559, 606, 53657, 1109, 3658, 6416, 5912, 364, 49213, 819, 6, 13142, 21296, 3520, 11, 889, 33687, 264, 6857, 315, 1317, 28734, 311, 12845, 21971, 627, 74225, 3520, 596, 1176, 5573, 3782, 304, 279, 18172, 7102, 11, 439, 568, 33687, 25036, 13972, 311, 264, 19569, 57701, 220, 16, 25, 3971, 13, 16, 5573, 304, 264, 21039, 75379, 18338, 13, 763, 813, 1566, 4330, 8638, 449, -100 ]
Q: Exchange Server - link newly created appointment with deleted after accept I'm working on application which synchronize calendar data from exchange server to application database. For this purpose we using the ExchangeService.SyncFolderItems method from EWS managed API. On initial sync we retrieving all appointments from Exchange, save them with UniqueId to database and save sync state for calendar folder from SyncFolderItems method response. For next sync we use saved sync state for SyncFolderItems call. Today I had found that when I accept meeting in Outlook, it returned as deleted on next sync. Also, with this deleted meeting returned new Appointment with new UniqueId value, created from accepted one. The problem is that in application user can add some data to meetings (attach files, link items to each other etc.) and all this actions are local changes, not synchronized to Exchange. Is there any way to detect that newly created appointment were created from deleted one to update UniqueId of meeting instance in application database instead of deleting existing meeting and adding new one?
{ "redpajama_set_name": "RedPajamaStackExchange" }
7,496
[ 128000, 48, 25, 19224, 8588, 482, 2723, 13945, 3549, 18101, 449, 11309, 1306, 4287, 358, 2846, 3318, 389, 3851, 902, 64899, 13470, 828, 505, 9473, 3622, 311, 3851, 4729, 13, 1789, 420, 7580, 584, 1701, 279, 19224, 1898, 93283, 13996, 4451, 1749, 505, 469, 7585, 9152, 5446, 13, 1952, 2926, 13105, 584, 49324, 682, 37256, 505, 19224, 11, 3665, 1124, 449, 29750, 769, 311, 4729, 323, 3665, 13105, 1614, 369, 13470, 8695, 505, 30037, 13996, 4451, 1749, 2077, 13, 1789, 1828, 13105, 584, 1005, 6924, 13105, 1614, 369, 30037, 13996, 4451, 1650, 627, 15724, 358, 1047, 1766, 430, 994, 358, 4287, 6574, 304, 42158, 11, 433, 6052, 439, 11309, 389, 1828, 13105, 13, 7429, 11, 449, 420, 11309, 6574, 6052, 502, 57413, 449, 502, 29750, 769, 907, 11 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 48, 25, 19224, 8588, 482, 2723, 13945, 3549, 18101, 449, 11309, 1306, 4287, 358, 2846, 3318, 389, 3851, 902, 64899, 13470, 828, 505, 9473, 3622, 311, 3851, 4729, 13, 1789, 420, 7580, 584, 1701, 279, 19224, 1898, 93283, 13996, 4451, 1749, 505, 469, 7585, 9152, 5446, 13, 1952, 2926, 13105, 584, 49324, 682, 37256, 505, 19224, 11, 3665, 1124, 449, 29750, 769, 311, 4729, 323, 3665, 13105, 1614, 369, 13470, 8695, 505, 30037, 13996, 4451, 1749, 2077, 13, 1789, 1828, 13105, 584, 1005, 6924, 13105, 1614, 369, 30037, 13996, 4451, 1650, 627, 15724, 358, 1047, 1766, 430, 994, 358, 4287, 6574, 304, 42158, 11, 433, 6052, 439, 11309, 389, 1828, 13105, 13, 7429, 11, 449, 420, 11309, 6574, 6052, 502, 57413, 449, 502, 29750, 769, 907, 11, -100 ]
Review | The Last Invitation, by Darcy Kane Imagine a group of high-powered vigilante women, who go beyond the bounds of the law to exact justice on men who do bad things and elude punishment within the system. In The Last Invitation, frenemies Gabby Fielding and Jessa Hall both get mixed up with this group when Gabby's ex-husband dies from an apparent suicide and Jessa gets invited to join. The Last Invitation is a fun, twisty thriller. The impetus behind the group's formation is unfortunately understandable; the legal system has its limits and for bad men with resources, there are many ways for them to escape justice. I also like how the book delves into the moral complexity of the group's ethos: the legal system is in place for good reasons; what right do people really have to skirt its boundaries? In this novel, the moral question becomes somewhat more black-and-white, at least for me, when it's revealed just how far the group goes to protect its interests. Their selection process for potential new members is pure hazing, possibly even blackmail. They mess with the potential member's life and basically drive them into dire desperation before offering membership in the group — with all the vigilante activities required — as a means to make all their problems go away. It's hinted that potential members who turn them down then become liabilities who must be dealt with, and that level of ruthlessness is chilling for a group the book presumably wants us to sympathize with. It's also hinted that some of the more problematic acts by the group were a result of a member going rogue, but the group itself doesn't seem too fussed about this behaviour. And I think that's why I ended up not enjoying this book as much as I thought I would. Part of me wanted a full-on fun revenge plot that just becomes complicated by particular circumstances, but I found the group a menacing force from the start. The group felt like a one-dimensional villain, which I didn't expect when I started this book, and I wish there'd been more nuance to the work they did. Or even some time spent on making us want to cheer for some of their work, so that the reveal of their ruthlessness has more of an impact. Perhaps that's part of the thrills, where I was meant to root for Jessa and Gabby to win and for the group to fail, right from the beginning, but Jessa and Gabby's storylines felt a bit too disjointed to really suck me into their story as a whole. Gabby started out as a compelling character, but her big and supposedly scandalous secrets were a letdown. I didn't really understand why the group had such a strong hold over her, nor, on the flip side, even why she cared so much about the truth behind her husband's death. The whole drama with her family was a major factor for her decisions, but that plot didn't really go anywhere, and eventually just seemed to fizzle out. Jessa's narrative arc was a bit more compelling, but I was frustrated by how much of her actions felt like they were forced upon her. For example, because the group goes so far in testing their potential future members, Jessa's decision to join the group didn't feel driven so much by her interest in their mission as by her desire to stop her life from going so far down the toilet. Conversely, her desire to break away from the group is interesting because we know the risks she would have to take, but again her agency is somewhat limited because for so much of the story, it's mostly just Gabby trying to get her to leave. The Last Invitation is a solid thriller, with interesting twists and a good pace to keep the pages turning. The characters just fell short for me, and while the concept of a vigilante group of high-powered women is compelling, the execution felt a bit flat. Thank you to Harper Collins Canada for an advance reading copy of this book in exchange for an honest review.
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
2,859
[ 128000, 19997, 765, 578, 8155, 84342, 11, 555, 423, 97479, 46656, 198, 52157, 264, 1912, 315, 1579, 41503, 38494, 5048, 3278, 11, 889, 733, 7953, 279, 14597, 315, 279, 2383, 311, 4839, 12437, 389, 3026, 889, 656, 3958, 2574, 323, 658, 799, 25060, 2949, 279, 1887, 13, 763, 578, 8155, 84342, 11, 47934, 11288, 24664, 1729, 8771, 287, 323, 23908, 64, 11166, 2225, 636, 9709, 709, 449, 420, 1912, 994, 24664, 1729, 596, 506, 2902, 92081, 8898, 505, 459, 10186, 18639, 323, 23908, 64, 5334, 18719, 311, 5249, 627, 791, 8155, 84342, 374, 264, 2523, 11, 27744, 88, 54461, 13, 578, 3242, 64476, 4920, 279, 1912, 596, 18488, 374, 26907, 49839, 26, 279, 5897, 1887, 706, 1202, 13693, 323, 369, 3958, 3026, 449, 5070, 11, 1070, 527, 1690 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 19997, 765, 578, 8155, 84342, 11, 555, 423, 97479, 46656, 198, 52157, 264, 1912, 315, 1579, 41503, 38494, 5048, 3278, 11, 889, 733, 7953, 279, 14597, 315, 279, 2383, 311, 4839, 12437, 389, 3026, 889, 656, 3958, 2574, 323, 658, 799, 25060, 2949, 279, 1887, 13, 763, 578, 8155, 84342, 11, 47934, 11288, 24664, 1729, 8771, 287, 323, 23908, 64, 11166, 2225, 636, 9709, 709, 449, 420, 1912, 994, 24664, 1729, 596, 506, 2902, 92081, 8898, 505, 459, 10186, 18639, 323, 23908, 64, 5334, 18719, 311, 5249, 627, 791, 8155, 84342, 374, 264, 2523, 11, 27744, 88, 54461, 13, 578, 3242, 64476, 4920, 279, 1912, 596, 18488, 374, 26907, 49839, 26, 279, 5897, 1887, 706, 1202, 13693, 323, 369, 3958, 3026, 449, 5070, 11, 1070, 527, 1690, -100 ]
Every year we lose beloved, iconic celebrities, and soberly reflect on their lives. And sometimes when we do, we discover things about those people that we never realized. For more check out 20 Insane Facts About Famous People They Want To Keep Secret and 20 Horrifying Things Celebrities Have Hiding In Their Past.
{ "redpajama_set_name": "RedPajamaC4" }
1,408
[ 128000, 11769, 1060, 584, 9229, 28530, 11, 27373, 40501, 11, 323, 50505, 398, 8881, 389, 872, 6439, 13, 1628, 7170, 994, 584, 656, 11, 584, 7142, 2574, 922, 1884, 1274, 430, 584, 2646, 15393, 627, 2520, 810, 1817, 704, 220, 508, 9925, 2194, 46083, 10180, 67888, 9029, 2435, 24133, 2057, 13969, 8769, 323, 220, 508, 15083, 81, 7922, 20695, 23519, 35795, 12522, 473, 6714, 763, 11205, 24561, 13, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 11769, 1060, 584, 9229, 28530, 11, 27373, 40501, 11, 323, 50505, 398, 8881, 389, 872, 6439, 13, 1628, 7170, 994, 584, 656, 11, 584, 7142, 2574, 922, 1884, 1274, 430, 584, 2646, 15393, 627, 2520, 810, 1817, 704, 220, 508, 9925, 2194, 46083, 10180, 67888, 9029, 2435, 24133, 2057, 13969, 8769, 323, 220, 508, 15083, 81, 7922, 20695, 23519, 35795, 12522, 473, 6714, 763, 11205, 24561, 13, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100 ]
Alison Muckle, B.A. is a Senior Research Analyst in the Health Care Department at NORC. She has experience in health information technology (health IT) research, program and policy evaluation, and quantitative and qualitative research methods. Currently, Muckle provides research support in the areas of study design, instrument development, qualitative methods and data analysis for a range of program evaluations and projects focused on health IT. Muckle serves as technical lead for the evaluation of the ONC Strategic Health IT Advanced Research Projects (SHARP) Program, which supports innovative collaborative research in four critical areas. She has a strong interest in open source healthcare technologies, and her previous work includes development of content for HRSA's open source EHR toolbox for health centers. Additionally, she recently helped develop an ONC-funded Study and Report on Open Source Health IT Systems, for which she contributed to an environmental scan, conducted site visit discussions and collaborated with experts and leaders in open source. Muckle graduated from American University with honors in Psychology.
{ "redpajama_set_name": "RedPajamaC4" }
2,012
[ 128000, 2149, 3416, 386, 57075, 11, 426, 885, 13, 374, 264, 19903, 8483, 41570, 304, 279, 6401, 10852, 6011, 520, 70188, 34, 13, 3005, 706, 3217, 304, 2890, 2038, 5557, 320, 12393, 8871, 8, 3495, 11, 2068, 323, 4947, 16865, 11, 323, 47616, 323, 62129, 3495, 5528, 13, 25122, 11, 386, 57075, 5825, 3495, 1862, 304, 279, 5789, 315, 4007, 2955, 11, 14473, 4500, 11, 62129, 5528, 323, 828, 6492, 369, 264, 2134, 315, 2068, 56181, 323, 7224, 10968, 389, 2890, 8871, 13, 386, 57075, 17482, 439, 11156, 3063, 369, 279, 16865, 315, 279, 6328, 34, 46661, 6401, 8871, 21844, 8483, 32323, 320, 8758, 43893, 8, 6826, 11, 902, 11815, 18699, 40806, 3495, 304, 3116, 9200, 5789, 13, 3005, 706, 264, 3831, 2802, 304, 1825, 2592, 18985, 14645 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2149, 3416, 386, 57075, 11, 426, 885, 13, 374, 264, 19903, 8483, 41570, 304, 279, 6401, 10852, 6011, 520, 70188, 34, 13, 3005, 706, 3217, 304, 2890, 2038, 5557, 320, 12393, 8871, 8, 3495, 11, 2068, 323, 4947, 16865, 11, 323, 47616, 323, 62129, 3495, 5528, 13, 25122, 11, 386, 57075, 5825, 3495, 1862, 304, 279, 5789, 315, 4007, 2955, 11, 14473, 4500, 11, 62129, 5528, 323, 828, 6492, 369, 264, 2134, 315, 2068, 56181, 323, 7224, 10968, 389, 2890, 8871, 13, 386, 57075, 17482, 439, 11156, 3063, 369, 279, 16865, 315, 279, 6328, 34, 46661, 6401, 8871, 21844, 8483, 32323, 320, 8758, 43893, 8, 6826, 11, 902, 11815, 18699, 40806, 3495, 304, 3116, 9200, 5789, 13, 3005, 706, 264, 3831, 2802, 304, 1825, 2592, 18985, 14645, -100 ]
2022 Carson All-County Scholars Published 12:00 am Thursday, May 26, 2022 By Carl Blankenship Carson All-County Scholars, from left: Abby Grace Lee, Carys McKenna Roberson, Addisyn Elizabeth Keen and Brynn Louise Sokolowski. Addisyn Elizabeth Keen What are your parents' names? My father's name is Michael Keen and my mother's name is Laura Keen. Where will you attend college and what is your expected major? I will be attending Appalachian State University and my expected major in biology, with a possible concentration in cellular biology. What is your career goal? After graduating with a bachelor's degree in biology or cellular biology I plan on attending graduate school. My goal is to pursue a career in biotechnology research. What are some activities you do outside of school? Outside of school I participate in numerous activities, piano being my primary focus. For over 10 years I have taken piano lessons, participated in the North Carolina Music Teachers Association Piano Performance Festival, and received highest honors in the National Guild Competition. In addition to my commitment to piano, I also hold a barista position at Starbucks, volunteer at the Rowan Helping Ministries and participate in my school's Key Club. What is your defining moment? My defining moment was my experience at the 2021 session of N.C. Governor's School. Governor's School was an opportunity to interact with a diverse mix of students that allowed me to hear from numerous backgrounds, identities and viewpoints. The lessons learned and relationships formed at Governors's School continue to have an impact on me to this day. What is your secret to success in high school? My secret to success in high school is finding a healthy balance between school and self care. From numerous experiences I have found that giving school priority over anything else does not work well for me, as I end up burning myself out and significantly impacting my mental health. Instead, finding a good balance of school and time to take care of myself has helped me feel my best and stay motivated on my school work. Abby Grace Lee Matthew and Brenda Lee I will be attending Liberty University and majoring in nursing. I hope to become a pediatric nurse practitioner and provide medical assistance to impoverished or rural areas overseas. Have you lettered in any sports and do you hold any leadership positions? I am a secretary for Interact Club. I am a part of the orchestra after school for the spring musical. There has not been a particularly defining moment in my life. However, my teachers, friends and family have shaped me into the individual I am today. My key to success in high school is to take advantage of dual enrollment classes to get ahead for college. Carys McKenna Roberson George and Jennifer Roberson I will be attending North Carolina State University in the fall. I am planning to major in business administration. I hope to become a small business owner with a focus on sustainability. I am vice president of the JCHS Key Club and involved in the founding of the JCHS school-wide recycling program. I was a 2021 junior marshal. I'm also a member of the National Honor Society, JCHS Interact Club and Crosby Scholars. I have danced at Cabarrus Dance Academy for 15 years and am a member of the studio's Ballet Company performing group. I work at the Spice and Tea Exchange of Kannapolis and for Vintage Concord at The Depot at Gibson Mill. Being admitted to N.C. State and being invited to join the University Honors and Scholars Program was a thrilling moment for me. Organization, hard work and determination were key to my success in high school. Brynn Louise Sokolowski ​​My parents are Doug and Brenda Sokolowski. I will attend college at UNC-Chapel Hill and major in nursing. My career goal is to become a nurse practitioner. I have lettered in cross country, indoor track and outdoor track. I was captain of the women's cross country team and student body president. Outside of school, I am a member of National Honors Society, Crosby Scholars, Student Council, Orange and Blue Crew, and I also serve as a student advisor on the State Superintendent's Student Advisory Council. My defining moment is making the all-county cross country team my senior year, even when I thought it was an impossible goal. My secret to success in high school is finding something that you love and sticking with it. About Carl Blankenship Carl Blankenship has covered education for the Post since December 2019. Before coming to Salisbury he was a staff writer for The Avery Journal-Times in Newland and graduated from Appalachian State University in 2017, where he was editor of The Appalachian. More by Carl More Local First confirmed case: Avian flu detected in emu in Rowan Community Bridge Project to discuss Kannapolis housing issues Feb. 7
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
3,942
[ 128000, 2366, 17, 41276, 2052, 12, 69994, 99394, 198, 29986, 220, 717, 25, 410, 1097, 7950, 11, 3297, 220, 1627, 11, 220, 2366, 17, 198, 1383, 22770, 43541, 729, 2200, 198, 9028, 942, 2052, 12, 69994, 99394, 11, 505, 2163, 25, 85548, 32171, 12336, 11, 92664, 82, 26718, 15299, 4997, 1293, 11, 2758, 285, 1910, 21393, 6706, 268, 323, 19803, 7521, 56578, 111504, 29384, 627, 2261, 285, 1910, 21393, 6706, 268, 198, 3923, 527, 701, 6699, 6, 5144, 5380, 5159, 7126, 596, 836, 374, 8096, 6706, 268, 323, 856, 6691, 596, 836, 374, 30928, 6706, 268, 627, 9241, 690, 499, 9604, 7926, 323, 1148, 374, 701, 3685, 3682, 5380, 40, 690, 387, 24096, 99027, 3314, 3907, 323, 856, 3685, 3682, 304, 34458, 11, 449, 264, 3284, 20545, 304 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2366, 17, 41276, 2052, 12, 69994, 99394, 198, 29986, 220, 717, 25, 410, 1097, 7950, 11, 3297, 220, 1627, 11, 220, 2366, 17, 198, 1383, 22770, 43541, 729, 2200, 198, 9028, 942, 2052, 12, 69994, 99394, 11, 505, 2163, 25, 85548, 32171, 12336, 11, 92664, 82, 26718, 15299, 4997, 1293, 11, 2758, 285, 1910, 21393, 6706, 268, 323, 19803, 7521, 56578, 111504, 29384, 627, 2261, 285, 1910, 21393, 6706, 268, 198, 3923, 527, 701, 6699, 6, 5144, 5380, 5159, 7126, 596, 836, 374, 8096, 6706, 268, 323, 856, 6691, 596, 836, 374, 30928, 6706, 268, 627, 9241, 690, 499, 9604, 7926, 323, 1148, 374, 701, 3685, 3682, 5380, 40, 690, 387, 24096, 99027, 3314, 3907, 323, 856, 3685, 3682, 304, 34458, 11, 449, 264, 3284, 20545, 304, -100 ]
Ashli Babbitt: Trump supporter shot dead in Capitol was Air Force veteran The woman shot and killed by police as protesters stormed the US Capitol has been named as 35-year-old Air Force veteran Ashli Babbitt. She served four tours of duty during her 14 years in the Air Force and was from San Diego, her husband Aaron told KUSI TV. He said she was a strong supporter of President Trump. "I'm numb. I'm devastated. Nobody from DC notified my son and we found out on TV," her mother-in-law, Robin Babbitt, told the New York Post. Her brother-in-law, Justin Jackson, told NBC 7 he had been in contact with Washington police, but said they didn't tell him exactly what had led to the shooting. He said: "Ashli was both loyal as well as extremely passionate about what she believed in. She loved this country and felt honoured to have served in our Armed Forces. Please keep her family in your thoughts and respect their privacy during this time." Ms Babbitt was shot dead on Wednesday as she and other protesters stormed the Capitol building to disrupt the formal confirmation of Joe Biden's win in the presidential election. She was shot by a plain-clothed police officer after breaching the building and attempting to enter the House chamber, said Washington Police Chief Robert Contee. Watch: World leaders react to storming of US Capitol The shooting is being investigated by the force's internal affairs unit, which is responsible for investigating deaths involving officers. Riot at US Capitol live: Congress formally confirms Biden victory - as four dead during riot A fellow Trump supporter, who witnessed the shooting, told WUSA 9: "A number of police and secret service were saying 'get back, get down, get out of the way'. "She didn't heed the call and as we kind of raced up to grab people and pull them back they shot her in the neck and she fell back on me. "And she started to say 'it's fine, it's cool' and then she started kinda moving weird and blood was coming out of her mouth and neck and nose and I don't know if she's alive or dead any more." He added: "I'm not injured... it could have been me, but she went in first." Washington police confirmed another three people - a woman and two men - died during the violence from "medical emergencies". Ms Babbitt went by the Twitter handle CommonAshSense. The day before Wednesday's protest, she tweeted: "Nothing will stop us....they can try and try and try but the storm is here and it is descending upon DC in less than 24 hours....dark to light!" She had also recently retweeted several pro-Trump messages, including a video by the president urging supporters to join the Washington march. Responding to a tweet on Monday by conservative author Melissa Tate saying "Landing in DC. Here to do God's work. Save the Republic #StopTheSteaI", Ms Babbitt replied: "I will be there tomorrow! Gods speed!" According to her Facebook page, she owned and ran a business, Fowlers Pool Service and Supply, with her husband. Watch: Joe Biden demands Donald Trump 'steps up' as Republican calls for him to quit Julian Sands' hiking partner 'remaining hopeful' of actor's safe return Searches for Sands have passed the two-week mark, after he was first reported missing on January 13. Woman told she had anxiety diagnosed with life-threatening condition Jade Cooke, 35, used to do yoga five times a week and knew something was wrong when she stated to get extremely breathless See the top secondary schools in Bradford district - full list These are the highest rated secondary schools in the Bradford district - including Ilkley and Keighley - according to Ofsted's list of 'Outstanding' schools News Shopper Barclays confirms closure of south east London bank branch only used by 35 bankers Barclays has confirmed the permanent closure of its bank branch in Chislehurst. Car 'Disabled' After Attempting to Enter Camp Pendleton, Officials Say A vehicle attempted to gain unauthorized access to Camp Pendleton in Oceanside, California, one of the largest Marine Corps bases in the United States, on the evening of Friday, January 27, the base said.The Camp Pendleton press office said the attempt was made at around 6:30 pm, and the Marshall Office deployed "final denial barriers," and disabled the vehicle.Video shows a car burning at a security barrier at Camp Pendleton main gate, which was temporarily closed.Local media reported everyone in the car was taken to the Palomar hospital in Escondido. Credit: NotInRegz via Storyful Johnson 'was told to stop seeking advice on financial matters from Sharp' Boris Johnson was warned by officials to stop discussing his financial arrangements with Richard Sharp, who was due to be announced as BBC chairman. Nadhim Zahawi sacked as Tory chairman amid tax affairs row Nadhim Zahawi has been sacked as Tory party chairman after a tax row. Oxford Mail Judge in disbelief as 'vomiting' burglar leaves court before hearing Ben Miller, Torrin-Amar Forbes and Connor Wyatt were due at Oxford Crown Court Mark Hix's top meals from his world travels I often get asked to name my favourite meals from my trips around the world. I've eaten lots and forgotten a great many, but I do remember the good ones – especially if I've recreated them and added them to the recipe bank on my iPad. That's the useful thing about food writing. The 'levelling up' bidding process wastes time and money – here's how to improve it Preparing a bid for such funding can cost project hopefuls up to £30,000.
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
1,915
[ 128000, 53856, 747, 426, 12806, 1468, 25, 3420, 37563, 6689, 5710, 304, 32633, 574, 6690, 11994, 21487, 198, 791, 5333, 6689, 323, 7577, 555, 4379, 439, 26827, 86087, 279, 2326, 32633, 706, 1027, 7086, 439, 220, 1758, 4771, 6418, 6690, 11994, 21487, 14937, 747, 426, 12806, 1468, 627, 8100, 10434, 3116, 31261, 315, 14523, 2391, 1077, 220, 975, 1667, 304, 279, 6690, 11994, 323, 574, 505, 5960, 18842, 11, 1077, 10177, 26757, 3309, 735, 2078, 40, 6007, 627, 1548, 1071, 1364, 574, 264, 3831, 37563, 315, 4900, 3420, 627, 7189, 2846, 57371, 13, 358, 2846, 59097, 13, 37558, 505, 11162, 30316, 856, 4538, 323, 584, 1766, 704, 389, 6007, 1359, 1077, 6691, 3502, 31412, 11, 17582, 426, 12806, 1468, 11, 3309, 279, 1561, 4356, 3962, 627, 21364, 10868 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 53856, 747, 426, 12806, 1468, 25, 3420, 37563, 6689, 5710, 304, 32633, 574, 6690, 11994, 21487, 198, 791, 5333, 6689, 323, 7577, 555, 4379, 439, 26827, 86087, 279, 2326, 32633, 706, 1027, 7086, 439, 220, 1758, 4771, 6418, 6690, 11994, 21487, 14937, 747, 426, 12806, 1468, 627, 8100, 10434, 3116, 31261, 315, 14523, 2391, 1077, 220, 975, 1667, 304, 279, 6690, 11994, 323, 574, 505, 5960, 18842, 11, 1077, 10177, 26757, 3309, 735, 2078, 40, 6007, 627, 1548, 1071, 1364, 574, 264, 3831, 37563, 315, 4900, 3420, 627, 7189, 2846, 57371, 13, 358, 2846, 59097, 13, 37558, 505, 11162, 30316, 856, 4538, 323, 584, 1766, 704, 389, 6007, 1359, 1077, 6691, 3502, 31412, 11, 17582, 426, 12806, 1468, 11, 3309, 279, 1561, 4356, 3962, 627, 21364, 10868, -100 ]
Colleagues, Please find link to article below in Federal Telemedicine News on the details related to implementing the emerging Million Veterans Program (MVP) personalized genomic medicine program ... ENJOY! Conrad ClyburnCommunity DevelopmentOSEHRA (Open Source EHR Agent), [email protected](571) 858-3205(301) 404-9128 (cell)---------------------------------------------- Saturday, January 21, 2012MVP's Vast Amount of Data The amount of data to be collected through the Veterans Administration's "Million Veteran Program" (MVP) is enormous. The MVP program launched earlier this year with 15,000 veterans enrolled is on target to build the world's largest database of health and genetic information according to the VA publication "VA Research Currents". Genetically speaking, each person's cells carry within them some 3.2 billion bits of data since many pairs of nucleotides or chemical bases are in the human genome. This figure represents tens of thousands of protein-coding genes, plus large amounts of other DNA. The scientists are trying to determine the precise role for just one stretch of DNA versus another stretch of DNA. There are countless possible variants that could affect health, and scientists have yet to learn about most of them.
{ "redpajama_set_name": "RedPajamaC4" }
1,862
[ 128000, 6255, 273, 13796, 11, 5321, 1505, 2723, 311, 4652, 3770, 304, 12411, 13875, 83543, 5513, 389, 279, 3649, 5552, 311, 25976, 279, 24084, 34629, 40432, 6826, 320, 44, 13683, 8, 35649, 81064, 16088, 2068, 2564, 5301, 27237, 56, 0, 77089, 69388, 22464, 34868, 11050, 76734, 39, 5726, 320, 5109, 8922, 469, 17526, 21372, 705, 4953, 522, 398, 22464, 66, 31, 974, 73010, 2726, 7, 22005, 8, 220, 23805, 12, 9588, 20, 7, 12405, 8, 220, 7507, 12, 22750, 23, 320, 5997, 8, 1434, 43191, 7884, 11, 6186, 220, 1691, 11, 220, 679, 17, 44, 13683, 596, 650, 561, 26868, 315, 2956, 578, 3392, 315, 828, 311, 387, 14890, 1555, 279, 40432, 17128, 596, 330, 12608, 290, 68626, 6826, 1, 320, 44, 13683, 8, 374, 23205, 13, 578 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 6255, 273, 13796, 11, 5321, 1505, 2723, 311, 4652, 3770, 304, 12411, 13875, 83543, 5513, 389, 279, 3649, 5552, 311, 25976, 279, 24084, 34629, 40432, 6826, 320, 44, 13683, 8, 35649, 81064, 16088, 2068, 2564, 5301, 27237, 56, 0, 77089, 69388, 22464, 34868, 11050, 76734, 39, 5726, 320, 5109, 8922, 469, 17526, 21372, 705, 4953, 522, 398, 22464, 66, 31, 974, 73010, 2726, 7, 22005, 8, 220, 23805, 12, 9588, 20, 7, 12405, 8, 220, 7507, 12, 22750, 23, 320, 5997, 8, 1434, 43191, 7884, 11, 6186, 220, 1691, 11, 220, 679, 17, 44, 13683, 596, 650, 561, 26868, 315, 2956, 578, 3392, 315, 828, 311, 387, 14890, 1555, 279, 40432, 17128, 596, 330, 12608, 290, 68626, 6826, 1, 320, 44, 13683, 8, 374, 23205, 13, 578, -100 ]
BURLINGTON—The Osage City Indians track team placed second overall at the Burlington Invitational May 5, finishing 17 points behind Olpe. BURLINGAME—The Burlingame Bearcats won their home meet Monday with 120 team points, edging West Franklin by just 8 points. The Lady Bearcats were also first, winning with 104 team points. TOPEKA—Lyndon took some of its top athletes to the Bob Camien/Claudia Welch Invitational May 1 at Seaman High School in Topeka. OSAGE CITY—A single stroke separated the top three golfers at the Osage City Invitational April 16 at Osage City Municipal Golf Course. Osage City's Duncan Fort finished at 79, one shot behind Paul Steinke, Rossville, who won the tournament at 78. Fort tied Connor Mickens, Jefferson West, at 79, losing a scorecard playoff to finish third. Santa Fe Trail edged Osage City in the team results, leading county teams with a 379 four-man score. Osage City took sixth with a 296, and Lyndon was eight at 402. Features write-ups, schedules and team photos on the baseball, softball, track and golf high school teams from Burlingame, Lyndon, Marais des Cygnes Valley, Osage City and Santa Fe Trail High Schools (available to subscribers). The Osage City powerlifting team traveled to compete at the Class 3A State Meet March 28 at Conway Springs. State placers are, from left – Zachary Irvin, Brady Ogle, Travis Gustafson, Dalton VanSickle and Jordan Lamond. VanSickle was first in clean, first in squat and first overall in the men's 114-pound division; Ogle placed third in squat and sixth overall at 123 pounds; Gustafson was fifth overall in the men's power division; Irvin was third in clean at 132 pounds; and Lamond was second in clean at 181 pounds. CARBONDALE—Opening day at Carbondale's Jones Park featured a pair of Osage County teams, with the Santa Fe Trail Lady Chargers sweeping a double header against the Osage City Lady Indians March 26 at home. The Lady Chargers opened the night with a close 4-2 win. Kelsey Simmons pitched 7 innings with 3 hits, 2 earned runs, 2 walks and 12 strikeouts. Candace Roberts and Savannah Hinck each had a single and an RBI; Simmons had an RBI and Savannah Lankton had a single. OVERBROOK—The Santa Fe Trail Chargers hosted the Osage City Indians March 26 in Overbrook, for the first games of the spring, with each team taking a win from the doubleheader. Osage City came out on top in the first game behind the pitching of senior Jake Butterfield who threw a no hitter with 8 strikeouts and 3 walks in 86 pitches. HUTCHINSON—The Osage City Indians stayed hot on the heels of Wellsville's Eagles in the first-round of the Class 3A State Tournament in Hutchinson. Osage City made several runs to cut the lead to a possession, but exceptional shooting propelled the Eagles to a 59-51 win, ending the Indians season. "Bottom line, the reason we lost that game is Wellsville flat shot the ball and made tons of threes," said Osage City Coach Dennis Fort.
{ "redpajama_set_name": "RedPajamaC4" }
7,336
[ 128000, 33, 3222, 39649, 2345, 791, 15796, 425, 4409, 30507, 3839, 2128, 9277, 2132, 8244, 520, 279, 73605, 19337, 50924, 3297, 220, 20, 11, 25270, 220, 1114, 3585, 4920, 12225, 375, 627, 33, 3222, 1753, 2797, 2345, 791, 62433, 287, 373, 24941, 38552, 2834, 872, 2162, 3449, 7159, 449, 220, 4364, 2128, 3585, 11, 1608, 3252, 4410, 19372, 555, 1120, 220, 23, 3585, 13, 578, 21270, 24941, 38552, 1051, 1101, 1176, 11, 11230, 449, 220, 6849, 2128, 3585, 627, 5319, 1777, 27542, 2345, 48412, 86452, 3952, 1063, 315, 1202, 1948, 23579, 311, 279, 14596, 8215, 3675, 11547, 4355, 664, 689, 85263, 19337, 50924, 3297, 220, 16, 520, 1369, 13005, 5234, 6150, 304, 2057, 375, 4657, 627, 3204, 3669, 47652, 2345, 32, 3254, 12943, 19180, 279, 1948, 2380, 19665 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 33, 3222, 39649, 2345, 791, 15796, 425, 4409, 30507, 3839, 2128, 9277, 2132, 8244, 520, 279, 73605, 19337, 50924, 3297, 220, 20, 11, 25270, 220, 1114, 3585, 4920, 12225, 375, 627, 33, 3222, 1753, 2797, 2345, 791, 62433, 287, 373, 24941, 38552, 2834, 872, 2162, 3449, 7159, 449, 220, 4364, 2128, 3585, 11, 1608, 3252, 4410, 19372, 555, 1120, 220, 23, 3585, 13, 578, 21270, 24941, 38552, 1051, 1101, 1176, 11, 11230, 449, 220, 6849, 2128, 3585, 627, 5319, 1777, 27542, 2345, 48412, 86452, 3952, 1063, 315, 1202, 1948, 23579, 311, 279, 14596, 8215, 3675, 11547, 4355, 664, 689, 85263, 19337, 50924, 3297, 220, 16, 520, 1369, 13005, 5234, 6150, 304, 2057, 375, 4657, 627, 3204, 3669, 47652, 2345, 32, 3254, 12943, 19180, 279, 1948, 2380, 19665, -100 ]
According to Fulton's weather observer, the area received no precipitation on April 1. The monthly total is zero. The total for the year is 10.58 inches. Fulton received no snow on April 1. For the winter the total remains 108.0 inches.
{ "redpajama_set_name": "RedPajamaC4" }
6,475
[ 128000, 11439, 311, 89984, 596, 9282, 22842, 11, 279, 3158, 4036, 912, 61050, 389, 5936, 220, 16, 627, 791, 15438, 2860, 374, 7315, 627, 791, 2860, 369, 279, 1060, 374, 220, 605, 13, 2970, 15271, 627, 37, 76576, 4036, 912, 12056, 389, 5936, 220, 16, 627, 2520, 279, 12688, 279, 2860, 8625, 220, 6640, 13, 15, 15271, 13, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 11439, 311, 89984, 596, 9282, 22842, 11, 279, 3158, 4036, 912, 61050, 389, 5936, 220, 16, 627, 791, 15438, 2860, 374, 7315, 627, 791, 2860, 369, 279, 1060, 374, 220, 605, 13, 2970, 15271, 627, 37, 76576, 4036, 912, 12056, 389, 5936, 220, 16, 627, 2520, 279, 12688, 279, 2860, 8625, 220, 6640, 13, 15, 15271, 13, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100 ]
Israel was in a constant state of needing saved from their own mistakes. It's the story of the Judges. And it's the story of my own heart, too. If I let myself get sloppy and don't follow His ways carefully, wholeheartedly, I will find myself broken yet again. Broken leads to more broken. It's the story of mankind. But God uses the brokenness of His children to usher in repentance, and pull us to the His heart of compassion. Straight through to His deliverance. But the people cried out to Him, distressed and ruined. We know we've done wrong. Now save us again! Pleeeease!!! God wouldn't be convinced by the mere sound of their words. I read this and wonder if the children of Israel were just playing the game. They'd grown accustomed to the rhythm of turning to other gods before falling into God's punishment. Then they would cry to Him for help until finally He saved them yet again. I think God was privy to their game and wanted to free them from the cycle the Israelites were all tangled up in. So He waited for them to acknowledge the truth. It wasn't just that they had sinned, yet again. It was that they were at the mercy of God Almighty, the One Who had chosen them, set them apart, entered into intimate covenant with. I think He wanted them to realize and proclaim the truth that He alone had total reign over every part of every battle. Not their words of repentance. Or their cries for help. We have sinned; do to us whatever seems good to you. Only please deliver us this day. And the children of Israel put away their foreign gods and served the LORD with their hearts as well as with their words. Almost as if they went from telling God they knew they screwed up to proclaiming the truth that He was the One in charge, and He did not owe them anything. It's the difference between confessing and repenting. The difference between words and action. The truth is, we are all completely at his mercy. It's just easier to see in the Israelites' mistakes thousands of years ago than it is to see in our own right now.
{ "redpajama_set_name": "RedPajamaC4" }
8,791
[ 128000, 34627, 574, 304, 264, 6926, 1614, 315, 33921, 6924, 505, 872, 1866, 21294, 627, 2181, 596, 279, 3446, 315, 279, 86955, 13, 1628, 433, 596, 279, 3446, 315, 856, 1866, 4851, 11, 2288, 627, 2746, 358, 1095, 7182, 636, 75082, 323, 1541, 956, 1833, 5414, 5627, 15884, 11, 4459, 18207, 53423, 11, 358, 690, 1505, 7182, 11102, 3686, 1578, 627, 91626, 11767, 311, 810, 11102, 13, 1102, 596, 279, 3446, 315, 43384, 627, 4071, 4359, 5829, 279, 11102, 2136, 315, 5414, 2911, 311, 64260, 304, 63278, 685, 11, 323, 6958, 603, 311, 279, 5414, 4851, 315, 30481, 13, 46910, 1555, 311, 5414, 6493, 685, 627, 4071, 279, 1274, 39169, 704, 311, 21058, 11, 71490, 323, 47168, 13, 1226, 1440, 584, 3077, 2884, 5076, 13, 4800, 3665, 603 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 34627, 574, 304, 264, 6926, 1614, 315, 33921, 6924, 505, 872, 1866, 21294, 627, 2181, 596, 279, 3446, 315, 279, 86955, 13, 1628, 433, 596, 279, 3446, 315, 856, 1866, 4851, 11, 2288, 627, 2746, 358, 1095, 7182, 636, 75082, 323, 1541, 956, 1833, 5414, 5627, 15884, 11, 4459, 18207, 53423, 11, 358, 690, 1505, 7182, 11102, 3686, 1578, 627, 91626, 11767, 311, 810, 11102, 13, 1102, 596, 279, 3446, 315, 43384, 627, 4071, 4359, 5829, 279, 11102, 2136, 315, 5414, 2911, 311, 64260, 304, 63278, 685, 11, 323, 6958, 603, 311, 279, 5414, 4851, 315, 30481, 13, 46910, 1555, 311, 5414, 6493, 685, 627, 4071, 279, 1274, 39169, 704, 311, 21058, 11, 71490, 323, 47168, 13, 1226, 1440, 584, 3077, 2884, 5076, 13, 4800, 3665, 603, -100 ]
Contact Atheist Ireland My Shop Account Promoting atheism, reason and an ethical, secular state Civil Registration Act Dublin Declaration Good Without Gods – Secular Charity Honest to Godless – Answering the 'Religion' Census Question Ireland's Blasphemy Law Leaving Religion: Defection from the Catholic Church List of Submissions 'One Oath For All' campaign Read the Bible Campaign Schools Equality PACT signthepact Secular Irish Constitution Teach Don't Preach About Atheist Ireland Changes in Atheist Ireland online practices Friends of Atheist Ireland Gallery Photographs Guide to setting up an affiliated Atheist Student Society Setting up a Student Society Writing a Constitution Organising a Student Society Committee Sample Affiliated Atheist Student Society Constitution Tips for Running a College Society How to lobby politicians Join Atheist Ireland Leaflets and Reports What activities does Atheist Ireland do? Celebrating Nic Johnson Author Atheist Ireland Published 29/12/2019 Comments 0 Our good friend Nic Johnson is nearing the end of his exceptional 85 years of life. He has spent most of those years promoting atheism, humanism, and secularism with passion and integrity. Before he moved to Ireland, he campaigned for abortion rights in America, during an era when campaigners promoted their message using sandwich boards rather than Twitter. He joined the Humanist Association of Ireland when he moved here, becoming a committee member and chaplaincy director. He has also been an active member of Atheist Ireland since we were founded a decade ago. He is a familiar face at Atheist Ireland meetings, lunches, political campaigns, and our monthly information tables at the GPO in Dublin. Nic's political commitment to a more just society is matched by his empathy and compassion. He has always focused on the social and psychological needs of nonreligious people as members of a community. This is interspersed with his sense of humour, which he still maintains in hospital today, some of which we could not repeat here. Nic and his wife Rose Mary have spent thirty loving years together. His son Tom and his daughter Lisa have travelled to Ireland to be with him this week, and we met his granddaughter Sofia when she came to our information table with Nic in November. In recent years, Nic and Rose Mary have been researching the history of atheism, secularism, and humanism in Ireland. They have just published the minutes of the Thinkers Circle from 1941-45, the earliest extant minutes of a secular group in post-independence Ireland. They have also been writing a history of the HAI. During and since the recent split within the HAI, Nic sought to protect its original ethos by promoting accountability and transparency. He directed the development of humanist chaplaincy work. He was the first to propose the solemnising of marriages by humanist chaplains, before the HAI took a different direction on that issue. Nic worked alongside Atheist Ireland, on behalf of the HAI, in trying to get the religion question on the census changed to one that would give more accurate results. The census office staff were more than familiar with Nic's persistence, and his skills as a statistician. The question will be changed at the next census, though not as radically as we would have liked. Nic is a strong supporter of the right to assisted dying. He and Dick Spicer prepared a position paper on this and made a submission to the Irish Hospice Foundation. While he may not be able to avail of it himself, we are confident that his campaigning will help to ensure that other people will be able to avail of it in the future. Nic is a great example of a veteran campaigner for secularism, who has maintained his passion and integrity over many decades. He has helped to change Ireland for the better, as reflected in the recent changes to the Constitution. And he has been an important part of the cumulative work that will result in more secular changes in coming years. Thank you for everything, Nic. We love you and we are proud of you. Category Atheism, General, Secularism Views 343 Secular Sunday #417 - Happy Secular Christmas! Secular Sunday #418 - Celebrating Nic Johnson Convention's vote on blasphemy could bring Ireland back to the 1980s Atheist Ireland asks Citizens Assembly to invite Termination For Medical Reasons Atheist Ireland report to UN for Universal Periodic Review of Ireland Blog Round-up after the Conference Government Bill in the Dail today will reinforce discrimination against atheist teachers UN to raise racial and religious discrimination in the Irish Education system Lesson Plans about Atheism for Teachers and Parents Is My Family Odd About Gods? – Children's Book Support Atheist Ireland's work Sign up for weekly Secular Sunday newsletter Donate on the Pope's behalf Make a donation on behalf of someone Support the Schools Equality PACT End State-funded Religious Discrimination in Schools Sign the P.A.C.T. Atheist Ireland Logo Travel Mug €19.12 Atheist Ireland Logo Mug (Standard) €12.10 Is My Family Odd About Gods? €10.00 Atheist Ireland Logo Stickers €2.04 Archives Select Month January 2020 December 2019 November 2019 October 2019 September 2019 August 2019 July 2019 June 2019 May 2019 April 2019 March 2019 February 2019 January 2019 December 2018 November 2018 October 2018 September 2018 August 2018 July 2018 June 2018 May 2018 April 2018 March 2018 February 2018 January 2018 December 2017 November 2017 October 2017 September 2017 August 2017 July 2017 June 2017 May 2017 April 2017 March 2017 February 2017 January 2017 December 2016 November 2016 October 2016 September 2016 August 2016 July 2016 June 2016 May 2016 April 2016 March 2016 February 2016 January 2016 December 2015 November 2015 October 2015 September 2015 August 2015 July 2015 June 2015 May 2015 April 2015 March 2015 February 2015 January 2015 December 2014 November 2014 October 2014 September 2014 August 2014 July 2014 June 2014 May 2014 April 2014 March 2014 February 2014 January 2014 December 2013 November 2013 October 2013 September 2013 August 2013 July 2013 June 2013 May 2013 April 2013 March 2013 February 2013 January 2013 December 2012 November 2012 October 2012 September 2012 August 2012 July 2012 June 2012 May 2012 April 2012 March 2012 February 2012 January 2012 December 2011 November 2011 October 2011 September 2011 August 2011 July 2011 June 2011 May 2011 April 2011 March 2011 February 2011 January 2011 December 2010 November 2010 October 2010 September 2010 August 2010 July 2010 June 2010 May 2010 April 2010 March 2010 February 2010 January 2010 November 2009 October 2009 September 2009 August 2009 July 2009 June 2009 May 2009 April 2009 March 2009 February 2009 steve white on Green Party responses to General Election questions from Atheist Ireland In Development: Kamila Dydyna's drama Debutante, looking inside the world of Jehovah's Witnesses – GearrScannain on Support the making of Debutante, a short film Atheist Ireland on Ireland no longer has a blasphemy law Eoin O'Dell on Ireland no longer has a blasphemy law Karen on Leaving Religion: Defection from the Catholic Church Coalition to Repeal the Eighth Amendment Atheist Ireland is a member of The Coalition to Repeal the Eighth Amendment The International Humanist Ethical Union National Women's Council of Ireland The National Women's Council of Ireland The International Coalition Against Blasphemy Laws Atheist Ireland is a member of The International Coalition Against Blasphemy Laws Other Atheist Ireland Websites Teach, Don't Preach Our campaign for a secular Irish education system Blasphemy.ie Our campaign to repeal the Irish blasphemy law Good Without Gods Our secular charitable initiative Atheist Ireland Team on Kiva For our Good Without Gods initiative NotMe.ie Our symbolic defection site to reject childhood baptism Join Atheist Ireland today Click here to find out how to become a member of Atheist Ireland, and help us to bring about an ethical, secular State Connect with Atheist Ireland © Copyright Atheist Ireland 2020. All rights reserved. <# if( event.all_day ){ #> All day <# }else{ #> {{{ event.start.format(this.param.item_format) }}} <# } #> {{{ event.title }}} <# if( this.param.add_to_google ){ #> View Add To Google Calendar We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it. Please read our Privacy Policy for more information.Ok
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
9,785
[ 128000, 8906, 85937, 380, 14990, 198, 5159, 14355, 8785, 198, 36286, 11780, 38914, 2191, 11, 2944, 323, 459, 31308, 11, 37019, 1614, 198, 68926, 25532, 3298, 198, 74294, 3817, 42021, 198, 15571, 17586, 44875, 1389, 4621, 1299, 67031, 198, 39, 36224, 311, 4359, 1752, 1389, 22559, 287, 279, 364, 6882, 32718, 6, 46627, 16225, 198, 40, 87566, 596, 2563, 300, 764, 4625, 7658, 198, 2356, 2370, 44193, 25, 3979, 12181, 505, 279, 16879, 9441, 198, 861, 315, 3804, 5287, 198, 6, 4054, 507, 589, 1789, 2052, 6, 4901, 198, 4518, 279, 17377, 27643, 198, 33849, 82, 52137, 393, 6966, 198, 7908, 339, 752, 533, 198, 8596, 1299, 18088, 18039, 198, 6777, 613, 4418, 956, 5075, 613, 198, 10714, 85937, 380, 14990, 198, 11569, 304, 85937, 380, 14990, 2930 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 8906, 85937, 380, 14990, 198, 5159, 14355, 8785, 198, 36286, 11780, 38914, 2191, 11, 2944, 323, 459, 31308, 11, 37019, 1614, 198, 68926, 25532, 3298, 198, 74294, 3817, 42021, 198, 15571, 17586, 44875, 1389, 4621, 1299, 67031, 198, 39, 36224, 311, 4359, 1752, 1389, 22559, 287, 279, 364, 6882, 32718, 6, 46627, 16225, 198, 40, 87566, 596, 2563, 300, 764, 4625, 7658, 198, 2356, 2370, 44193, 25, 3979, 12181, 505, 279, 16879, 9441, 198, 861, 315, 3804, 5287, 198, 6, 4054, 507, 589, 1789, 2052, 6, 4901, 198, 4518, 279, 17377, 27643, 198, 33849, 82, 52137, 393, 6966, 198, 7908, 339, 752, 533, 198, 8596, 1299, 18088, 18039, 198, 6777, 613, 4418, 956, 5075, 613, 198, 10714, 85937, 380, 14990, 198, 11569, 304, 85937, 380, 14990, 2930, -100 ]
You can be one of the lucky ones. The beauty and diversity of Berguedà landscapes will make you feel more alive. Open the door and natural heritage rich in contrasts welcomes you to offer you pure nature. Surprising corners will be a good excuse to discover the geological wealth of this region where Llobregat River transports you from the highest mountain to the wheat fields. A natural environment where you will feel privileged, walking the trails through Cadí-Moixeró Natural Park, one of the largest in Catalonia, or climbing the magic mountain of Catalonia, the Pedraforca. Recreation areas, fountains, viewpoints, shelters and activity centers will make your stay more enjoyable. Isn't it tempting? Seeing a black woodpecker, a grouse or chamois is a privilege. The variety of species in the berguedà relief makes the area unique in terms of fauna.
{ "redpajama_set_name": "RedPajamaC4" }
1,623
[ 128000, 2675, 649, 387, 832, 315, 279, 18069, 6305, 13, 578, 13444, 323, 20057, 315, 31782, 3340, 6496, 55890, 690, 1304, 499, 2733, 810, 13989, 13, 5377, 279, 6134, 323, 5933, 28948, 9257, 304, 83379, 57358, 499, 311, 3085, 499, 10748, 7138, 13, 8242, 34754, 24359, 690, 387, 264, 1695, 28391, 311, 7142, 279, 86278, 12205, 315, 420, 5654, 1405, 445, 1718, 1610, 266, 11188, 69169, 499, 505, 279, 8592, 16700, 311, 279, 34153, 5151, 13, 362, 5933, 4676, 1405, 499, 690, 2733, 47361, 11, 11689, 279, 33965, 1555, 33160, 2483, 5364, 78, 40114, 1832, 18955, 5657, 11, 832, 315, 279, 7928, 304, 96952, 11, 477, 30608, 279, 11204, 16700, 315, 96952, 11, 279, 19878, 969, 2000, 936, 13, 57857, 5789, 11, 282, 93406, 11, 90909, 11, 52888 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2675, 649, 387, 832, 315, 279, 18069, 6305, 13, 578, 13444, 323, 20057, 315, 31782, 3340, 6496, 55890, 690, 1304, 499, 2733, 810, 13989, 13, 5377, 279, 6134, 323, 5933, 28948, 9257, 304, 83379, 57358, 499, 311, 3085, 499, 10748, 7138, 13, 8242, 34754, 24359, 690, 387, 264, 1695, 28391, 311, 7142, 279, 86278, 12205, 315, 420, 5654, 1405, 445, 1718, 1610, 266, 11188, 69169, 499, 505, 279, 8592, 16700, 311, 279, 34153, 5151, 13, 362, 5933, 4676, 1405, 499, 690, 2733, 47361, 11, 11689, 279, 33965, 1555, 33160, 2483, 5364, 78, 40114, 1832, 18955, 5657, 11, 832, 315, 279, 7928, 304, 96952, 11, 477, 30608, 279, 11204, 16700, 315, 96952, 11, 279, 19878, 969, 2000, 936, 13, 57857, 5789, 11, 282, 93406, 11, 90909, 11, 52888, -100 ]
Saudi Arabia can be so-called swing producer in oil market 1 November 2018 08:57 (UTC+04:00) Baku, Azerbaijan, Nov. 1 By Leman Zeynalova – Trend: Saudi strategy in the oil markets is dictated by a number of forces including the changing geopolitical environment brought about by the requirements to cut off Iran from the international market place through sanction, Dr. Theodore Karasik, Senior Advisor Gulf State Analytics Washington DC, told Trend. He noted that if Saudi is required to boost production in order to maintain pressure on Iran this will be the case. "Russia, is cognizant of requirements on the global market that allows for Moscow to play a key role in conjunction with Saudi Arabia. Moscow of course gets the pleasure of playing all sides in the energy market as the Kremlin and its energy subsidiaries pursue grander plans to use energy prices to Russia's advantage," said the expert. Karasik noted that at key junctures, Saudi and Russia policy work hand in hand. "Yet on the Iran sanction front, there appears to be a case by case basis emerging in terms of "exceptions" which may complicate a blanket sanctions action." He believes that although China and the rest of East Asia have dropped their import of Iranian oil further and further, the 100 percent mark may not be met. "Saudi Arabia can be the so-called swing producer in this market especially in terms of the continuing of illicit trade which needs to be halted by maritime interdiction," he said. In regards to US sanctions against Saudi Arabia as a result of the Khoshoggi issue and its aftermath, the expert believes that there is a high possible of actions taken against individuals through US Congressional action but in terms of energy, there appears to be a reassessment ongoing about US energy policy and the Saudi oil industry. "It is safe to say that perhaps a healthy strategic reassessment may benefit both Washington and Riyadh to make the marketplace healthier depending on the length of US sanctions that may come into play later in the year or in early 2019," he concluded. Saudi Arabia's Energy Minister Khalid A. Al-Falih earlier said that the country's daily oil output for October stands at 10.7 million barrels. He noted that in the case of necessity, this figure can reach 12 million barrels per day. The minister pointed out that the uncertainty with regard to world oil supply still continues. The sanctions to be imposed on Iran starting from Nov.4 and the supply cuts from some other countries also contribute to this uncertainly, according to Al-Falih. Therefore, the minister believes it is not ruled out that oil prices can surpass $100 per barrel in 2019. Follow the author on Twitter: @Lyaman_Zeyn Which factors to affect Saudi Aramco's future production? Oil&Gas 16 January 11:21 Saudi Aramco raises IPO to record $29.4 billion by over-allotment of shares Arab World 13 January 02:33 President Ilham Aliyev: Renewable energy is one of energy sector priorities for us today Politics 10 January 17:41 Saudi Arabia supports Turkmenistan in implementation of TAPI gas pipeline project President Ilham Aliyev receives Chairman of Board of ACWA Power and Chief Executive Officer of Masdar (PHOTO) Politics 9 January 17:13 Another Kazakh airline company changes its flights routes Transport 8 January 14:42 Iran to hand black boxes of downed plane to Ukraine - Iranian official Turkish Grand National Assembly ex-member: Renewal of parliament to give new impetus to Azerbaijan's development Azerbaijani deputy PM: None of perpetrators of January 20 tragedy punished
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
9,910
[ 128000, 88317, 23931, 649, 387, 779, 19434, 19336, 17276, 304, 5707, 3157, 198, 16, 6841, 220, 679, 23, 220, 2318, 25, 3226, 320, 21872, 10, 2371, 25, 410, 340, 33, 24468, 11, 74577, 11, 4723, 13, 220, 16, 198, 1383, 445, 16357, 1901, 1216, 43078, 12949, 1389, 31753, 512, 88317, 8446, 304, 279, 5707, 11987, 374, 81498, 555, 264, 1396, 315, 8603, 2737, 279, 10223, 87998, 4676, 7263, 922, 555, 279, 8670, 311, 4018, 1022, 10471, 505, 279, 6625, 3157, 2035, 1555, 45361, 11, 2999, 13, 77449, 13528, 300, 1609, 11, 19903, 54432, 27945, 3314, 33527, 6652, 11162, 11, 3309, 31753, 627, 1548, 10555, 430, 422, 18387, 374, 2631, 311, 7916, 5788, 304, 2015, 311, 10519, 7410, 389, 10471, 420, 690, 387, 279, 1162, 627, 1, 45606, 11 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 88317, 23931, 649, 387, 779, 19434, 19336, 17276, 304, 5707, 3157, 198, 16, 6841, 220, 679, 23, 220, 2318, 25, 3226, 320, 21872, 10, 2371, 25, 410, 340, 33, 24468, 11, 74577, 11, 4723, 13, 220, 16, 198, 1383, 445, 16357, 1901, 1216, 43078, 12949, 1389, 31753, 512, 88317, 8446, 304, 279, 5707, 11987, 374, 81498, 555, 264, 1396, 315, 8603, 2737, 279, 10223, 87998, 4676, 7263, 922, 555, 279, 8670, 311, 4018, 1022, 10471, 505, 279, 6625, 3157, 2035, 1555, 45361, 11, 2999, 13, 77449, 13528, 300, 1609, 11, 19903, 54432, 27945, 3314, 33527, 6652, 11162, 11, 3309, 31753, 627, 1548, 10555, 430, 422, 18387, 374, 2631, 311, 7916, 5788, 304, 2015, 311, 10519, 7410, 389, 10471, 420, 690, 387, 279, 1162, 627, 1, 45606, 11, -100 ]
Read Next: Matt Damon Teams with 'Spotlight' Director Tom McCarthy on New Film (EXCLUSIVE) Lee Yong-kwan Close to Exit as Busan Assembly Ducks Decisions By Sonia Kil Sonia Kil Sonia's Most Recent Stories Korea Box Office: Hollywood Blockbusters Retain Weekend Top Spots Korea Box Office: 'Spider-Man: Far From Home' Dominates Weekend What is Killing Korea's Entertainment Talent? CREDIT: Sasha Don/Variety Lee Yong-kwan will Friday lose his job as director of the troubled Busan International Film Festival after the organization's general meeting ended on Thursday without taking a decision on key issues. The meeting ended abruptly when the city mayor, Seo Byeong-soo, who is also the festival's chairman, halted proceedings after an hour. The city authorities and the festival have been at odds since October 2014, when the festival went ahead with the screening of controversial documentary "Diving Bell" against the wishes of the mayor. Since then the city unsuccessfully attempted to force Lee out of his job, then made him share it. Now, without decision-making by the assembly, it appears that Lee's contract will simply be allowed to expire. The feud meant that last year's 20th anniversary of the festival was operated with the city providing less finance than in previous years. The Thursday meeting began at 2pm with festival delegates presenting a request signed by 106 of its 152 members, seeking discussion of a change to the regulations. But the mayor refused to accept delivery of the letter. Last week Seo offered to resign as chairman, but the infighting is so fierce that many doubt his sincerity. And without the change in regulations, Seo's resignation cannot take effect. "I admit film makers' contributions to the development of BIFF, but citizens of Busan, central government and the city council have clearly made their share of contributions as well. Thanks for all your opinions. I declare the general assembly closed," Seo said. Lee Yong-kwan
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
4,412
[ 128000, 4518, 9479, 25, 9391, 1617, 73349, 40713, 449, 364, 48149, 4238, 6, 10783, 8529, 45040, 389, 1561, 17042, 320, 3337, 55136, 340, 55088, 69054, 12934, 16965, 13330, 311, 19532, 439, 19111, 276, 12000, 68882, 3799, 6948, 198, 1383, 90491, 38988, 198, 50, 21947, 38988, 198, 50, 21947, 596, 7648, 35390, 30129, 198, 42, 61148, 8425, 8410, 25, 17681, 8527, 76618, 10608, 467, 48534, 7054, 3165, 2469, 198, 42, 61148, 8425, 8410, 25, 364, 74008, 31251, 25, 13759, 5659, 5492, 6, 23286, 988, 48534, 198, 3923, 374, 70677, 12126, 596, 23334, 55607, 5380, 34, 57563, 25, 83278, 4418, 28332, 2850, 2676, 198, 55088, 69054, 12934, 16965, 690, 6740, 9229, 813, 2683, 439, 7690, 315, 279, 42132, 19111, 276, 7327, 17042, 17772, 1306, 279, 7471, 596, 4689, 6574, 9670 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 4518, 9479, 25, 9391, 1617, 73349, 40713, 449, 364, 48149, 4238, 6, 10783, 8529, 45040, 389, 1561, 17042, 320, 3337, 55136, 340, 55088, 69054, 12934, 16965, 13330, 311, 19532, 439, 19111, 276, 12000, 68882, 3799, 6948, 198, 1383, 90491, 38988, 198, 50, 21947, 38988, 198, 50, 21947, 596, 7648, 35390, 30129, 198, 42, 61148, 8425, 8410, 25, 17681, 8527, 76618, 10608, 467, 48534, 7054, 3165, 2469, 198, 42, 61148, 8425, 8410, 25, 364, 74008, 31251, 25, 13759, 5659, 5492, 6, 23286, 988, 48534, 198, 3923, 374, 70677, 12126, 596, 23334, 55607, 5380, 34, 57563, 25, 83278, 4418, 28332, 2850, 2676, 198, 55088, 69054, 12934, 16965, 690, 6740, 9229, 813, 2683, 439, 7690, 315, 279, 42132, 19111, 276, 7327, 17042, 17772, 1306, 279, 7471, 596, 4689, 6574, 9670, -100 ]
Mother of all U-turns A couple of weeks ago, Imran Khan defended his habit of prevaricating every now and then. He said that a politician or leader who does not make U-turns whenever he faces an obstacle can never succeed in attaining his objectives. Someone should have told him that the rulers of the State of Madina (which he wants Pakistan to become) never backtracked from what they had pledged, and they were certainly not like Hitler (whom he compared to an unsuccessful leader who did not take a U-turn). But then, I doubt if such little things have any effect on Imran Khan, who will go on making promises which he knows he cannot keep. The mother of all U-turns came yesterday, when he startled everyone by suggesting that India and Pakistan should forget their differences and form a union like France and Germany have done. This is in stark contrast to what he used to say whenever Nawaz Sharif tried to reach out to India, calling the former prime minister a traitor. The phrase "Modi ka yaar, quom ka ghaddar" (a friend of Modi is a traitor) was coined by his party members. So now what should we say about Imran Khan, that he too is a "ghaddar"? More important, how can he ever be trusted for making U-turns every now and then? I'd like to see his party members themselves call him a liar (which they soon will, if the Chief Justice continues his investigations in his party's corruption).
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
1,835
[ 128000, 59978, 315, 682, 549, 65051, 82, 198, 32, 5743, 315, 5672, 4227, 11, 2417, 6713, 25273, 35844, 813, 14464, 315, 864, 959, 292, 1113, 1475, 1457, 323, 1243, 13, 1283, 1071, 430, 264, 37038, 477, 7808, 889, 1587, 539, 1304, 549, 65051, 82, 15716, 568, 12580, 459, 33287, 649, 2646, 12265, 304, 1651, 2101, 813, 26470, 13, 35272, 1288, 617, 3309, 1461, 430, 279, 60996, 315, 279, 3314, 315, 9671, 2259, 320, 8370, 568, 6944, 17076, 311, 3719, 8, 2646, 1203, 59481, 505, 1148, 814, 1047, 43347, 11, 323, 814, 1051, 7995, 539, 1093, 31654, 320, 1336, 316, 568, 7863, 311, 459, 46025, 7808, 889, 1550, 539, 1935, 264, 549, 65051, 570, 2030, 1243, 11, 358, 10712, 422, 1778, 2697, 2574, 617, 904, 2515, 389, 2417, 6713 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 59978, 315, 682, 549, 65051, 82, 198, 32, 5743, 315, 5672, 4227, 11, 2417, 6713, 25273, 35844, 813, 14464, 315, 864, 959, 292, 1113, 1475, 1457, 323, 1243, 13, 1283, 1071, 430, 264, 37038, 477, 7808, 889, 1587, 539, 1304, 549, 65051, 82, 15716, 568, 12580, 459, 33287, 649, 2646, 12265, 304, 1651, 2101, 813, 26470, 13, 35272, 1288, 617, 3309, 1461, 430, 279, 60996, 315, 279, 3314, 315, 9671, 2259, 320, 8370, 568, 6944, 17076, 311, 3719, 8, 2646, 1203, 59481, 505, 1148, 814, 1047, 43347, 11, 323, 814, 1051, 7995, 539, 1093, 31654, 320, 1336, 316, 568, 7863, 311, 459, 46025, 7808, 889, 1550, 539, 1935, 264, 549, 65051, 570, 2030, 1243, 11, 358, 10712, 422, 1778, 2697, 2574, 617, 904, 2515, 389, 2417, 6713, -100 ]
Q: Visual Studio unit tests throw MissingMethodException when assembly is in GAC? My application contains a piece of code that executes inside of Component Services, so we need to register our business rules layer (and its dependencies) in the GAC. One of those dependencies is FooCore.dll, which contains classes and services visible to the entire app. Everything was working fine, until I added a new method to a class in FooCore. Now, when I run my unit tests, any test that calls this new method throws a MissingMethodException, even if I update the GAC with the latest version of the assembly. The only fix is to remove FooCore from the GAC before running the tests. I've tried the following things: * *Rebuilt entire solution, refreshed stuff in GAC, then ran tests = failure *Removed and re-added FooCore assembly reference in test project = failure *Ensured that FooCore is set as "Copy Local" in properties = failure What can I do to ensure that VSTS loads referenced assemblies from their explicitly defined location, rather than from the GAC? A: Further research turned up this forum thread on this issue, in which someone suggests this might be caused by VS2008's Performance Analysis feature holding onto a stale version of the assembly. I was able to solve my problem by: * *Rebuilding my solution, then *Refreshing everything in the GAC, then *Removing and re-adding the assembly references in my test project, then *Closing and re-opening Visual Studio 2008 I'm not sure which of these steps were explicitly necessary, but this "kitchen sink" approach resolved the issue for me. Update: This Microsoft article states that when a solution is compiled, assemblies found in the GAC are never copied to the output bin\ folder, even if "Copy Local" is set to true. A: In my case I had two the same (almost) assemblies with different locations. The tested project was referenced to the first assembly and the UnitTest project was referenced to the second one (they were absolutely the same). So check carefully all of the project references.
{ "redpajama_set_name": "RedPajamaStackExchange" }
96
[ 128000, 48, 25, 20796, 19074, 5089, 7177, 2571, 36364, 3607, 1378, 994, 14956, 374, 304, 480, 1741, 30, 3092, 3851, 5727, 264, 6710, 315, 2082, 430, 52535, 4871, 315, 5695, 8471, 11, 779, 584, 1205, 311, 4254, 1057, 2626, 5718, 6324, 320, 438, 1202, 20113, 8, 304, 279, 480, 1741, 13, 3861, 315, 1884, 20113, 374, 34528, 5501, 22990, 11, 902, 5727, 6989, 323, 3600, 9621, 311, 279, 4553, 917, 627, 36064, 574, 3318, 7060, 11, 3156, 358, 3779, 264, 502, 1749, 311, 264, 538, 304, 34528, 5501, 13, 4800, 11, 994, 358, 1629, 856, 5089, 7177, 11, 904, 1296, 430, 6880, 420, 502, 1749, 3872, 264, 36364, 3607, 1378, 11, 1524, 422, 358, 2713, 279, 480, 1741, 449, 279, 5652, 2373, 315, 279, 14956, 13, 578, 1193 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 48, 25, 20796, 19074, 5089, 7177, 2571, 36364, 3607, 1378, 994, 14956, 374, 304, 480, 1741, 30, 3092, 3851, 5727, 264, 6710, 315, 2082, 430, 52535, 4871, 315, 5695, 8471, 11, 779, 584, 1205, 311, 4254, 1057, 2626, 5718, 6324, 320, 438, 1202, 20113, 8, 304, 279, 480, 1741, 13, 3861, 315, 1884, 20113, 374, 34528, 5501, 22990, 11, 902, 5727, 6989, 323, 3600, 9621, 311, 279, 4553, 917, 627, 36064, 574, 3318, 7060, 11, 3156, 358, 3779, 264, 502, 1749, 311, 264, 538, 304, 34528, 5501, 13, 4800, 11, 994, 358, 1629, 856, 5089, 7177, 11, 904, 1296, 430, 6880, 420, 502, 1749, 3872, 264, 36364, 3607, 1378, 11, 1524, 422, 358, 2713, 279, 480, 1741, 449, 279, 5652, 2373, 315, 279, 14956, 13, 578, 1193, -100 ]
L & L Contractors, Nashville's Source For Quality Roofing, Deck, Gutter, Siding, Window & Addition Services! Since 2006, Nashville has counted on L & L Contractors to take care of all of their roofing, deck, gutter, sunroom/additions, siding and window needs. That's because the quality of our work is unparalleled, and the materials we use to get the job done provide beautiful, long-lasting results. Whether we're installing new fiber cement siding on a home or putting a new roof on a commercial property, we promise only the best to our Nashville customers. The Food – Anyone who's ever been to Nashville can testify that we have no shortage of amazing restaurants and food trucks. Whether it's our hot chicken, our meat and threes, our biscuits, our tacos, our mac-n-cheese, or our crepes, our flavor train is worth the ride. The Coffee & Libations – If you are a coffee enthusiast, a whiskey fan, or a beer lover, there's plenty to love about Nashville. We have more than a handful of mind-blowing coffee shops, and our baristas know their stuff. Many of the shops roast their own beans, while others use local roaster Drew's Brews. Either way, you can't go wrong. Wherever you're dining in Nashville, you can bet they offer beer from Nashville's very own Yazoo Brewing Company. Try the Dos Perros – you won't be disappointed! Speaking of Yazoo, if you visit the old brewery location on Clinton Street, you'll find Corsair Distillery and Taproom. Do yourself a favor: take a tour and sample their whiskey or relax with a Yazoo or two in their taproom. If Bloody Marys are your forte, you have to try the cucumber Bloody Mary at Margot and hit up Mad Donna's Bloody Mary bar. The Parks – Whether you like hiking, canoeing, dog parks, sculpture parks, fishing, cliff diving, or any other outdoor adventure, there's a park for you here in Nashville. The Music – Yes, it's Music City, but it's still amazing just how much music Nashville has to offer every single night of the week. Some of the most popular venues are Mercy Lounge/The High Watt/The Cannery Ballroom, Foobar, Marathon Music Works, the Ryman, the Bridgestone Arena, Exit/In, the End, and 12th and Porter – although you can find music on street corners, all up and down Broadway, and even in the Opry Mills Mall! Nashville Scene can keep you up-to-date on just about anything worthwhile, and they break it up by night (making sure to include drink specials)! That's just a tiny fraction of what we love about Nashville, but what everyone who's lucky enough to live and work here can agree on is that we've got an amazing sense of community that just can't be topped. The sense of community isn't just with neighbors and friends, but with businesses and vendors as well. And here at L & L Contractors, we're no different. We love our home city and we look forward to working with our neighbors to keep it looking great and feeling like home. For more information on our services or to schedule an appointment, give us a call! There's a lot to see and do in nearby Smyrna, TN and it's important to us to continue providing all kinds of contracting services to our customers in this part of our service area.
{ "redpajama_set_name": "RedPajamaC4" }
4,856
[ 128000, 43, 612, 445, 98893, 11, 37640, 596, 8922, 1789, 18410, 47449, 287, 11, 29516, 11, 480, 6339, 11, 328, 6714, 11, 13956, 612, 79746, 8471, 4999, 12834, 220, 1049, 21, 11, 37640, 706, 31094, 389, 445, 612, 445, 98893, 311, 1935, 2512, 315, 682, 315, 872, 66525, 11, 9722, 11, 50079, 11, 7160, 3039, 20200, 6055, 11, 76785, 323, 3321, 3966, 13, 3011, 596, 1606, 279, 4367, 315, 1057, 990, 374, 71257, 11, 323, 279, 7384, 584, 1005, 311, 636, 279, 2683, 2884, 3493, 6366, 11, 1317, 65265, 3135, 13, 13440, 584, 2351, 27730, 502, 24722, 24532, 76785, 389, 264, 2162, 477, 10917, 264, 502, 15485, 389, 264, 8518, 3424, 11, 584, 11471, 1193, 279, 1888, 311, 1057, 37640, 6444, 627, 791, 12369, 1389, 33634, 889, 596 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 43, 612, 445, 98893, 11, 37640, 596, 8922, 1789, 18410, 47449, 287, 11, 29516, 11, 480, 6339, 11, 328, 6714, 11, 13956, 612, 79746, 8471, 4999, 12834, 220, 1049, 21, 11, 37640, 706, 31094, 389, 445, 612, 445, 98893, 311, 1935, 2512, 315, 682, 315, 872, 66525, 11, 9722, 11, 50079, 11, 7160, 3039, 20200, 6055, 11, 76785, 323, 3321, 3966, 13, 3011, 596, 1606, 279, 4367, 315, 1057, 990, 374, 71257, 11, 323, 279, 7384, 584, 1005, 311, 636, 279, 2683, 2884, 3493, 6366, 11, 1317, 65265, 3135, 13, 13440, 584, 2351, 27730, 502, 24722, 24532, 76785, 389, 264, 2162, 477, 10917, 264, 502, 15485, 389, 264, 8518, 3424, 11, 584, 11471, 1193, 279, 1888, 311, 1057, 37640, 6444, 627, 791, 12369, 1389, 33634, 889, 596, -100 ]
Speaking in Sweden By: Amanda Davis Yesterday our co-director Andrew Dolkart spoke to students and faculty at the Royal Institute of Art in Stockholm, Sweden on the importance of documenting LGBT historic sites and making this history visible to the general public through our interactive website. It's always a great opportunity to reach out to our friends overseas! See the event listing. Andrew was co-author of the Stonewall nomination to the National Register of Historic Places in 1999 and, in the past year, has authored the nomination for Julius' bar and the amended nomination for the Alice Austen House. The latter two nominations are part of our ongoing efforts to recognize LGBT history on the National Register.
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
8,001
[ 128000, 33117, 304, 24067, 198, 1383, 25, 42859, 17200, 198, 51377, 1057, 1080, 44624, 269, 13929, 423, 23427, 472, 12570, 311, 4236, 323, 22291, 520, 279, 16591, 10181, 315, 5277, 304, 53182, 11, 24067, 389, 279, 12939, 315, 68071, 23983, 18526, 6732, 323, 3339, 420, 3925, 9621, 311, 279, 4689, 586, 1555, 1057, 21416, 3997, 13, 1102, 596, 2744, 264, 2294, 6776, 311, 5662, 704, 311, 1057, 4885, 25355, 0, 3580, 279, 1567, 15182, 627, 41598, 574, 1080, 43802, 315, 279, 36219, 365, 543, 29804, 311, 279, 5165, 8618, 315, 51887, 45836, 304, 220, 2550, 24, 323, 11, 304, 279, 3347, 1060, 11, 706, 67213, 279, 29804, 369, 70345, 6, 3703, 323, 279, 31011, 29804, 369, 279, 30505, 13222, 268, 4783, 13, 578, 15629, 1403, 60698, 527, 961 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 33117, 304, 24067, 198, 1383, 25, 42859, 17200, 198, 51377, 1057, 1080, 44624, 269, 13929, 423, 23427, 472, 12570, 311, 4236, 323, 22291, 520, 279, 16591, 10181, 315, 5277, 304, 53182, 11, 24067, 389, 279, 12939, 315, 68071, 23983, 18526, 6732, 323, 3339, 420, 3925, 9621, 311, 279, 4689, 586, 1555, 1057, 21416, 3997, 13, 1102, 596, 2744, 264, 2294, 6776, 311, 5662, 704, 311, 1057, 4885, 25355, 0, 3580, 279, 1567, 15182, 627, 41598, 574, 1080, 43802, 315, 279, 36219, 365, 543, 29804, 311, 279, 5165, 8618, 315, 51887, 45836, 304, 220, 2550, 24, 323, 11, 304, 279, 3347, 1060, 11, 706, 67213, 279, 29804, 369, 70345, 6, 3703, 323, 279, 31011, 29804, 369, 279, 30505, 13222, 268, 4783, 13, 578, 15629, 1403, 60698, 527, 961, -100 ]
Study: Texas leads the nation in removing confederate symbols Alejandra Matos, Shelby Webb, Staff Writers June 4, 2018 Updated: June 4, 2018 7:27 p.m. 1of17The Confederate Soldier monument in San Antonio's Travis Park is seen Aug. 28, 2017. The City Council voted to remove it.William Luther /San Antonio Express-NewsShow MoreShow Less 2of17Students voted on a new mascot design for Robert E. Lee High School, soon to be Legacy of Educational Excellence High School, as part of renaming the school.North East Independent School DistrictShow MoreShow Less 4of17Nearly 150 years after the end of the Civil War, monuments exist to the Confederate States of America. Here are some places in Texas where remnants of the Confederacy are alive and well... FileShow MoreShow Less 5of17"Confederate Memorial of the Wind" - Orange, Texas The Sons of Confederate Veterans, who built this nearly-completed structure, call it the biggest Confederate memorial built in 100 years. When completed it will fly eight Confederate flags within view of Interstate 10 (seen behind). The Beaumont Enterprise reports the monument faced wide opposition from local residents and city council, which had no legal tools to stop construction. Photo courtesy of the Sons of Confederate Veterans. Dylan BaddourShow MoreShow Less 7of17Confederate Veterans Memorial Plaza - Palestine, Texas Five flags of the Confederacy are flown at the memorial plaza in Palestine. Funded by the Sons of Confederate Veterans, the plaza opened in 2013. Pictured above, members of the SCV camp 2156 gathered in ceremony to dedicate a black granite plaque to veterans and families of the Confederacy. 8of17Sabine Pass Battleground - Sabine Pass, Texas Where the Sabine River enters the Gulf of Mexico, 47 Confederate men held off a large Union attack, destroying two Inion boats and capturing hundreds of prisoners. Today the site is managed by the Texas Historical Commission, and it hosts battle reenactments in honor of the Confederate soldiers. Photo courtesy of the Texas State Historical Commission 10of17The Liendo Plantation - Hempstead, Texas The Liendo Plantation was a center for Confederate recruiting efforts and held Union prisoners during the war. Now it holds battle reenactments and demonstrations of Civil War era Confederate life at its annual Civil War Weekend. Photo courtesy of the Liendo Plantation 11of17"Dignified Resignation" - Galveston, Texas A 1911 monument outside the Galveston County courthouse, named "Dignified Resignation," was "erected to the soldiers and sailors of the Confederate States of America." An inscription on the plaque reads, "there has never been an armed force which in purity of motives intensity of courage and heroism has equaled the army and navy of the Confederate States of America." Photo from Wikipedia Commons 13of17Confederate Memorial Plaza - Anderson, Texas The plaza beside the Grimes County courthouse flies a Confederate flag behind a gate with metal lettering reading "Confederate Memorial Plaza." A metal statue depicts one of several Grimes County residents who fought with the 4th Texas volunteer infantry brigade in Virginia. 14of17Confederate monument on capitol grounds - Austin, Texas A bronze and stone monument built in 1903 at the capitol building in Austin honors veterans of the Confederacy. Statues of Confederate members of the navy, infantry, artillery and cavalry surround Confederate president Jefferson Davis. The monument reads, "Died for state rights guaranteed under the constitution. The people of the South, animated by the spirit of 1776, to preserve their rights, withdrew from the federal compact in 1861. The North resorted to coercion. The South, against overwhelming numbers and resources, fought until exhausted." 16of17Confederate Square - Gonzales, Texas A Confederate soldier stands atop a tall pillar in this 1909 monument dedicated to "our confederate dead." The pillar is centered in a plaza also dedicated to the soldiers. Photo courtesy of www.TourGonzales.com AUSTIN — Texas has removed the most Confederate symbols and statues in the country since 2015, according to a new Southern Poverty Law Center study. But the trend does not extend to the state Capitol, where lawmakers have been reluctant to take down monuments and plaques. Texas cities removed 31 symbols, which include statues and renaming of schools and streets, according to the report. Austin led the way, with the removal of 10 symbols, the majority of them on the University of Texas campus. San Antonio removed a monument to fallen Confederate soldiers from Travis Park downtown, following a 10-1 City Council vote. Just weeks later, the North East Independent School District voted to rename Robert E. Lee High School, choosing a new name of Legacy of Educational Excellence High School. Those developments followed actions in 2015 by Bexar County Commissioners Court to remove historical markers near the county courthouse that commemorated the site of the 1850s Vance House and the Jefferson Davis Memorial Highway. Both markers included Confederate flag images. In Houston, seven schools and one street have been renamed. One impetus for removing symbols was the mass shooting at a black church in Charleston, South Carolina, in 2015. After that, South Carolina removed the Confederate flag from its statehouse grounds. "As a consequence of the national reflection that began in Charleston, the myths and revisionist history surrounding the Confederacy may be losing their grip in the South," the law center said in its report. "Yet, for the most part, the symbols remain." Despite removing dozens of symbols, Texas still has the second-highest number of Confederate memorials in the country. The State Capital alone has about a dozen Confederate icons, according to estimates by the State Preservation Board. Rep. Eric Johnson, D-Dallas, has been pushing to remove a plaque near his office that claims slavery was not the cause of the Civil War. More than nine months after Johnson called for the plaque's removal, Gov. Greg Abbott's staff is still studying the issue. Staff Writer Scott Huddleston contributed to this report. [email protected] [email protected] Alejandra Matos Shelby Webb Reach Shelby on Shelby Webb is an energy tech, renewable energy reporter for the Houston Chronicle. She previously worked as an education reporter for the Chronicle for more than four years, covering trends across greater Houston and Texas. Before moving to Houston, she worked for her hometown paper in Sarasota, Florida, from 2013 to 2016 and graduated from the University of Florida.
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
8,014
[ 128000, 49812, 25, 8421, 11767, 279, 7140, 304, 18054, 2389, 7442, 349, 18210, 198, 84583, 73, 24155, 7011, 437, 11, 70508, 55488, 11, 17381, 59798, 198, 28259, 220, 19, 11, 220, 679, 23, 16459, 25, 5651, 220, 19, 11, 220, 679, 23, 220, 22, 25, 1544, 281, 749, 627, 16, 1073, 1114, 791, 57457, 53529, 37997, 304, 5960, 23245, 596, 41810, 5657, 374, 3970, 5033, 13, 220, 1591, 11, 220, 679, 22, 13, 578, 4409, 9251, 16626, 311, 4148, 433, 1196, 484, 5038, 36302, 611, 24661, 23245, 17855, 12, 14710, 7968, 4497, 7968, 9865, 198, 17, 1073, 1114, 32052, 16626, 389, 264, 502, 85765, 2955, 369, 8563, 469, 13, 12336, 5234, 6150, 11, 5246, 311, 387, 38987, 315, 46945, 58240, 5234, 6150, 11, 439, 961, 315, 93990, 279 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 49812, 25, 8421, 11767, 279, 7140, 304, 18054, 2389, 7442, 349, 18210, 198, 84583, 73, 24155, 7011, 437, 11, 70508, 55488, 11, 17381, 59798, 198, 28259, 220, 19, 11, 220, 679, 23, 16459, 25, 5651, 220, 19, 11, 220, 679, 23, 220, 22, 25, 1544, 281, 749, 627, 16, 1073, 1114, 791, 57457, 53529, 37997, 304, 5960, 23245, 596, 41810, 5657, 374, 3970, 5033, 13, 220, 1591, 11, 220, 679, 22, 13, 578, 4409, 9251, 16626, 311, 4148, 433, 1196, 484, 5038, 36302, 611, 24661, 23245, 17855, 12, 14710, 7968, 4497, 7968, 9865, 198, 17, 1073, 1114, 32052, 16626, 389, 264, 502, 85765, 2955, 369, 8563, 469, 13, 12336, 5234, 6150, 11, 5246, 311, 387, 38987, 315, 46945, 58240, 5234, 6150, 11, 439, 961, 315, 93990, 279, -100 ]
There's still a cascade of gold medals to be won, mostly in prime time. For men, that includes 1500 meter, 5000 meter, javelin and platform diving; for women its high jump and 800-meter. And for both, there are the 4-by-400-meter relays. There's more in the daytime, which we'll list separately, and then latenight on NBC, from 12:30-5 a.m. TONIGHT'S MIGHT-SEE: "Rush Hour" finale, 8 p.m., CBS. The "Rush Hour" movies seemed like they would continue forever. There were four of them, stretched over nine years, with Jackie Chan and Chris Tucker making a fortune. The TV series, however, seemed to vanish in an instant. Eight episodes were shown on Thursdays, failing in a strong timeslot; five more were exiled to Saturdays. Still, we're promised that there will be a strong finish. Lee (Jon Foo) has tried to extricate his sister from the crime life. Now he and Carter (Justin Hires) have a chance, going undercover at a meeting of rival crime lords. TODAY'S ALTERNATIVE: Animated movies, all day, cable. While their parents obsess on the Olympics. kids can have fun. Starz has "The Good Dinosaur" (2015) at 7:15 p.m., Disney has "Alvin & The Chipmunks 2" (2009) at 8 and others have marathons. On Freeform, it's "Ice Age: Dawn of the Dinosaurs" (2009) at 12:30 p.m., the original "Jungle Book" (1967) at 2:45, "Up" (2009) at 4:45, "Tangled" (2010) at 7, "Monsters University" (2013) at 9:15 and "Brave" (2012) at 11:45. FXX has "Smurfs 2" (2013) at 2 p.m., "Puss in Boots" (2011) at 4, "Turbo" (2013) at 6 and then the clever "Mr. Peabody & Sherman" (2014) at 8 and 10 p.m. More Olympics, daytime. On the last full day, things start early. Live coverage begins at 6 a.m. ET on Golf (with the final women's round), 9 a.m. on USA (rhythmic gymnastics qualifying) and noon on MSNBC (women's volleyball bronze) and NBC Sports Network (men's soccer bronze). Even NBC (10 a.m. to 6 p.m.) will sometimes be live. That includes the gold-medal games in women's basketball at 2:30 p.m. ET and men's water polo, at 4:45 p.m. ET. "Mean Girls" (2004), 6:35 p.m., Comedy Central. There are some movies for grown-ups, starting with this fun Tina Fey film. At 8 p.m., FX has "The Wolf of Wall Street" (2013), MTV has "Napoleon Dynamite" (2004) and VH1 has "Sixteen Candles" (1983). "Hotel Hell," 8 and 9 p.m., Fox. Here's a rerun of a two-parter that's fun to watch, in a perverse way. The setting – in historic Harper's Ferry, W. Va. -- is gorgeous; the manager is bizarre. A retired teacher, she even keeps her clothes in a locked cabinet in a guest room. A mega-makeover is coming. "Last Man Standing," 8 p.m., ABC. Desperate to connect with her daughters, Vanessa gets a tattoo. Also in this rerunn, Ryan – not an outdoorsman like his fiancee's dad – needs a lesson in camping. "Dr. Ken," 8:31 p.m., ABC. In a rerun, Ken is ready to take full credit for giving a sex talk to his son. Actually, it was his timid protege, Dr. Julie Dodds, who gave the talk. "In an Instant," 9 p.m., ABC. Ashley Ware was 23, a nurse and a runner-up for Miss North Dakota USA, when she was abducted in Fargo, N.D. Using her nursing skills, she faked an asthma attack, fled, later wrestled the man while putting pressure under his nose. That was eight years ago; Ware – who married, moved to New York and continued nursing – tells the story, along with re-enactments. "Fargo" (1996), 10 p.m., Viceland. This network (formerly H2) again wraps its Saturday with "Fargo," a gem. That follows all seven episodes of "Vice Does America," from 6:30-10 p.m.: The travelers range from hog-calling in Iowa to a creationist museum in Texas and an African village in South Carolina.
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
3,768
[ 128000, 3947, 596, 2103, 264, 43118, 315, 6761, 60082, 311, 387, 2834, 11, 10213, 304, 10461, 892, 13, 1789, 3026, 11, 430, 5764, 220, 3965, 15, 23819, 11, 220, 2636, 15, 23819, 11, 1281, 33830, 323, 5452, 43515, 26, 369, 3278, 1202, 1579, 7940, 323, 220, 4728, 73601, 13, 1628, 369, 2225, 11, 1070, 527, 279, 220, 19, 14656, 12, 3443, 73601, 1375, 954, 627, 3947, 596, 810, 304, 279, 62182, 11, 902, 584, 3358, 1160, 26214, 11, 323, 1243, 93632, 492, 389, 24426, 11, 505, 220, 717, 25, 966, 12, 20, 264, 749, 627, 10483, 4735, 13575, 386, 4735, 12, 49840, 25, 330, 49, 1136, 31933, 1, 37398, 11, 220, 23, 281, 749, 2637, 24991, 627, 791, 330, 49, 1136, 31933, 1, 9698, 9508, 1093, 814, 1053 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 3947, 596, 2103, 264, 43118, 315, 6761, 60082, 311, 387, 2834, 11, 10213, 304, 10461, 892, 13, 1789, 3026, 11, 430, 5764, 220, 3965, 15, 23819, 11, 220, 2636, 15, 23819, 11, 1281, 33830, 323, 5452, 43515, 26, 369, 3278, 1202, 1579, 7940, 323, 220, 4728, 73601, 13, 1628, 369, 2225, 11, 1070, 527, 279, 220, 19, 14656, 12, 3443, 73601, 1375, 954, 627, 3947, 596, 810, 304, 279, 62182, 11, 902, 584, 3358, 1160, 26214, 11, 323, 1243, 93632, 492, 389, 24426, 11, 505, 220, 717, 25, 966, 12, 20, 264, 749, 627, 10483, 4735, 13575, 386, 4735, 12, 49840, 25, 330, 49, 1136, 31933, 1, 37398, 11, 220, 23, 281, 749, 2637, 24991, 627, 791, 330, 49, 1136, 31933, 1, 9698, 9508, 1093, 814, 1053, -100 ]
This GOP Candidate Questions Whether the Civil War Should Have Been Fought Meet Jason Lewis, who just won a key congressional primary. <a href="http://www.shutterstock.com/pic-88732954/stock-photo-moorpark-ca-nov-13-civil-war-reenactors-in-the-blue-and-the-gray-event-on-nov-13-2011-in-moorpark-ca-its-the-largest-civil-war-reenactment-in-the-west.html?src=yHlvdJlogXJY3PbBJyc_Jw-1-50">Jose Gil</a>/Shutterstock The most important congressional primary on Tuesday wasn't House Speaker Paul Ryan's cakewalk in Wisconsin. It was in neighboring Minnesota's 2nd District, where Republicans are scrambling to retain the seat held by retiring Rep. John Kline. Their new nominee: Jason Lewis, a talk radio host who founded an Ayn Rand social network and has a history of making inflammatory comments about slavery and women. Republicans had fought hard to nominate someone other than Lewis in the swing district, which voted narrowly for President Barack Obama in 2008 and 2012. Kline backed Lewis' Republican opponent, businesswoman Darlene Miller. But Lewis won the district GOP's endorsement and cruised past Miller by nearly 20 points, setting up a November showdown with Democrat Angie Craig. The suburban Minneapolis district is a must-win for Democrats hoping to take back the House, a goal that would require flipping 30 seats currently held by Republicans. That's a long shot right now. But it becomes a bit likelier when the GOP fields controversial candidates like Lewis in swing districts. Lewis' past comments have been a gold mine for critics. In his 2011 book, Power Divided Is Power Checked: The Argument for States' Rights, he questioned the wisdom of the Civil War, arguing that it had been fought over states rights, not slavery, and changed the nation's constitutional framework for the worse. In his book, he proposed a constitutional amendment that would help restore what he believed had been lost, by allowing any state to peaceably leave the Union. And in a 2011 interview, Lewis declined to say whether the Civil War should have been fought, suggesting, as he had in the book, that there were better alternatives to ending slavery that President Abraham Lincoln could have considered. Lewis has also taken heat for comments he made about women on his radio show. Many of the old episodes have been taken down from his website, but in a segment after the 2012 election that was unearthed by the Minneapolis Star-Tribune, Lewis went off on "ignorant" voters who he believed had sold their votes for free birth control. "You've got a vast majority of young single women who couldn't explain to you what GDP means," he said on his radio show in 2012. "You know what they care about? They care about abortion. They care about abortion and gay marriage. They care about The View. They are non-thinking." He added, "I never thought in my lifetime where you'd have so many single, or I should say, yeah, single women who would vote on the issue of somebody else buying their diaphragm. This is a country in crisis. Those women are ignorant in, I mean, the most generic way. I don't mean that to be a pejorative. They are simply ignorant of the important issues in life. Somebody's got to educate them." And in another 2012 segment, he said the "white population" of the United States was "committing cultural suicide" by not having more kids. "Other communities are having three, four, five, six kids—gee, guess what happens after a while, folks?" Lewis has kept busy outside of the talk radio arena. Two years ago, he launched a new online community called Galt.io, which describes itself as "a members-only network of makers inspired by 'Galt's Gulch' from Ayn Rand's classic novel 'Atlas Shrugged.'" Galt.io members earn "Galtcoins" for participating in the community and can "invest" them in different causes on the site, in order to promote various political agendas. According to the site, "Galt.io is part stock exchange, part social network and truly a society of people committed to changing the direction of our country." Maybe Democrats Can Turn Paul Ryan Into a Minority Leader After All
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
119
[ 128000, 2028, 18598, 50683, 24271, 13440, 279, 16803, 5111, 12540, 12522, 51678, 435, 2509, 198, 41651, 18984, 21256, 11, 889, 1120, 2834, 264, 1401, 31719, 6156, 627, 9496, 1839, 429, 1277, 1129, 2185, 2452, 63696, 916, 4420, 292, 12, 26058, 18196, 4370, 14, 13787, 67467, 1474, 10922, 29836, 51877, 5392, 869, 12, 1032, 1824, 6362, 48260, 12, 4542, 21846, 3502, 10826, 32754, 9976, 10826, 22595, 40787, 10539, 5392, 869, 12, 1032, 12, 679, 16, 3502, 1474, 10922, 29836, 51877, 12, 1220, 10826, 68067, 1824, 6362, 48260, 12, 4542, 533, 479, 3502, 10826, 38702, 2628, 30, 3632, 30468, 39, 75, 17008, 41, 848, 55, 41, 56, 18, 47, 65, 15327, 3418, 10821, 86, 12, 16, 12, 1135, 760, 46107, 21456, 524, 64, 18597, 2059, 63696, 198, 791, 1455, 3062 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2028, 18598, 50683, 24271, 13440, 279, 16803, 5111, 12540, 12522, 51678, 435, 2509, 198, 41651, 18984, 21256, 11, 889, 1120, 2834, 264, 1401, 31719, 6156, 627, 9496, 1839, 429, 1277, 1129, 2185, 2452, 63696, 916, 4420, 292, 12, 26058, 18196, 4370, 14, 13787, 67467, 1474, 10922, 29836, 51877, 5392, 869, 12, 1032, 1824, 6362, 48260, 12, 4542, 21846, 3502, 10826, 32754, 9976, 10826, 22595, 40787, 10539, 5392, 869, 12, 1032, 12, 679, 16, 3502, 1474, 10922, 29836, 51877, 12, 1220, 10826, 68067, 1824, 6362, 48260, 12, 4542, 533, 479, 3502, 10826, 38702, 2628, 30, 3632, 30468, 39, 75, 17008, 41, 848, 55, 41, 56, 18, 47, 65, 15327, 3418, 10821, 86, 12, 16, 12, 1135, 760, 46107, 21456, 524, 64, 18597, 2059, 63696, 198, 791, 1455, 3062, -100 ]
The following is a list of the steps done using Harmony in a paperless animation workflow. This will help you understand how the work is divided and give you a base to start building your own paperless pipeline. Paperless animation is usually one of the first steps done in Harmony. All of the drawings are created digitally, using a pen tablet to optimize work and drawing ability. Other than the digital aspect, the animation principles are not very different from classical animation. The animator will use the same animation styles and methods as would be used on paper–only the medium is changed. When all of the animation is done and the drawing timing is completed through the exposure sheet or the Timeline view, the scene can proceed to the animation clean-up process. The animation clean-up consists of transforming the rough paperless animation into cleaned, tied down and inked drawings. On a new layer, the clean-up artist will trace the animation following the official model pack (document containing all the official character, location/props design and colours). This step must be done very accurately. When the clean-up is over, the scene is passed along to the colourist for the ink and paint step. At this point in the process, the colour models are ready and the drawings are properly exposed. Using Harmony's optimized tools, the colourist can start applying colour to the different drawings. When the drawings are inked and painted, they are ready for compositing.
{ "redpajama_set_name": "RedPajamaC4" }
9,332
[ 128000, 791, 2768, 374, 264, 1160, 315, 279, 7504, 2884, 1701, 66480, 304, 264, 5684, 1752, 10571, 29388, 13, 1115, 690, 1520, 499, 3619, 1268, 279, 990, 374, 18255, 323, 3041, 499, 264, 2385, 311, 1212, 4857, 701, 1866, 5684, 1752, 15660, 627, 31998, 1752, 10571, 374, 6118, 832, 315, 279, 1176, 7504, 2884, 304, 66480, 13, 2052, 315, 279, 38940, 527, 3549, 68878, 11, 1701, 264, 5869, 21354, 311, 30536, 990, 323, 13633, 5845, 13, 7089, 1109, 279, 7528, 13189, 11, 279, 10571, 16565, 527, 539, 1633, 2204, 505, 29924, 10571, 13, 578, 40144, 690, 1005, 279, 1890, 10571, 9404, 323, 5528, 439, 1053, 387, 1511, 389, 5684, 4235, 3323, 279, 11298, 374, 5614, 627, 4599, 682, 315, 279, 10571, 374, 2884, 323, 279, 13633, 18912, 374 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 791, 2768, 374, 264, 1160, 315, 279, 7504, 2884, 1701, 66480, 304, 264, 5684, 1752, 10571, 29388, 13, 1115, 690, 1520, 499, 3619, 1268, 279, 990, 374, 18255, 323, 3041, 499, 264, 2385, 311, 1212, 4857, 701, 1866, 5684, 1752, 15660, 627, 31998, 1752, 10571, 374, 6118, 832, 315, 279, 1176, 7504, 2884, 304, 66480, 13, 2052, 315, 279, 38940, 527, 3549, 68878, 11, 1701, 264, 5869, 21354, 311, 30536, 990, 323, 13633, 5845, 13, 7089, 1109, 279, 7528, 13189, 11, 279, 10571, 16565, 527, 539, 1633, 2204, 505, 29924, 10571, 13, 578, 40144, 690, 1005, 279, 1890, 10571, 9404, 323, 5528, 439, 1053, 387, 1511, 389, 5684, 4235, 3323, 279, 11298, 374, 5614, 627, 4599, 682, 315, 279, 10571, 374, 2884, 323, 279, 13633, 18912, 374, -100 ]
NVIDIA's G-Sync allows video cards to time the refresh rate of monitors. This is an advantage because the GPU knows when a frame is actually ready to be displayed to the user. The initial batch of announcements were each 1080p monitors, which are least likely to dip down into the 30-60Hz gap where G-Sync is noticeable. Today at Computex, ASUS has announced a 27", 2560x1440, 144Hz G-Sync display. This higher resolution is starting to reach the point where faster graphics cards struggle to maintain 60 FPS. Not only that, but it is one of the first 1440p panels that you can get which supports high (over 100Hz) refresh rates, officially. Others exist, but "rare" is an understatement. Its response rate is 1ms (GTG) which, unfortunately, suggests a TN panel. This might be a deal-breaker for some, but if you are looking for a G-Sync, 1440p, and high refresh rate panel, then it might be an acceptable compromise. The ASUS PG278Q is available in Q2, which ASUS seems to define as the beginning of May to the end of July, for $799 USD. Unfortunately for AMD fans, the panel does not seem to support FreeSync, recently added to DisplayPort 1.2a. FreeSync, of course, is the competitor to G-Sync that AMD proposed to the VESA standards body.
{ "redpajama_set_name": "RedPajamaC4" }
5,138
[ 128000, 45, 30452, 596, 480, 6354, 1756, 6276, 2835, 7563, 311, 892, 279, 10625, 4478, 315, 37577, 13, 1115, 374, 459, 9610, 1606, 279, 23501, 8964, 994, 264, 4124, 374, 3604, 5644, 311, 387, 12882, 311, 279, 1217, 13, 578, 2926, 7309, 315, 45976, 1051, 1855, 220, 6640, 15, 79, 37577, 11, 902, 527, 3325, 4461, 311, 24522, 1523, 1139, 279, 220, 966, 12, 1399, 11732, 13225, 1405, 480, 6354, 1756, 374, 43426, 627, 15724, 520, 24019, 327, 11, 75770, 706, 7376, 264, 220, 1544, 498, 220, 4146, 15, 87, 8929, 15, 11, 220, 8929, 11732, 480, 6354, 1756, 3113, 13, 1115, 5190, 11175, 374, 6041, 311, 5662, 279, 1486, 1405, 10819, 14515, 7563, 14993, 311, 10519, 220, 1399, 44728, 13, 2876, 1193, 430, 11, 719, 433, 374 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 45, 30452, 596, 480, 6354, 1756, 6276, 2835, 7563, 311, 892, 279, 10625, 4478, 315, 37577, 13, 1115, 374, 459, 9610, 1606, 279, 23501, 8964, 994, 264, 4124, 374, 3604, 5644, 311, 387, 12882, 311, 279, 1217, 13, 578, 2926, 7309, 315, 45976, 1051, 1855, 220, 6640, 15, 79, 37577, 11, 902, 527, 3325, 4461, 311, 24522, 1523, 1139, 279, 220, 966, 12, 1399, 11732, 13225, 1405, 480, 6354, 1756, 374, 43426, 627, 15724, 520, 24019, 327, 11, 75770, 706, 7376, 264, 220, 1544, 498, 220, 4146, 15, 87, 8929, 15, 11, 220, 8929, 11732, 480, 6354, 1756, 3113, 13, 1115, 5190, 11175, 374, 6041, 311, 5662, 279, 1486, 1405, 10819, 14515, 7563, 14993, 311, 10519, 220, 1399, 44728, 13, 2876, 1193, 430, 11, 719, 433, 374, -100 ]
Important information regarding the application process, forms, and tuition. All of the learning outcomes in the Program of Studies contain a religious dimension. The best tools to simplify and automate day-to-day processes, and find ways to make communication between schools and families easier and more accessible.
{ "redpajama_set_name": "RedPajamaC4" }
9,866
[ 128000, 53380, 2038, 9002, 279, 3851, 1920, 11, 7739, 11, 323, 39038, 627, 2460, 315, 279, 6975, 20124, 304, 279, 6826, 315, 19241, 6782, 264, 10597, 13167, 627, 791, 1888, 7526, 311, 40821, 323, 69711, 1938, 4791, 11477, 11618, 11, 323, 1505, 5627, 311, 1304, 10758, 1990, 8853, 323, 8689, 8831, 323, 810, 15987, 13, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 53380, 2038, 9002, 279, 3851, 1920, 11, 7739, 11, 323, 39038, 627, 2460, 315, 279, 6975, 20124, 304, 279, 6826, 315, 19241, 6782, 264, 10597, 13167, 627, 791, 1888, 7526, 311, 40821, 323, 69711, 1938, 4791, 11477, 11618, 11, 323, 1505, 5627, 311, 1304, 10758, 1990, 8853, 323, 8689, 8831, 323, 810, 15987, 13, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100 ]
Константин Иванович Иванов (1823—1887) — русский военный , генерал, участник Среднеазиатских походов. Биография Первоначальное образование получил в 1-м кадетском корпусе, откуда выпущен в 1838 году. 2 августа 1843 года окончил курс в Николаевском инженерном училище и был произведён в прапорщики корпуса военных инженеров. В училище познакомился с Фёдором Достоевским. Их знакомство продолжалось до самой смерти писателя, а позже Иванов поддерживал отношения с его вдовой, А. Г. Достоевской. Ещё из Сибири (февраль 1854 года) Достоевский писал М. М. Достоевскому, своему старшему брату, об Иванове: «Он сделал для меня всё, что мог. <…> Чем заплатить за это радушие, всегдашнюю готовность исполнить всякую просьбу, внимание и заботливость как о родном брате…» К сожалению, переписка Достоевского с Ивановым не сохранилась. В 1844—1848 гг. служил в Санкт-Петербургской и в Кронштадтской инженерной дистанции, с 1848 года по 1854 год служил в Западной Сибири, принимал участие в основании нескольких крепостей на среднеазиатской границе. В 1852 году обвенчался с Ольгой Ивановной Анненковой (1830—1891), дочерью декабриста Ивана Александровича Анненкова. В 1854 году переведён в Санкт-Петербург и в 1856 году назначен адъютантом штаба Его Высочества генерал-инспектора по инженерной части. С этих пор для Иванова, заслужившего особое расположение генерала Э. И. Тотлебена, начинается ряд быстрых повышений. В 1862 году он был переведён штабс-капитаном в Лейб-гвардии сапёрный батальон; в 1863 году получил чин полковника и в 1864 году назначен начальником штаба начальника инженеров Кавказской армии, потом помощником начальника инженеров Кавказского округа, 25 января 1868 году произведён в генерал-майоры, с назначением вновь в Сибирь, на должность начальника инженеров Восточно-Сибирского округа. В 1875 году, с упразднением этой должности, он вернулся в европейскую Россию, в 1876 году назначен помощником начальника Главного инженерного управления, 30 августа 1881 года был произведён в генерал-лейтенанты и вскоре назначен членом Инженерного комитета. Имел ордена св. Станислава 1-й степени (1872), св. Анны 1-й степени (1875 г.), св. Владимира 2-й степени (1878). Умер 2 апреля 1887 года в Санкт-Петербурге, похоронен на кладбище Новодевичьего монастыря. Источники Список генералам по старшинству на 1886 год. СПб., 1886. Персоналии, чья дата рождения не установлена Выпускники Первого кадетского корпуса Участники Среднеазиатских походов Генерал-лейтенанты (Российская империя) Похороненные на Новодевичьем кладбище (Санкт-Петербург)
{ "redpajama_set_name": "RedPajamaWikipedia" }
5,991
[ 128000, 115644, 52037, 105558, 127009, 34082, 127009, 320, 10828, 18, 2345, 9367, 22, 8, 4194, 2345, 110950, 101591, 100797, 106253, 1174, 107524, 7753, 16331, 11, 105763, 70959, 125375, 79862, 19188, 1840, 8131, 104901, 120441, 6856, 382, 61432, 1840, 114173, 720, 99674, 101450, 31281, 111300, 102294, 105216, 52432, 64292, 5927, 220, 16, 113634, 124537, 8341, 106292, 122602, 1532, 11, 20879, 36352, 40590, 72060, 43293, 5372, 5927, 220, 10750, 23, 103361, 382, 17, 120084, 220, 10336, 18, 101932, 113140, 113137, 117497, 5927, 111035, 105070, 33742, 106292, 42078, 125830, 94962, 14257, 111948, 100588, 7740, 102885, 102907, 36750, 104559, 5927, 5173, 120163, 9239, 100803, 17165, 112038, 112955, 100797, 104967, 42078, 104571, 113084, 382, 16604, 14257, 111948, 100588, 101472, 119553, 12507, 107638, 5524, 67891, 45122, 7094, 120426, 39903, 25262, 1482, 33742, 114024, 13 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 115644, 52037, 105558, 127009, 34082, 127009, 320, 10828, 18, 2345, 9367, 22, 8, 4194, 2345, 110950, 101591, 100797, 106253, 1174, 107524, 7753, 16331, 11, 105763, 70959, 125375, 79862, 19188, 1840, 8131, 104901, 120441, 6856, 382, 61432, 1840, 114173, 720, 99674, 101450, 31281, 111300, 102294, 105216, 52432, 64292, 5927, 220, 16, 113634, 124537, 8341, 106292, 122602, 1532, 11, 20879, 36352, 40590, 72060, 43293, 5372, 5927, 220, 10750, 23, 103361, 382, 17, 120084, 220, 10336, 18, 101932, 113140, 113137, 117497, 5927, 111035, 105070, 33742, 106292, 42078, 125830, 94962, 14257, 111948, 100588, 7740, 102885, 102907, 36750, 104559, 5927, 5173, 120163, 9239, 100803, 17165, 112038, 112955, 100797, 104967, 42078, 104571, 113084, 382, 16604, 14257, 111948, 100588, 101472, 119553, 12507, 107638, 5524, 67891, 45122, 7094, 120426, 39903, 25262, 1482, 33742, 114024, 13, -100 ]
What Melbourne Loved in 2017, part 8 Today we have three awesome indie theatre makers whose work I haven't seen this year. Bron Batten Theatre-maker, Producer and Performer bronbatten.com Bron Batten in Onstage Dating. Photo by John Leonard Favourite moments in 2017 I haven't seen much this year because I've been touring so much (#humblebrag) but I did manage to catch a few great pieces that really touched and stayed with me. I too wish to jump on the Nanette bandwagon and state what a remarkable piece of performance it is. Hannah Gadsby's restrained yet furious and impassioned plea for tolerance and acceptance is inspiring both in its sophistication and emotion as well as its hilarity. Nanette is a perfect example of how truly simple, artful and devastating stand-up can be when undertaken by a master performer, and I have no doubt her 'retirement' will be hampered by that fact that this work will tour for years. I forgot to mention this last year, but as it toured again this year, I'll include Nat Randall's The Second Woman. This work is completely brilliant, compelling, funny, emotional and addictive and I'm so so glad it has more well-deserved presentations lined up for 2018. I saw Powerballad by New Zealand performers and theatre makers Julia Croft and Nisha Madhan in Edinburgh and the show then toured to Melbourne Fringe. I made a brief cameo in the work over several nights in Scotland (#humblebrag), which allowed me to see how Julia sensitively crafted her excellent performance in response to the audience. A surreal and at times absurd response to the dominant structures of language, Powerballad also managed to be funny, self-aware and include karaoke – which are all wins in my book. Angels in America at fortyfivedownstairs was a compelling and artful staging of a classic text and I managed to watch all six hours without getting bored – much to the disbelief of its director Gary Abrahams. And a recent addition to this list was Romeo is Not The Only Fruit as part of Poppy Seed Festival. I really, really loved this show and it totally deserves to become Australia's answer to Alison Bechdel's Fun Home. Looking forward to in 2018 As for next year, I'm looking forward to Ich Nibber Dibber from post and Bryony Kimmings's A Pacifists Guide to the War on Cancer, both on at The Malthouse. Kimmings's Credible Likeable Superstar Role Model is perhaps one of my favourite shows ever, so I'm really excited to see this new work. SM: Goodness, I haven't seen Bron perform this year! But, to be fair, she was Onstage Dating all over the place (and that's still one of my favourite shows ever). I do remember sitting with her at a Comedy Festival show and laughing very loudly and wondering if I'd laughed that loudly at one of her shows and feeling the need to explain that sometimes I don't laugh loudly because I'm listening. Emilie Collyer Playwright, writer betweenthecracks.net Emilie Collyer. Photo by Ross Daniels I first want to acknowledge that the theatre made this year in Naarm/Melbourne was made on the lands of the Kulin Nation. This always was and always will be Aboriginal land. Sovereignty was never ceded and it's time for a treaty. I loved a lot and a lot has already been loved. I kind of love/hate lists because #inclusion/exclusion issues. But I love this series because it provides a multitude of voices and reminds us we are all capable of more than one kind of loving and of the kind of great big beautiful polyamorous adventure that is theatre in Melbourne. So these are things that have lingered with me well into the morning-after glow this year. Strap in. I have a lot to say. All the new writing because, well, that's my jam so I DO mean all of it. Standouts were Rashma N Kalsie's Melbourne Talem, Natesha Somasundaram's Jeremy and Lucas Buy a Fucking House, Amelia Newman's Younger and Smaller and Alexithymia (Citizen Theatre and A_Tistic, by Tom Middleditch). There were all worlds I loved being in and can't wait for more from these writers. The students I worked with at Melbourne and Deakin unis who are making thoughtful, considered, powerful, often feminist, queer and radical work. I was particularly impressed by the ensemble work at Deakin and being in a room as these young theatre makers grappled with the art form and had such respectful debates about the work and really collaborated deep and hard. The bomb. Huge shout out to Little Ones Theatre. Three massive shows this year and every one of them brought something remarkable to audiences from the shiny beauty of The Happy Prince to the hilarious and stylish-to-die-for The Moors and the epicly-ambitious Merciless Gods. Dark and delicious, The Moors, I reckon, was my favourite play of the year. All at ArtsHouse: Excerpts from the Past by KwaZulu-Natal artist Sethembile Msezane took my breath away with its clarity and power. The panel Art and Action: Displacing Whiteness in the Arts hosted by Tania Cañas started conversations we need more of, putting voices front and centre who need bigger and louder public platforms. As did Tribunal (PYT, Fairfield). Emily Tomlins's arms (Niche). Nisha Joseph's G-MA's erotic food preparation instructions (Romeo Is Not The Only Fruit). Dan Clarke's Kiln Program at Arts Centre Melbourne that gave space to such a range of makers, writers and imaginers. In particular Black Girl Magic (Melbourne) featuring Kween and, curated by Sista Zai. I was sitting next to a young Muslim woman watching this fabulous show and she asked if I had been to the Arts Centre very often. I said yes and she said it was her first time. And she looked supremely happy and confident to be there. That event had made it her space. As it should be. So huge props to all the wonderful people smashing down barriers of who owns cultural spaces. This includes Kate Hood's company Raspberry Ripple and the first of their play reading series (Love Child by Joanna Murray-Smith) with casts that include both actors with disabilities and those without present Australian plays. In a year where I needed to fill my own well I did some wonderful workshops. With Jane Bodie (Kiln), Candy Bowers (Kiln), The Rabble (MTC), Inua Ellamns (Arts Centre). The generosity of these makers in sharing their knowledge and their approaches to craft was phenomenal. And the work that held me in the most unique theatrical space of the year was Fraught Outfit's Book of Exodus Part 2. That incredible poetic, dream-like place. It also reminded me of the privilege of seeing a company work over several years around a theatrical and visual theme. This piece seemed to me like such a clear crystallisation of what Fraught Outfit has been exploring in their Innocence Trilogy and that design by Eugyeene Teh. Good lord! Well a lot of the indie seasons haven't been announced yet and I know that's where my juiciest anticipated works will be and I know some awesome things are coming from stellar people like Petra Kalive, Rachel Perks, Bridget Balodis and Mary Anne Butler. I'm also looking forward to seeing a Melbourne season of The Drover's Wife; if not in 2018, then the not too distant future. Of the mainstage seasons, most excited about Jean Tong's Hungry Ghosts, Patricia Cornelius's The House of Bernarda Alba, Michele Lee's Going Down and Nakkiah Lui's Blackie Blackie Brown: The Traditional Owner of Death. SM: I'm looking forward to some new stage work by Emilie next yea, but I've really enjoyed reading some of her other published work this year, including this piece in The Lifted Brow. Kerith Manderson-Glavin Performance maker unofficialkerithfanclub.com Kerith Manderson-Galvin You're Not Alone. It surprised me and I surprised myself; I went in ready to be horrified and prepared to walk out. Instead, I saw it twice. Both times I found it hard to leave the Malthouse afterwards. I wanted to stay there and think and talk and think more. I loved it for so many reasons but I loved that it really felt like it needed an audience – which is the point of performance, right? It was alive. Oh my god, I loved it so much I wish I could see it again. I emailed Malthouse thanking them – I just remembered that, hahaha what a weird thing to do. Wow. I just loved it. I love it. Wow. Patti Smith. I sense my experience of Patti Smith was similar to the experience of *the big show everyone keeps talking about*. The first note she sang the whole of Hamer Hall gasped and held their breath. I am certain we all experienced the same journey that night and that's a remarkable power. Religious. I held my friend's hand and we cried at the same time and laughed at the time and at the end we were exhausted and had to go home and then for a bit I couldn't listen to Patti Smith because it made me feel too many feelings. Also. Nick Cave, 10 000 Gestures (in Paris – la dee ddaaaa), Bacchae – Prelude to a Purge (in Berlin – oh Berlin you were my favourite performance of 2017). And every night I got to perform with my brother in The Eternity Of The World and I felt so completely safe for every chaotic second I really like Nicola Gunn's headshot on the MTC website. It appears they have cropped the image for Working with Children and then made it black and white and used it as a headshot. She looks very beautiful. Wait, maybe they are different photos? In the headshot, she has on a black scivvy. (I really think she has an exquisite brain and talent.) I'd like to go see The Wooster Group show in Sydney Festival (The Town Hall Affair) because it feels like something I should like to see. Maybe I will. SM: Did I really not see anything of Kerith's this year? So, I'm going with that she might seriously like cats more than I do. Labels: Arts House, Bron Batten, Bryony Kimmings, Dan Clarke, Emilie Collyer, Gary Abrahams, Hannah Gadsby, Kerith Manderson-Galvin, Little Ones Theatre, Nicola Gunn, post, Tom Middleditch What Melbourne Loved in 2017, part 11 What I loved in 2017: the best of Melbourne theatr...
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
33
[ 128000, 3923, 27535, 85127, 304, 220, 679, 22, 11, 961, 220, 23, 198, 15724, 584, 617, 2380, 12738, 44578, 34596, 29414, 6832, 990, 358, 9167, 956, 3970, 420, 1060, 627, 42059, 426, 14795, 198, 791, 16091, 84701, 11, 44459, 323, 26050, 261, 198, 68557, 65, 14795, 916, 198, 42059, 426, 14795, 304, 1952, 21406, 17783, 13, 11064, 555, 3842, 41954, 198, 37, 52488, 14269, 304, 220, 679, 22, 198, 40, 9167, 956, 3970, 1790, 420, 1060, 1606, 358, 3077, 1027, 48551, 779, 1790, 30183, 71, 23568, 1347, 351, 8, 719, 358, 1550, 10299, 311, 2339, 264, 2478, 2294, 9863, 430, 2216, 24891, 323, 20186, 449, 757, 627, 40, 2288, 6562, 311, 7940, 389, 279, 33242, 6672, 7200, 94219, 323, 1614, 1148, 264, 23649, 6710, 315, 5178, 433, 374 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 3923, 27535, 85127, 304, 220, 679, 22, 11, 961, 220, 23, 198, 15724, 584, 617, 2380, 12738, 44578, 34596, 29414, 6832, 990, 358, 9167, 956, 3970, 420, 1060, 627, 42059, 426, 14795, 198, 791, 16091, 84701, 11, 44459, 323, 26050, 261, 198, 68557, 65, 14795, 916, 198, 42059, 426, 14795, 304, 1952, 21406, 17783, 13, 11064, 555, 3842, 41954, 198, 37, 52488, 14269, 304, 220, 679, 22, 198, 40, 9167, 956, 3970, 1790, 420, 1060, 1606, 358, 3077, 1027, 48551, 779, 1790, 30183, 71, 23568, 1347, 351, 8, 719, 358, 1550, 10299, 311, 2339, 264, 2478, 2294, 9863, 430, 2216, 24891, 323, 20186, 449, 757, 627, 40, 2288, 6562, 311, 7940, 389, 279, 33242, 6672, 7200, 94219, 323, 1614, 1148, 264, 23649, 6710, 315, 5178, 433, 374, -100 ]
Rakim on NPR radio Last.fm interview about the latest album, The Seventh Seal On the way back up to LA from my trip to Tijuana, Mexico I heard a familiar voice on NPR...but wait. What's Rakim Allah doing talking to the middle-class of America? Guy Raz managed to get an interview with Rakim to discuss his first album for over a decade. There's a lot to be learnt from the interview, even for an old skool b-boy like myself. Did you know Rakim plays the saxophone?! The interview is interspersed with new tracks from "The Seventh Seal," including the title track and banger "Holy Are You" (which samples the Electric Prunes classic produced by David Axelrod.) Rap's Guardian Rakim has been recognized by his platinum-selling peers as the "God M.C.," yet he isn't resting on his laurels. With this new album Rakim is taking responsibility to stop rap's dilution and urges New York rap artists' to uphold a higher lyrical standard. "Some rappers that may have been a little more conscious when they came out — they're a little more party-rap right now," he says. "We gotta let hip-hop grow. We gotta let it go through its different phases throughout the different places that's accepting it. But I feel: Certain places, like New York, we need to keep our integrity and make sure that it's doing that thing that caught the world's ear in the beginning. "Lyrical content is getting a lot of slack right now, and it's making hip-hop look less of what it is," Rakim says. "If we can get back to the essence of it — I'm trying to make it a little more melodic, where people are respecting it more as a genre." Going back in time Rakim recounts the tale of being a high-school student on Long Island and what happened after playing Eric B a demo tape of his raps. "At the time, I was trying to go to Stony Brook [University] and play quarterback," Rakim says. "I love football. ... I had a little tape that I had, ready to go to college with me; just in case there was any rappers up there, I can just put my tape in, you know? "But I played that for Eric B, and he was interested, told me, 'We can make a record.' And things turned out where I couldn't go to college. I had to focus on my rap career; things kind of took off fast. Man, I had no idea it was going to be that big." Labels: Eric B, Hip Hop, Old Skool, Rakim, Rap posted by Stevio @ Sunday, November 22, 2009 LA->OC->TJ - Adventures south of the border Hip-hop pioneer - DJ Kool Herc The film Lil' Wayne tried to ban! WK Interact comes to LA Mis-spent British/Bristol youth RIP DJ Roc Raida...World Champ will.i.am's crib The man behind the B-Boy classic: "Planet Rock" RIP Mr. Magic - WBLS 107.5FM Scion Installion #5 - VIPs
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
7,752
[ 128000, 49, 587, 318, 389, 45300, 9063, 198, 5966, 71585, 7274, 922, 279, 5652, 8176, 11, 578, 75725, 53625, 198, 1966, 279, 1648, 1203, 709, 311, 13256, 505, 856, 8577, 311, 350, 64274, 3444, 11, 12550, 358, 6755, 264, 11537, 7899, 389, 45300, 1131, 8248, 3868, 13, 3639, 596, 69892, 318, 28471, 3815, 7556, 311, 279, 6278, 15144, 315, 5270, 5380, 79315, 77919, 9152, 311, 636, 459, 7274, 449, 69892, 318, 311, 4358, 813, 1176, 8176, 369, 927, 264, 13515, 13, 2684, 596, 264, 2763, 311, 387, 50350, 505, 279, 7274, 11, 1524, 369, 459, 2362, 1940, 1786, 293, 86003, 1093, 7182, 13, 14910, 499, 1440, 69892, 318, 11335, 279, 64108, 78303, 27074, 578, 7274, 374, 82019, 32390, 291, 449, 502, 14242, 505, 330, 791, 75725, 53625, 1359 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 49, 587, 318, 389, 45300, 9063, 198, 5966, 71585, 7274, 922, 279, 5652, 8176, 11, 578, 75725, 53625, 198, 1966, 279, 1648, 1203, 709, 311, 13256, 505, 856, 8577, 311, 350, 64274, 3444, 11, 12550, 358, 6755, 264, 11537, 7899, 389, 45300, 1131, 8248, 3868, 13, 3639, 596, 69892, 318, 28471, 3815, 7556, 311, 279, 6278, 15144, 315, 5270, 5380, 79315, 77919, 9152, 311, 636, 459, 7274, 449, 69892, 318, 311, 4358, 813, 1176, 8176, 369, 927, 264, 13515, 13, 2684, 596, 264, 2763, 311, 387, 50350, 505, 279, 7274, 11, 1524, 369, 459, 2362, 1940, 1786, 293, 86003, 1093, 7182, 13, 14910, 499, 1440, 69892, 318, 11335, 279, 64108, 78303, 27074, 578, 7274, 374, 82019, 32390, 291, 449, 502, 14242, 505, 330, 791, 75725, 53625, 1359, -100 ]
3 WAYS TO COPE WITH DIVORCE - The Law Offices of Mary Ann Beaty, P.C. The idea of divorce may seem like a welcome one. After years of being married to your spouse in Texas, you are finally ready to set yourself free to start living the life you feel you deserve. As liberating as this situation can be, it is important for you to understand how stressful and challenging the process is. To prevent the turmoil of divorce from wreaking havoc on your life, take some time to review the following three suggestions on how to cope with it. Your spouse may not like the idea that you are leaving. He or she may resort to doing and saying things to get a negative reaction out of you. He or she may disagree with every negotiation attempt you make and may do his or her best to try and cheat you out of your share of marital assets. Avoid arguing with your former spouse. Stay calm and do not allow him or her to make you lose your cool. By keeping your emotions withdrawn from the situation, you put yourself in a better position to negotiate, consider all options and make the best decisions for you. You should spend more time with people and family who will support you throughout this ordeal. There will be times where you may feel hurt, angry and low. Your loved ones can prevent you from becoming depressed, letting yourself go physically, and keep you emotionally balanced. Your circumstances are changing. Start working on yourself to improve your post-divorce lifestyle. Even though you may be losing your spouse's income, that does not mean you have to sacrifice your health, wealth and happiness. Consider going back to school to earn a higher degree or certification to improve your professional credentials. Learn a new skill, hobby or apply for a better job. The goal is for you to focus on yourself so you can be happy and financially stable. Depending on your situation, there may be challenges for you to overcome. However, by taking the time to plan your way out and take care of yourself, you can achieve the divorce outcome you desire.
{ "redpajama_set_name": "RedPajamaC4" }
4,459
[ 128000, 18, 468, 22838, 5257, 7432, 1777, 4874, 47360, 878, 2152, 482, 578, 7658, 87638, 315, 10455, 9489, 27894, 88, 11, 393, 732, 627, 791, 4623, 315, 25549, 1253, 2873, 1093, 264, 10788, 832, 13, 4740, 1667, 315, 1694, 12502, 311, 701, 32080, 304, 8421, 11, 499, 527, 5616, 5644, 311, 743, 6261, 1949, 311, 1212, 5496, 279, 2324, 499, 2733, 499, 23528, 13, 1666, 34929, 1113, 439, 420, 6671, 649, 387, 11, 433, 374, 3062, 369, 499, 311, 3619, 1268, 46883, 323, 17436, 279, 1920, 374, 627, 1271, 5471, 279, 63355, 315, 25549, 505, 83675, 287, 66592, 389, 701, 2324, 11, 1935, 1063, 892, 311, 3477, 279, 2768, 2380, 18726, 389, 1268, 311, 37586, 449, 433, 627, 7927, 32080, 1253, 539, 1093, 279, 4623, 430, 499, 527 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 18, 468, 22838, 5257, 7432, 1777, 4874, 47360, 878, 2152, 482, 578, 7658, 87638, 315, 10455, 9489, 27894, 88, 11, 393, 732, 627, 791, 4623, 315, 25549, 1253, 2873, 1093, 264, 10788, 832, 13, 4740, 1667, 315, 1694, 12502, 311, 701, 32080, 304, 8421, 11, 499, 527, 5616, 5644, 311, 743, 6261, 1949, 311, 1212, 5496, 279, 2324, 499, 2733, 499, 23528, 13, 1666, 34929, 1113, 439, 420, 6671, 649, 387, 11, 433, 374, 3062, 369, 499, 311, 3619, 1268, 46883, 323, 17436, 279, 1920, 374, 627, 1271, 5471, 279, 63355, 315, 25549, 505, 83675, 287, 66592, 389, 701, 2324, 11, 1935, 1063, 892, 311, 3477, 279, 2768, 2380, 18726, 389, 1268, 311, 37586, 449, 433, 627, 7927, 32080, 1253, 539, 1093, 279, 4623, 430, 499, 527, -100 ]
Modeled in Blender, sculpt in Mudbox. Personal concept. Composite photography and 3D modeling. Personal design. Modeled in Blender, sculpted and textured in Mudbox. Rifle is modeled and textured in a similar fashion. Composite made in Photoshop. Various skins for Prehistoric Kingdom's Triceratops. All available texture options for Pachyrhinosaurus for Prehistoric Kingdom. Normal map sculpt for Pachyrhinosaurus for Prehistoric Kingdom. Detail of male Default skin for Pachyrhinosaurus for Prehistoric Kingdom. All available skin options for Styracosaurus for Prehistoric Kingdom.
{ "redpajama_set_name": "RedPajamaC4" }
6,009
[ 128000, 3720, 839, 304, 88668, 11, 27863, 304, 69440, 2054, 13, 19758, 7434, 627, 42785, 24685, 323, 220, 18, 35, 34579, 13, 19758, 2955, 13, 14904, 839, 304, 88668, 11, 27863, 291, 323, 74644, 304, 69440, 2054, 13, 48138, 374, 62653, 323, 74644, 304, 264, 4528, 11401, 13, 41739, 1903, 304, 45979, 627, 73741, 51050, 369, 5075, 74416, 15422, 596, 1183, 13296, 266, 3806, 627, 2460, 2561, 10651, 2671, 369, 393, 613, 11160, 71, 15570, 43613, 369, 5075, 74416, 15422, 627, 12484, 2472, 27863, 369, 393, 613, 11160, 71, 15570, 43613, 369, 5075, 74416, 15422, 627, 10876, 315, 8762, 8058, 6930, 369, 393, 613, 11160, 71, 15570, 43613, 369, 5075, 74416, 15422, 627, 2460, 2561, 6930, 2671, 369, 800, 11160, 42747, 43613, 369, 5075, 74416, 15422, 13, 128256 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 ]
[ 3720, 839, 304, 88668, 11, 27863, 304, 69440, 2054, 13, 19758, 7434, 627, 42785, 24685, 323, 220, 18, 35, 34579, 13, 19758, 2955, 13, 14904, 839, 304, 88668, 11, 27863, 291, 323, 74644, 304, 69440, 2054, 13, 48138, 374, 62653, 323, 74644, 304, 264, 4528, 11401, 13, 41739, 1903, 304, 45979, 627, 73741, 51050, 369, 5075, 74416, 15422, 596, 1183, 13296, 266, 3806, 627, 2460, 2561, 10651, 2671, 369, 393, 613, 11160, 71, 15570, 43613, 369, 5075, 74416, 15422, 627, 12484, 2472, 27863, 369, 393, 613, 11160, 71, 15570, 43613, 369, 5075, 74416, 15422, 627, 10876, 315, 8762, 8058, 6930, 369, 393, 613, 11160, 71, 15570, 43613, 369, 5075, 74416, 15422, 627, 2460, 2561, 6930, 2671, 369, 800, 11160, 42747, 43613, 369, 5075, 74416, 15422, 13, -100, -100 ]
Haitian American • Music Netflix Prepping Animated Film Based on Wyclef Jean's Childhood Photo by: Karl Ferguson Jr. (www.karlfergusonjr.com) Haitian legendary singer and actor Wyclef Jean is putting his story on film. Netflix announced they are working with musical visionary on a CG animated feature film that reimagines his life story. Stampede, the recently launched entertainment media company from Greg Silverman, is partnering with the three-time Grammy Award-winning musician to produce the feature film, which will be written by Justin Marks (The Jungle Book, Counterpart). The film will be based on the real-life story of Jean's childhood in Haiti. "I grew up in extreme poverty but I was rich with imagination," Jean said. "Now to see that imagination turn into reality with Netflix and my producing partners makes me want to tell the kids from the slums around the world to never stop dreaming." "When Wyclef first came to us with the rich story idea for an animated film about his personal journey and the evolution of his music from when he was a young boy in Haiti to finding his voice in New York City – we were hooked," said Melissa Cobb, Vice President of Kids and Family at Netflix. "Animation is a medium that travels the globe exceptionally well and we cannot wait to share Wyclef's unique perspective and voice with family audiences around the world." "When I was seventeen years old, two things had a huge impact on my life: the music of Wyclef Jean and the spirit of his home country, Haiti. I've been lucky enough to have visited Haiti and worked alongside its people several times over the years, and I've long wanted to tell a story about its vibrant and resilient culture. If you'd have told Teenage Me that one day I'd get to work with Wyclef on a movie like this, I'd have never believed you. This movie is an honor and a thrill, and I'm grateful to Greg, Stampede, and Netflix for making it a reality," added Justin Marks. "Haiti holds a special place in my heart, and Wyclef and Justin's film will showcase this magical country in their unique and signature style. We've been delighted to partner with them and Netflix on this astounding film," said Silverman of the new project. Silverman and Jean will serve as producers for the film. Madeline Nelson and Nick Lewin will co-produce and Cara Fano will oversee the project for Stampede. Source: Netflix.com Tagshaitian Haitian American Netflix Wyclef Jean Haitian Fresh Shows Love To Haiti In New "Sanzave" Video Feat. Zoey Dollaz Love & Hip Hop Creator Mona Scott-Young Inks Deal With Lionsgate TV A look at VH1 Black Ink Crew Chicago's Charmaine #GrowingUpHaitian 🇭🇹😁 And will spoil them SUCCESS DIARIES with KAREN CIVIL Suite Life Vlog : "When Did You Know You Were Haitian?" Suite Life Vlog : Haiti Through My Eyes Episode 1 Johnny Stephene, Ball Handling Trainer to The Stars Haitian Pop? Meet DJ Dumi & Prince OLi & Listen To New Track "Right One"
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
7,993
[ 128000, 39, 1339, 1122, 3778, 7436, 10948, 198, 81566, 5075, 10964, 47988, 17042, 20817, 389, 468, 5566, 69, 20263, 596, 72410, 198, 10682, 555, 25, 35131, 38476, 16014, 13, 320, 2185, 5314, 49358, 809, 70, 355, 263, 60013, 916, 340, 39, 1339, 1122, 28812, 23597, 323, 12360, 468, 5566, 69, 20263, 374, 10917, 813, 3446, 389, 4632, 13, 23469, 7376, 814, 527, 3318, 449, 18273, 87490, 389, 264, 6290, 11625, 4668, 4632, 430, 312, 29116, 1572, 813, 2324, 3446, 627, 21576, 15686, 11, 279, 6051, 11887, 16924, 3772, 2883, 505, 16431, 15347, 1543, 11, 374, 70220, 449, 279, 2380, 7394, 74679, 17768, 27875, 39844, 311, 8356, 279, 4668, 4632, 11, 902, 690, 387, 5439, 555, 23278, 49195, 320, 791, 60763, 6017, 11, 20315, 4581, 570, 578, 4632, 690 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 39, 1339, 1122, 3778, 7436, 10948, 198, 81566, 5075, 10964, 47988, 17042, 20817, 389, 468, 5566, 69, 20263, 596, 72410, 198, 10682, 555, 25, 35131, 38476, 16014, 13, 320, 2185, 5314, 49358, 809, 70, 355, 263, 60013, 916, 340, 39, 1339, 1122, 28812, 23597, 323, 12360, 468, 5566, 69, 20263, 374, 10917, 813, 3446, 389, 4632, 13, 23469, 7376, 814, 527, 3318, 449, 18273, 87490, 389, 264, 6290, 11625, 4668, 4632, 430, 312, 29116, 1572, 813, 2324, 3446, 627, 21576, 15686, 11, 279, 6051, 11887, 16924, 3772, 2883, 505, 16431, 15347, 1543, 11, 374, 70220, 449, 279, 2380, 7394, 74679, 17768, 27875, 39844, 311, 8356, 279, 4668, 4632, 11, 902, 690, 387, 5439, 555, 23278, 49195, 320, 791, 60763, 6017, 11, 20315, 4581, 570, 578, 4632, 690, -100 ]
Based on a concept from CLCT Director and Chancellor Professor of Law Fredric Lederer, our Fairytale Trial program is a public outreach mission to teach K-12 students the basics of the U.S. justice system. Each year, elementary and middle school students in Virginia are invited to participate in a mock trials in which witnesses and parties are based on classic fairytale characters or creatures. The characters and their respective classic stories are each given an odd or idiosyncratic twist that creates a legal problem that is at the center of the mock trial. CLCT staff participate in the mock trials as witnesses, judges, and counsel. The K-12 students, will serve as the jury and determine the verdict. Although fanciful (and highly entertaining), the Fairytale Trials can also be immensely realistic. While typically set in hypothetical "jurisdictions," the trials usually comply with the Federal Rules of Criminal and Civil Procedure and the Federal Rules of Evidence. Use of the McGlothlin Courtroom allows for electronic presentation of evidence and remote testimony, simulating the high-tech nature of the modern courtroom and facilitating CLCT's mission as an ambassador of legal technology. Through these programs, the next generation of lawyers, judges, and parties are exposed to the American justice system, issues of evidence and reliable testimony, problem solving, persuasion, and multiple ways of viewing an issue. Since its inception in the 1990s, this program has enjoyed massive success and popularity, as evidenced by its frequent coverage by the local media. Currently, CLCT conducts this program approximately twice per semester, serving over 200 students a year. Teachers may request that a trial be scheduled for their students. Primary and middle school teachers, administrators, and parents in Virginia are welcome to contact CLCT about the possibility of their students participating in this highly-entertaining, informative, and educational program. For further information, including dates of the next Fairytale Trial, please contact us at [email protected] or 757-221-2494. This content has been updated on February 26, 2019 at 2:49 pm.
{ "redpajama_set_name": "RedPajamaC4" }
9,226
[ 128000, 29815, 389, 264, 7434, 505, 7121, 1182, 10783, 323, 48063, 17054, 315, 7658, 28588, 2265, 445, 7442, 261, 11, 1057, 14930, 16820, 1604, 41574, 2068, 374, 264, 586, 47210, 9131, 311, 4639, 735, 12, 717, 4236, 279, 32874, 315, 279, 549, 815, 13, 12437, 1887, 13, 9062, 1060, 11, 36256, 323, 6278, 2978, 4236, 304, 13286, 527, 18719, 311, 16136, 304, 264, 8018, 19622, 304, 902, 28823, 323, 9875, 527, 3196, 389, 11670, 6762, 16820, 1604, 5885, 477, 20566, 13, 578, 5885, 323, 872, 20081, 11670, 7493, 527, 1855, 2728, 459, 10535, 477, 887, 3614, 1756, 81, 780, 27744, 430, 11705, 264, 5897, 3575, 430, 374, 520, 279, 4219, 315, 279, 8018, 9269, 13, 7121, 1182, 5687, 16136, 304, 279, 8018, 19622, 439, 28823, 11, 24958, 11 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 29815, 389, 264, 7434, 505, 7121, 1182, 10783, 323, 48063, 17054, 315, 7658, 28588, 2265, 445, 7442, 261, 11, 1057, 14930, 16820, 1604, 41574, 2068, 374, 264, 586, 47210, 9131, 311, 4639, 735, 12, 717, 4236, 279, 32874, 315, 279, 549, 815, 13, 12437, 1887, 13, 9062, 1060, 11, 36256, 323, 6278, 2978, 4236, 304, 13286, 527, 18719, 311, 16136, 304, 264, 8018, 19622, 304, 902, 28823, 323, 9875, 527, 3196, 389, 11670, 6762, 16820, 1604, 5885, 477, 20566, 13, 578, 5885, 323, 872, 20081, 11670, 7493, 527, 1855, 2728, 459, 10535, 477, 887, 3614, 1756, 81, 780, 27744, 430, 11705, 264, 5897, 3575, 430, 374, 520, 279, 4219, 315, 279, 8018, 9269, 13, 7121, 1182, 5687, 16136, 304, 279, 8018, 19622, 439, 28823, 11, 24958, 11, -100 ]
\section{Introduction} Bosonization of $(1+1)$-dimensional field models has been widely investigated along the years \cite{5}; and has its historical roots in the investigations of Klaiber on Thirring Model \cite{1}, and Lowestein and Swieca on Schwinger model \cite{2}. And, since Coleman's proof of the equivalence between the massive Thirring and sine-Gordon models \cite{6}, the concept of bosonization has been claimed as a remarkable tool to obtain some nonperturbative information of $(1+1)$-dimensional theories; the bosonization prescription is now well-understood and rigorously established at both operator and functional frameworks \cite{7,20}. The bosonization of two-dimensional models at finite temperature also receives largely attention nowdays \cite{16}. Although it was a common belief, that the bosonization was a exclusive property of $(1+1)$-dimensional theories, where there is, indeed, no spin to distinguish fermions from boson; the need of a powerful tool to extract nonpertubative content from $(2+1)$-dimensional field theories, leads to a development of the bosonization to such theories \cite{21}; which has its intrinsic pathologies and also, rich and beauty properties. However, the most bosonization treatments in $(2+1)$-dimensional theories regard to a perturbative calculation of the fermionic determinant. Those $(2+1)$-dimensional theories, abelian and non-abelian ones, had a renew interest at different perspectives which had lead to a growing in its development in the last few years \cite{8}. At both scenarios, $(1+1)$-dimensional and $(2+1)$-dimensional theories, lie into: the nonperturbative or pertubative evaluation of the fermionic determinant and the noninvariance of the measure under chiral transformations \cite{10}, the crucial role in the path-integral bosonization. It is the chiral Jacobian which conceives the Wess-Zumino term in the abelian and non-abelian $(1+1)$-dimensional field theories \cite{20}. These features of the path-integral prescription will be explored, here, to perform the bosonization of a massive Thirring-like model which has local gauge invariance; such model is known as massive gauged Thirring model (MGTM). The gauged Thirring model (GTM) was originally proposed as a generalization of usual Thirring model, where the local gauge symmetry was implemented by the Hidden Local Symmetry technique \cite{11,15}. However, one of the most interesting features of GTM was pointed out by Kondo in his proposal of GTM \cite{12}; where not only an auxiliary scalar field is introduced but a kinetic term for the gauge field as well. The GTM, at classical level and strong coupling regime, behaves as electrodynamics with fermions (for $g\rightarrow\infty$) or, as a fermionic current-current self-interaction (for $e^{2}\rightarrow\infty$) field theory; where, at $(1+1)$-dim., the first model is know as Schwinger model (SM), and the second, as Thirring model (TM). Furthermore, it was recently proved that the equivalence between GTM and SM and TM, at $(1+1)$-dim., it is also present at quantum level \cite{14}. Such equivalence was proved through of a nonpertubative quantization, and further analysis of respective Green's functions and Ward-Fradkin-Takahashi identities. Therefore, inspired by those points stressed above, we will perform here the path-integral bosonization of the $(1+1)$-dim. MGTM. After defining the dynamics of the MGTM by its Lagrangian density, we study and analyze some important points as: how the gauge field decouples from the fermionic ones, the choice of an appropriated gauge choice, in particular, how the $R_{\xi}$-gauge is crucial for the results; the mass expansion in the transition amplitude which allows not only, the separation on the boson and fermion sectors -- which simplifies the calculation of the vacuum expectation value of operators, through Wightman's functions -- but also, afterwards, establishes and performs the analysis by the strong coupling limits, of the isomorphisms present in the MGTM. Our main reason for studying the bosonization of MGTM lies in extending the previous result of isomorphism between the massless models and also to the massive ones. We shall perform, in the Sect.~\ref{sec:1}, the derivation of the bosonization of massive gauged Thirring model in the path-integral framework and prove, in the Sect.~\ref{sec:2}, its equivalence with massive Schwinger and Thirring models. In the Sect.~\ref{sec:3} we present our final remarks and perspectives. \section{Path-Integral Bosonization} \label{sec:1} The dynamics of MGTM is defined by the following Lagrangian density \cite{12,14}, \begin{equation} \mathcal{L}=\bar{\psi}\left( i\widehat{\partial }+\widehat{A}\right) \psi - \bar{\psi}\psi +\frac{1}{2g}\left( A_{\mu }-\partial _{\mu }\theta \right) ^{2}-\frac{1}{4e^{2}}F_{\mu \nu }F^{\mu \nu }, \label{eq 1} \end{equation which is invariant under the local gauge transformations \begin{equation} \psi ^{\prime }\left( x\right) =e^{i\sigma \left( x\right) }\psi \left( x\right) ,~A_{\mu }^{\prime }\left( x\right) =A_{\mu }\left( x\right) +\partial _{\mu }\sigma \left( x\right) ,~\theta ^{\prime }\left( x\right) =\theta \left( x\right) +\sigma \left( x\right) . \label{eq 1.1} \end{equation The $\theta $-field into Eq.$\left( \ref{eq 1}\right) $ was introduced following the St\"{u}ckelberg procedure to incorporate the local gauge symmetry. Also, the system is defined into a Minkowskian $(1+1)$-dimensional space-time; with the following choice of representation for the Dirac \gamma $-matrices and also the metric \begin{equation} \gamma _{0}=\sigma _{1}=\left( \begin{array}{cc} 0 & 1 \\ 1 & \end{array \right) ;\gamma _{1}=-i\sigma _{2}=\left( \begin{array}{cc} 0 & -1 \\ 1 & \end{array \right) ;\gamma _{5}=\gamma _{0}\gamma _{1}=\sigma _{3}=\left( \begin{array}{cc} 1 & 0 \\ 0 & - \end{array \right) ;\eta _{\mu \nu }=\left( \begin{array}{cc} 1 & 0 \\ 0 & - \end{array \right) , \end{equation the $\gamma $-matrices satisfy the algebra: \begin{equation} \{\gamma _{\mu },\gamma _{\nu }\}=2\eta _{\mu \nu };\gamma _{\mu }\gamma _{5}=\epsilon _{\mu \nu }\gamma ^{\nu };\epsilon _{\mu \nu }=\left( \begin{array}{cc} 0 & 1 \\ -1 & \end{array \right) . \end{equation It is possible to write the gauge field, following the Helmholtz's theorem, a \begin{equation} A_{\mu }\left( x\right) =\partial _{\mu }\eta \left( x\right) -\tilde \partial}_{\mu }\phi \left( x\right) , \label{eq 1.2} \end{equation where we have defined the notation $\tilde{v}_{\alpha }=\epsilon _{\alpha \mu }v^{\mu }$. A suitable gauge condition for the MGTM is the $R_{\xi }-$gauge which has the form: \begin{equation} R_{\xi }=\partial _{\mu }A^{\mu }\left( x\right) +\frac{\xi }{g}\theta \left( x\right) ; \label{eq 1.3} \end{equation an important feature, inherent in the choice of the $R_{\xi }-$gauge, is that in the quantization procedure of MGTM, it is allowed the $\theta $-field to decouple from the other fields. Indeed, the gauge condition $\left( \ref{eq 1.3 \right) $, combined with $\left( \ref{eq 1.2}\right) $,\ allow us write \begin{equation} \square \eta \left( x\right) +\frac{\xi }{g}\theta \left( x\right) =0. \label{eq 1.4} \end{equation Now, with the decomposition of gauge field $\left( \ref{eq 1.2}\right) $, we have an interaction between the fermionic fields with the scalar ones, $\eta $ and $\phi $; thus, in the way to cancel out, partially, such coupling between the fields, we perform the following change in the fermionic variables \begin{equation} \psi \left( x\right) =\exp \left[ i\left( \eta \left( x\right) -i\gamma _{5}\phi \left( x\right) \right) \right] \chi \left( x\right) ,~\bar{\psi \left( x\right) =\bar{\chi}\left( x\right) \exp \left[ -i\left( \eta \left( x\right) +i\gamma _{5}\phi \left( x\right) \right) \right] , \label{eq 1.5} \end{equation which correspond, in the path-integral framework, to the bosonization realization in the operator approach. Under the change of variables, $\left( \ref{eq 1.2}\right) $ and $\left( \ref{eq 1.5}\right) $, and identity \left( \ref{eq 1.4}\right) $, the Lagrangian $\left( \ref{eq 1}\right) $ is written a \begin{equation*} \mathcal{L}_{eff}\mathcal{=}\bar{\chi}i\widehat{\partial }\chi -m\bar{\chi e^{-2i\gamma _{5}\phi }\chi +\frac{1}{2g}\left( \tilde{\partial}_{\mu }\phi \right) ^{2}+\frac{1}{2g}\left( \frac{g}{\xi }\square +1\right) ^{2}\left( \partial _{\mu }\eta \right) ^{2}+\frac{1}{2e^{2}}\phi \square ^{2}\phi ; \end{equation* however, we still have a remaining $\phi$ and fermionic fields interaction; but such interaction can be solved by an appropriated pertubative mass expansion. However, before perform the mass expansion, we need to pay attention to some important considerations regarding the bosonization in the path-integral framework. In such framework, it is the measure of the original transition amplitude \begin{equation*} Z=N\int D\theta DA_{\mu }D\bar{\psi}D\psi \exp \left[ i\int d^{2}z\mathcal{L \right] , \end{equation* one of the most important objects in the theory and which, under the transformations $\left( \ref{eq 1.2}\right) $ and $\left( \ref{eq 1.5}\right) $, changes its form as \begin{equation*} DA_{\mu }=J_{A}D\eta D\phi ;D\bar{\psi}D\psi =J_{F}D\bar{\chi}D\chi , \end{equation* with $J_{A}=\exp \left( -\bigtriangledown ^{2}\right) $, which can be absorved into normalization constant $N$; but, the fermionic Jacobian $J_{F} , has a nontrivial expression due to the axial anomaly. However, due the abelian character of the MGTM, its evaluation is direct using the well-known results of fermionic determinant \cite{18}; and it results into \begin{equation} J_{F}=\exp \left[ -i\frac{1}{2\pi }\int d^{2}x\left( \partial _{\mu }\phi \right) \left( \partial ^{\mu }\phi \right) \right] \label{eq 1.7a} \end{equation At this point, we have seen that the $\theta $-field has not participated in the bosonization process, i.e., does not have a variables changes involving it; however, this is only possible due to our gauge choice $\left( \ref{eq 1.3}\right) $, which leads to the identity $\left( \ref{eq 1.4}\right) $. From now on, we absorb the $\theta $-field integration into the normalization constant. Therefore, after all changes of variables and manipulations, we then have the following transition amplitude \begin{eqnarray} Z_{MGTM}=N^{\prime }\int D\bar{\chi}D\chi D\phi D\eta \exp \Big[i\int d^{2} \Big(\bar{\chi}i\widehat{\partial }\chi -m\bar{\chi}e^{-2i\gamma _{5}\phi }\chi -\frac{1}{2g}\left( 1+\frac{g}{\xi }\square \right) ^{2}\eta \square \eta && \notag \\ +\frac{1}{2e^{2}}\phi \square \left[ \square +M^{2}\right] \phi \Big \Big],&& \label{eq 1.8} \end{eqnarray where we have $M^{2}=e^{2}\left( \frac{1}{\pi }+\frac{1}{g}\right) $. As we can see in the expression for $Z$ $\left( \ref{eq 1.8}\right) $, the scalar field $\eta $ is totally decoupled from the other fields; and, hence, also can be absorved in the normalization constant. Although the next step in the path-integral quantization it is add sources to the fields on $\left(\ref{eq 1.8}\right) $, and defines the generating functional; it is sufficient to our intend -- solve exactly the bosonized MGTM and, thus, study its quantum isomorphisms -- perform a pertubative expansion in the fermionic mass, to then, finally, evaluate the respective Wightman's functions; hence, rewriting the amplitude transition $\left( \ref{eq 1.8}\right) $ in the form, \begin{eqnarray} Z_{MGTM} &=&N^{\prime \prime }\int D\bar{\chi}D\chi D\phi \exp \left[ i\int d^{2}x\left( \bar{\chi}i\widehat{\partial }\chi +\frac{1}{2e^{2}}\phi \square \left[ \square +M^{2}\right] \phi \right) \right] \notag \\ &&\times \underset{k=0}{\overset{\infty }{\sum }}\frac{\left( -im\right) ^{k }{k!}\underset{i=1}{\overset{k}{\prod }}\int d^{2}x_{i}\bar{\chi}\left( x_{i}\right) e^{-2i\gamma _{5}\phi \left( x_{i}\right) }\chi \left( x_{i}\right) , \label{eq 1.9} \end{eqnarray whose expression, immediatly, reads as \begin{equation} Z_{MGTM}=\underset{k=0}{\overset{\infty }{\sum }}\frac{\left( -im\right) ^{k }{k!}\left\langle \underset{i=1}{\overset{k}{\prod }}\int dx_{i}\bar{\chi \left( x_{i}\right) e^{-2i\gamma _{5}\phi \left( x_{i}\right) }\chi \left( x_{i}\right) \right\rangle _{0}, \label{eq 1.11} \end{equation we are closer of finding the exact solution for the transition amplitude of MGTM. Here $\left\langle {\quad }\right\rangle _{0}$ stands for the vacuum expectation value (vev)\ of an operator in a system of massless free fermions and massive free scalars. In order to evaluate $\left( \ref{eq 1.11 \right) $ we need to separate the bosonic and fermionic fields on the argument of vev. For this, we write \begin{equation} \bar{\chi}e^{-2i\gamma _{5}\phi }\chi =e^{-2i\phi }\bar{\chi}\frac{\left( 1+\gamma _{5}\right) }{2}\chi +e^{2i\phi }\bar{\chi}\frac{\left( 1-\gamma _{5}\right) }{2}\chi , \label{eq 1.19} \end{equation such property leads to the new expression: \begin{eqnarray} Z_{MGTM} &=&\underset{n=0}{\overset{\infty }{\sum }}\frac{\left( -im\right) ^{2n}}{\left( n!\right) ^{2}}\int \left( \underset{k=1}{\overset{n}{\prod } d^{2}x_{k}d^{2}y_{k}\right) \left\langle \exp \left( -2i\underset{j}{\sum \left( \phi \left( x_{j}\right) -\phi \left( y_{j}\right) \right) \right) \right\rangle _{0}^{bos}\times \notag \\ &&\times \left\langle \underset{i=1}{\overset{n}{\prod }}\bar{\chi}\left( x_{i}\right) \frac{\left( 1+\gamma _{5}\right) }{2}\chi \left( x_{i}\right) \bar{\chi}\left( y_{i}\right) \frac{\left( 1-\gamma _{5}\right) }{2}\chi \left( y_{i}\right) \right\rangle _{0}^{ferm}. \label{eq 1.12} \end{eqnarray The simplest term to evaluate $\left( \ref{eq 1.12}\right) $, is the fermionic contribution, where the fermionic Wightman function is simply, the free fermion propagato \begin{equation} S_{F}\left( x\right) =-\frac{1}{2\pi }\frac{\gamma ^{\mu }x_{\mu }}{x^{2}}; \label{eq 1.20} \end{equation to evaluate the fermionic part, we decompose the spinors in their components, as \begin{eqnarray} \bar{\chi}\frac{\left( 1+\gamma _{5}\right) }{2}\chi &=&\bar{\chi}_{1}\chi _{1}, \label{eq 1.21a} \\ \bar{\chi}\frac{\left( 1-\gamma _{5}\right) }{2}\chi &=&\bar{\chi}_{2}\chi _{2}, \label{eq 1.21b} \end{eqnarray such manipulation leads to the well-known result: \begin{equation} \left\langle \underset{i=1}{\overset{n}{\prod }}\bar{\chi}_{1}\left( x_{i}\right) \chi _{1}\left( x_{i}\right) \bar{\chi}_{2}\left( y_{i}\right) \chi _{2}\left( y_{i}\right) \right\rangle _{0}^{ferm}=\frac{1}{\left( 2\pi i\right) ^{2n}}\frac{\overset{n}{\underset{i>j}{\prod }}\left( c^{2}\left\vert x_{i}-x_{j}\right\vert ^{2}\left\vert y_{i}-y_{j}\right\vert ^{2}\right) }{\underset{i,j}{\overset{n}{\prod }}\left( c\left\vert x_{i}-y_{j}\right\vert ^{2}\right) }; \label{eq 1.15} \end{equation where $c=e^{-\gamma }$, with $\gamma $ the Euler-Mascheroni constant. Now, to calculate the bosonic part, we must first evaluate the scalar Wightman function; defining it as \begin{equation*} \frac{1}{e^{2}}\square \left[ \square +M^{2}\right] \Delta \left( x\right) =-\delta ^{\left( 2\right) }\left( x\right) , \end{equation* see equation $\left( \ref{eq 1.9}\right) $; its solution is ready obtained \begin{equation*} \Delta \left( x\right) =\lambda ^{2}\int \frac{d^{2}k}{\left( 2\pi \right) ^{2}}\left[ \frac{1}{k^{2}}-\frac{1}{k^{2}-M^{2}}\right] e^{-ikx}=\lambda ^{2}\left( \Delta \left( 0;x\right) -\Delta \left( M^{2};x\right) \right) , \end{equation* \begin{equation} \Delta \left( x\right) =\lambda ^{2}\left( -\frac{1}{4\pi }\ln \left( M^{2}c^{2}x^{2}\right) -\frac{1}{2\pi }K_{0}\left( \sqrt{M^{2}x^{2}}\right) \right) . \label{eq 1.7} \end{equation} where $\lambda ^{2}=\frac{\pi }{1+\frac{\pi }{g}}$, and $K_{0}\left( z\right) $ is the second-class modified Bessel's function \cite{25}. Then, we obtain the well-known result, \begin{equation} \left\langle \exp \left( -2i\underset{j}{\sum }\left( \phi \left( x_{j}\right) -\phi \left( y_{j}\right) \right) \right) \right\rangle _{0}^{bos}=\exp \left[ 4\underset{i>j}{\sum }\left( \Delta \left( x_{i}-x_{j}\right) +\Delta \left( y_{i}-y_{j}\right) -\Delta \left( x_{i}-y_{j}\right) \right) \right] , \label{eq 1.13} \end{equation and substituing the $\Delta \left( x\right) $ expression, Eq.$\left( \ref{eq 1.7}\right) $, into the above equation, yields to the following expression \begin{eqnarray*} \left\langle \exp \left( -2i\underset{j}{\sum }\left( \phi \left( x_{j}\right) -\phi \left( y_{j}\right) \right) \right) \right\rangle _{0}^{bos} = \end{eqnarray*} \begin{eqnarray} &=&\left[ Mc\right] ^{\frac{2n\lambda ^{2}}{\pi }}\frac{\overset{ }{\underset{i>j}{\prod }}\left\vert x_{i}-x_{j}\right\vert ^{-\frac{2\lambda ^{2}}{\pi }}\left\vert y_{i}-y_{j}\right\vert ^{-\frac{2\lambda ^{2}}{\pi } }{\underset{i,j}{\overset{n}{\prod }}\left\vert x_{i}-y_{j}\right\vert ^{ \frac{2\lambda ^{2}}{\pi }}} \label{eq 1.14a} \\ &&\times \exp \left[ -\frac{2\lambda ^{2}}{\pi }\underset{i>j}{\sum }\left( K_{0}\left( M;\left\vert x_{i}-x_{j}\right\vert \right) +K_{0}\left( M;\left\vert y_{i}-y_{j}\right\vert \right) -K_{0}\left( M;\left\vert x_{i}-y_{j}\right\vert \right) \right) \right] . \notag \end{eqnarray Therefore, with the results $\left( \ref{eq 1.15}\right) $ and $\left( \re {eq 1.14a}\right) $, we finally get the resulting expression for the transition amplitude $\left( \ref{eq 1.12}\right) $, which is written as: \begin{eqnarray} Z_{MGTM} &=&\underset{n=0}{\overset{\infty }{\sum }}\frac{1}{\left( n!\right) ^{2}}\left( \frac{m}{2\pi c}\left[ Mc\right] ^{\frac{\lambda ^{2}} \pi }}\right) ^{2n}\int \left( \underset{k=1}{\overset{n}{\prod } d^{2}x_{k}d^{2}y_{k}\right) \frac{\overset{n}{\underset{i>j}{\prod } \left\vert x_{i}-x_{j}\right\vert ^{2\left( 1-\frac{\lambda ^{2}}{\pi \right) }\left\vert y_{i}-y_{j}\right\vert ^{2\left( 1-\frac{\lambda ^{2}} \pi }\right) }}{\underset{i,j}{\overset{n}{\prod }}\left\vert x_{i}-y_{j}\right\vert ^{2\left( 1-\frac{\lambda ^{2}}{\pi }\right) }} \notag \\ &&\times \exp \left[ -\frac{2\lambda ^{2}}{\pi }\underset{i>j}{\sum }\left( K_{0}\left( M;\left\vert x_{i}-x_{j}\right\vert \right) +K_{0}\left( M;\left\vert y_{i}-y_{j}\right\vert \right) -K_{0}\left( M;\left\vert x_{i}-y_{j}\right\vert \right) \right) \right] . \label{eq 1.16} \end{eqnarray \section{Isomorphisms of Bosonized MGTM} \label{sec:2} At this point, we can study the equivalence of MGTM by applying the following limits: $g\rightarrow\infty$ and $e^{2}\rightarrow \infty$, to reproduce the massive Schwinger and Thirring models, respectively, into the bosonized transition amplitude of MGTM $\left( \ref{eq 1.16}\right) $. But first, we have that the function $K_{0}\left( z\right) $ has the following asymptotic limits \cite{25} \begin{eqnarray*} K_{0}\left( z\right) &\rightarrow &-\ln \left( z\right) -\gamma ;~~z\rightarrow 0, \\ K_{0}\left( z\right) &\rightarrow &0;~~z\rightarrow \infty . \end{eqnarray*} Now, by the limit: $e^{2}\rightarrow \infty \leftrightarrow M^{2}\rightarrow \infty $, was proved that GTM reproduces the Thirring model at classical and quantum levels; here, from applying the limit into equation $\left( \ref{eq 1.16}\right) $, we get \begin{eqnarray} Z_{MTM} &=&\underset{e^{2}\rightarrow \infty }{\lim }Z_{MGTM}=\underset{n=0} \overset{\infty }{\sum }}\frac{1}{\left( n!\right) ^{2}}\left( \frac{m}{2\pi }\right) ^{2n}\int \left( \underset{k=1}{\overset{n}{\prod } d^{2}x_{k}d^{2}y_{k}\right) \label{eq 1.17} \\ &&\times \frac{\overset{n}{\underset{i>j}{\prod }}c^{2\left( 1-\frac{\lambda ^{2}}{\pi }\right) }\left\vert x_{i}-x_{j}\right\vert ^{2\left( 1-\frac \lambda ^{2}}{\pi }\right) }\left\vert y_{i}-y_{j}\right\vert ^{2\left( 1 \frac{\lambda ^{2}}{\pi }\right) }}{\underset{i,j}{\overset{n}{\prod }}c^{1 \frac{\lambda ^{2}}{\pi }}\left\vert x_{i}-y_{j}\right\vert ^{2\left( 1 \frac{\lambda ^{2}}{\pi }\right) }}, \notag \end{eqnarray which reproduces the well-known result of the bosonized massive Thirring model \cite{6,20}. Now, for the limit: $g\rightarrow \infty $, which reproduces the Schwinger model in the classical and quantum levels, yields to \begin{eqnarray} Z_{MSM} &=&\underset{g\rightarrow \infty }{\lim }Z_{MGTM}=\underset{n=0} \overset{\infty }{\sum }}\frac{1}{\left( n!\right) ^{2}}\left( \frac{m\mu } 2\pi }\right) ^{2n}\int \left( \underset{k=1}{\overset{n}{\prod } d^{2}x_{k}d^{2}y_{k}\right) \label{eq 1.18} \\ &&\times \exp \left[ -2\underset{i>j}{\sum }\left( K_{0}\left( \mu ;\left\vert x_{i}-x_{j}\right\vert \right) +K_{0}\left( \mu ;\left\vert y_{i}-y_{j}\right\vert \right) -K_{0}\left( \mu ;\left\vert x_{i}-y_{j}\right\vert \right) \right) \right] , \notag \end{eqnarray where $\mu =e^{2}/\pi $; and, then, we also obtain the well-known result of the bosonized massive Schwinger model \cite{2,20}. With the results, Eqs.$(\ref{eq 1.17})$ and $(\ref{eq 1.18})$, we have proved the isomorphism between the MGTM and the massive Thirring and Schwinger models, respectively; furthermore, we have extended the previous results regarding the isomorphisms of the massless GTM \cite{14}, to the massive one. \section{Remarks and conclusions} \label{sec:3} A path-integral bosonization of the massive gauged Thirring model was presented. Following a well-known, however well-established, script of path-integral bosonization: separation of the gauge field in its divergence and divergenceless parts, and its partial-separation with the fermions, through appropriated change of variables into fermions; such fermionic change of variables induces a chiral Jacobian in the measure of transition amplitude; choice of a gauge condition, in the MGTM case, the $R_{\xi}$-gauge -- which allowed that the $\theta$-field was decoupled from other fields. Afterwards, we have made a pertubative expansion in the fermionic mass in the transition amplitude, allowing, then, that the resulting vacuum expectation value of operators were easily evaluated through the well-known Wightman's functions. Furthermore, we performed in the final transition amplitude expression, equation $\left( \ref{eq 1.16} \right) $, an analysis regarding the strong coupling regime of the model; which, after the appropriated limits study, resulted the bosonized massive Schwinger model, for $g\rightarrow \infty $, and the bosonized massive Thirring model, for $e^{2}\rightarrow \infty $. With these results, we generalized the previous results regarding the isomorphisms of massless GTM \cite{14} to the massive case. Another nonpertubative properties involving two-dimensional massive fermionic field theories are under analysis; in particular, the extension of previous analysis of MGTM to the case of $T \neq 0$, at both Green's functions and bosonization scenarios. We also believe that the extension of bosonization of MGTM, presented here, to the non-abelian case deserves a careful treatment \cite{17}. Progress regarding these issues are under development, and will be reported elsewhere. \subsection*{Acknowledgements} The authors would like to thank Professor Rodolfo Casana for carefully reading the manuscript. R.B. thanks CNPq for full support and B.M.P. thanks CNPq and CAPES for partial support.
{ "redpajama_set_name": "RedPajamaArXiv" }
3,635
[ 128000, 59, 2879, 90, 38255, 633, 33, 437, 263, 2065, 315, 5035, 16, 10, 16, 15437, 12, 43639, 278, 2115, 4211, 706, 1027, 13882, 27313, 3235, 279, 1667, 1144, 68175, 90, 20, 11308, 323, 706, 1202, 13970, 20282, 198, 258, 279, 26969, 315, 735, 4355, 8799, 389, 666, 404, 12928, 5008, 1144, 68175, 90, 16, 2186, 323, 12310, 18223, 258, 323, 4593, 648, 936, 389, 30605, 5248, 1646, 1144, 68175, 90, 17, 7966, 1628, 11, 2533, 50532, 596, 198, 16157, 315, 279, 85262, 1990, 279, 11191, 666, 404, 12928, 323, 58768, 12279, 22231, 4211, 1144, 68175, 90, 21, 2186, 279, 7434, 315, 43746, 263, 2065, 706, 1027, 11922, 198, 300, 264, 23649, 5507, 311, 6994, 1063, 2536, 77468, 9225, 1413, 2038, 315, 5035, 16, 10, 16, 15437, 12 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 59, 2879, 90, 38255, 633, 33, 437, 263, 2065, 315, 5035, 16, 10, 16, 15437, 12, 43639, 278, 2115, 4211, 706, 1027, 13882, 27313, 3235, 279, 1667, 1144, 68175, 90, 20, 11308, 323, 706, 1202, 13970, 20282, 198, 258, 279, 26969, 315, 735, 4355, 8799, 389, 666, 404, 12928, 5008, 1144, 68175, 90, 16, 2186, 323, 12310, 18223, 258, 323, 4593, 648, 936, 389, 30605, 5248, 1646, 1144, 68175, 90, 17, 7966, 1628, 11, 2533, 50532, 596, 198, 16157, 315, 279, 85262, 1990, 279, 11191, 666, 404, 12928, 323, 58768, 12279, 22231, 4211, 1144, 68175, 90, 21, 2186, 279, 7434, 315, 43746, 263, 2065, 706, 1027, 11922, 198, 300, 264, 23649, 5507, 311, 6994, 1063, 2536, 77468, 9225, 1413, 2038, 315, 5035, 16, 10, 16, 15437, 12, -100 ]
SAL/ON A Blog of Seattle Arts & Lectures Let the Record Reflect: Songs from Bushwick/SAL Partner-Events By Wes Weddell, Associate Director of The Bushwick Book Club For the fourth season of partner-events between Seattle Arts & Lectures and The Bushwick Book Club Seattle, the two organizations set a goal to record as many of the songs—created by Bushwick artists inspired by SAL's lineup and premiered at author-events—as possible. With the season having recently concluded, both groups are delighted to announce the release of the 2018/19 Partnership Songs collection, featuring five of these new musical works: the first "SALbum"! Bushwick / SAL 2018-2019 Partnership Songs by The Bushwick Book Club Seattle Here are the songs and a brief statement from the songwriter: Song: "Ancestors Never Sleep" Composer: J.R. Rhodes SAL Event: Alice Walker "Ancestors Never Sleep" is based on the Alice Walker poem by the same name. The idea behind the poem is that our ancestors are always with us, watching over us. I thought to write a lullaby to emphasize that we can feel safe and comforted in that knowing. Song: "Deaf Nation" Composer: Matt Price SAL Event: Ilya Kaminsky "Deaf Nation" was inspired by the book, Deaf Republic, by Ilya Kaminsky. Many of the images come straight out of the book, but it is not so much a retelling of the Deaf Republic as a reflection of it through American eyes, focusing on some of the current, and perennial, American social conflicts. Song: "Chemical Warfare" Composer: Shaudi Bianca Vahdat SAL Event: Solmaz Sharif "Chemical Warfare" is a song inspired primarily by Solmaz Sharif's poetry collection, Look, as well as supplemental research into the Iran-Iraq War. The song seeks to be a compassionate study of grief in the wake of wartime. Song: "If We Try and We Fail" Composer: Alex Guy SAL Event: HERE: Poems for the Planet, feat. Francisco Aragón & Kimiko Hahn As I was reading the poems in HERE, one thing that really struck me was the full perspective the anthology provided. Poems that celebrate the beauty of life, nature and human connection, followed by poems acknowledging the pain and destruction that is taking place on the earth, followed by poems that call us to action. Reading these together took me on a full and emotional journey. And as I worked on my song, I imagined my own inner journey of moving from fear and isolation towards a place of hopefulness, and a growing trust that when we strive collectively and allow ourselves to feel the full weight of our experiences, we are resilient enough to carry on and continue to try, even in the face of the most complex and daunting challenges. Song: "Back Home to Me" Composer: Reggie Garrett SAL Event: Imbolo Mbue The ending of Imbolo Mbue's book jolted me and caused me to re-think some of the assumptions I'd carried with me as I read. When someone chooses to end the struggle, does that necessarily mean they've lost? We hear all the time about people who come to the U.S. from other countries and work hard to make it here. On the other hand, we rarely hear about those who choose (for whatever reason) to return home. For my song, I chose to think of the country Cameroon as an elder, many of whose children have left (and are leaving). In the song, the Elder dispenses its wisdom to one who has returned—something along the lines of, "I could have told you all this but, being young, you had to go and learn for yourself…" The song is constructed of three double verses, each followed by a chorus. Note that I tried to appropriate (and butcher) Cameroonian proverbs as the first two lines of each verse and chorus. Posted in 2018/19 Season Join us for SAL's 2018/19 Season! In 2018/19 Season Play Summer Book Bingo Writers in the Schools is Hiring! Summer Book Bingo: First in a Series SAL on Twitter .@SeaArtsLectures' events with excellent poets, journalists, critics, novelists, and others are on sale now! https://t.co/cZjCoJympy Join us & @NifMuhammad for our #Hinge event on October 23: https://t.co/WSeGqFV22R https://t.co/3CbPgQBs8A https://t.co/m93zgKBPmQ Join @NatalieGDiaz on May 7, 2020. Subscribers to our #Poetry series will enjoy a complimentary copy of Diaz's new book, "Postcolonial Love Poem." https://t.co/9ocI5TVZVr Two SAL authors from last season and one from our upcoming: https://t.co/8AN7jwcATx Single tickets for our 2019/20 season go on sale July 15 at 10am! Twitter Icon Follow us! SAL on Instagram Instagram Icon Follow us!
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
2,072
[ 128000, 50, 984, 14, 715, 198, 32, 14496, 315, 16759, 17979, 612, 42043, 1439, 198, 10267, 279, 13896, 35698, 25, 40200, 505, 14409, 21878, 11628, 984, 32413, 12, 8059, 198, 1383, 37476, 6658, 67, 616, 11, 33468, 10783, 315, 578, 14409, 21878, 6017, 10349, 198, 2520, 279, 11999, 3280, 315, 8427, 54903, 1990, 16759, 17979, 612, 42043, 1439, 323, 578, 14409, 21878, 6017, 10349, 16759, 11, 279, 1403, 11351, 743, 264, 5915, 311, 3335, 439, 1690, 315, 279, 11936, 2345, 7266, 555, 14409, 21878, 13820, 14948, 555, 54209, 596, 28612, 323, 85170, 520, 3229, 54903, 60654, 3284, 13, 3161, 279, 3280, 3515, 6051, 20536, 11, 2225, 5315, 527, 35072, 311, 22203, 279, 4984, 315, 279, 220, 679, 23, 14, 777, 47362, 40200, 4526, 11, 16850, 4330, 315, 1521 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 50, 984, 14, 715, 198, 32, 14496, 315, 16759, 17979, 612, 42043, 1439, 198, 10267, 279, 13896, 35698, 25, 40200, 505, 14409, 21878, 11628, 984, 32413, 12, 8059, 198, 1383, 37476, 6658, 67, 616, 11, 33468, 10783, 315, 578, 14409, 21878, 6017, 10349, 198, 2520, 279, 11999, 3280, 315, 8427, 54903, 1990, 16759, 17979, 612, 42043, 1439, 323, 578, 14409, 21878, 6017, 10349, 16759, 11, 279, 1403, 11351, 743, 264, 5915, 311, 3335, 439, 1690, 315, 279, 11936, 2345, 7266, 555, 14409, 21878, 13820, 14948, 555, 54209, 596, 28612, 323, 85170, 520, 3229, 54903, 60654, 3284, 13, 3161, 279, 3280, 3515, 6051, 20536, 11, 2225, 5315, 527, 35072, 311, 22203, 279, 4984, 315, 279, 220, 679, 23, 14, 777, 47362, 40200, 4526, 11, 16850, 4330, 315, 1521, -100 ]
Q: postscript stack overflow differing on mac and linux and effected by font setting To explain my question I will first provide some code and explain what it does: % 1 1 65532{}for % cut off on mac with font set % 1 1 99996{}for % cut off on mac without font set % 1 1 300048{}for % cut off on linux with font set % 1 1 300368{}for % cut off on linux without font set % /Times-Roman findfont 10 scalefont setfont showpage When I un-comment lines 1 and 6 and run this postscript program on my mac I get a stack overflow however I don't get a stack overflow if I replace 65532 with any smaller integer. If I instead un-comment line 2 then again I have a stack overflow but not if I replace 99996 with any smaller integer. lines 3 and 4 are similar except on linux. From this I have concluded the following: the postscript stack mac has length 99998 (3 numbers before the for loop and 99996 numbers created by the for loop gives 99999 numbers but this is one too many so the stack should be 99998 long). Similarly I have concluded that the linux stack is 300370 long. Let me know if any of this reasoning is incorrect. Also, why are they different? Next, I have concluded that setting the font takes up 34464 items on the stack on mac but only 320 items on linux. Again, let me know if any of this seems incorrect. First, it seems odd to me that setting the font should take up this much space at all, second why do they differ so much on mac and linux (over 100 times more space on mac)? Finally, I'd like to know if there are any other operations in postscript that use up a large amount of space on the stack other than operations defined by the programmer. I'd consider a large amount to be greater than 100 items on the stack. Thanks A: A good place to learn more about this area is the PLRM appendix on Implementation Limits. Typical size of the operand stack in Level 1 was around 1000. In Level 2 (and beyond) the stack will grow to accommodate new objects but Postscript is not really suited to having so many objects on the stack. Fonts are implemented as dictionary objects, so they do not take up space on the stack but they do consume memory in the PostScript Virtual Memory. On the stack itself it only takes up space for 1 object. There are a handful of operators which can add many objects to the stack. Any kind of loop (like for which you've already discovered) can add objects to the stack. aload is another one since it spills the contents of an array on the stack. Practically, the stack size limitation shouldn't be a problem. If you have lots of data, then it really ought to be stored in data structures like arrays, strings, and dictionaries. Most situations where you may be tempted to put large amounts of data on the stack can be rewritten to be less stack-heavy. A large part of the design of PostScript is to make it very lightweight in memory usage for the the tasks it is good for. For example, the image operator in Level 1 takes a data-acquisition procedure rather than an array or string. The usual way to use this is to have the procedure read ahead in the source file to find its samples. A large image can be displayed without having to store all the samples in memory all at once. The data-acquisition procedure can use a small string buffer to read samples and return them piece by piece.
{ "redpajama_set_name": "RedPajamaStackExchange" }
5,418
[ 128000, 48, 25, 1772, 2334, 5729, 16891, 61469, 389, 9155, 323, 37345, 323, 89589, 555, 3381, 6376, 2057, 10552, 856, 3488, 358, 690, 1176, 3493, 1063, 2082, 323, 10552, 1148, 433, 1587, 512, 4, 220, 16, 220, 16, 220, 15573, 843, 6390, 2000, 262, 1034, 4018, 1022, 389, 9155, 449, 3381, 743, 198, 4, 220, 16, 220, 16, 220, 5500, 4161, 6390, 2000, 262, 1034, 4018, 1022, 389, 9155, 2085, 3381, 743, 198, 4, 220, 16, 220, 16, 220, 3101, 23904, 6390, 2000, 256, 1034, 4018, 1022, 389, 37345, 449, 3381, 743, 198, 4, 220, 16, 220, 16, 220, 3101, 19057, 6390, 2000, 256, 1034, 4018, 1022, 389, 37345, 2085, 3381, 743, 271, 4, 611, 19422, 11151, 7053, 1505, 4115, 220, 605, 5569, 4115, 743, 4115, 198, 3528 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 48, 25, 1772, 2334, 5729, 16891, 61469, 389, 9155, 323, 37345, 323, 89589, 555, 3381, 6376, 2057, 10552, 856, 3488, 358, 690, 1176, 3493, 1063, 2082, 323, 10552, 1148, 433, 1587, 512, 4, 220, 16, 220, 16, 220, 15573, 843, 6390, 2000, 262, 1034, 4018, 1022, 389, 9155, 449, 3381, 743, 198, 4, 220, 16, 220, 16, 220, 5500, 4161, 6390, 2000, 262, 1034, 4018, 1022, 389, 9155, 2085, 3381, 743, 198, 4, 220, 16, 220, 16, 220, 3101, 23904, 6390, 2000, 256, 1034, 4018, 1022, 389, 37345, 449, 3381, 743, 198, 4, 220, 16, 220, 16, 220, 3101, 19057, 6390, 2000, 256, 1034, 4018, 1022, 389, 37345, 2085, 3381, 743, 271, 4, 611, 19422, 11151, 7053, 1505, 4115, 220, 605, 5569, 4115, 743, 4115, 198, 3528, -100 ]
Plastic Outdoor End Tables have 40 picture of decorating ideas, it's including Plastic Outdoor End Tables Impressive Amazon Com Adams 8115 48 3700 Square Stacking Table White Patio Decorating Ideas 1. Plastic Outdoor End Tables Wonderful Small Square Side Or Table Polywood Seashell Furniture Decorating Ideas 2. Plastic Outdoor End Tables Inspiring Cotobahia Com Decorating Ideas 3. Plastic Outdoor End Tables Breathtaking POLYWOOD Coffee Patio The Home Depot Decorating Ideas 4. Plastic Outdoor End Tables Prodigious Amazon Com Emsco Group 96630 1 Stackable Slotted Table Decorating Ideas 5.
{ "redpajama_set_name": "RedPajamaC4" }
8,960
[ 128000, 2169, 5174, 33782, 4060, 43252, 617, 220, 1272, 6945, 315, 49682, 6848, 11, 433, 596, 2737, 37108, 33782, 4060, 43252, 14727, 49053, 8339, 1219, 27329, 220, 22588, 20, 220, 2166, 220, 14648, 15, 15992, 800, 9162, 6771, 5929, 65086, 98320, 23748, 220, 16, 13, 37108, 33782, 4060, 43252, 68963, 15344, 15992, 17072, 2582, 6771, 19294, 6798, 1369, 1003, 616, 30339, 98320, 23748, 220, 17, 13, 37108, 33782, 4060, 43252, 31016, 6322, 68825, 677, 1494, 689, 1219, 98320, 23748, 220, 18, 13, 37108, 33782, 4060, 43252, 426, 1244, 53343, 32740, 56, 87166, 27171, 65086, 578, 5492, 48070, 98320, 23748, 220, 19, 13, 37108, 33782, 4060, 43252, 72372, 22941, 8339, 1219, 469, 1026, 1030, 5856, 220, 25285, 966, 220, 16, 14619, 481, 6995, 15889, 6771, 98320, 23748, 220, 20 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2169, 5174, 33782, 4060, 43252, 617, 220, 1272, 6945, 315, 49682, 6848, 11, 433, 596, 2737, 37108, 33782, 4060, 43252, 14727, 49053, 8339, 1219, 27329, 220, 22588, 20, 220, 2166, 220, 14648, 15, 15992, 800, 9162, 6771, 5929, 65086, 98320, 23748, 220, 16, 13, 37108, 33782, 4060, 43252, 68963, 15344, 15992, 17072, 2582, 6771, 19294, 6798, 1369, 1003, 616, 30339, 98320, 23748, 220, 17, 13, 37108, 33782, 4060, 43252, 31016, 6322, 68825, 677, 1494, 689, 1219, 98320, 23748, 220, 18, 13, 37108, 33782, 4060, 43252, 426, 1244, 53343, 32740, 56, 87166, 27171, 65086, 578, 5492, 48070, 98320, 23748, 220, 19, 13, 37108, 33782, 4060, 43252, 72372, 22941, 8339, 1219, 469, 1026, 1030, 5856, 220, 25285, 966, 220, 16, 14619, 481, 6995, 15889, 6771, 98320, 23748, 220, 20, -100 ]
<?php namespace Nonlux\BitApp\Console\Command; use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputDefinition; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Filesystem\Exception\FileNotFoundException; class BitrixDumpFixtureCommand extends AbstractDumpCommand { protected $projectPath; protected $fixturesPath; public function __construct($projectPath, $fixturesPath) { $this->projectPath = $projectPath; $this->fixturesPath = $fixturesPath; parent::__construct(null); } protected function configure() { $this->setName("bitrix:dump:fixture"); $this->setDescription("Dump fixture files in folder"); $this->addArgument("dir", InputArgument::REQUIRED, "path of fixture"); } protected function execute(InputInterface $input, OutputInterface $output) { $targetDir = rtrim($this->projectPath, '/\\'); $dir = $input->getArgument('dir'); $originDir = rtrim($this->fixturesPath . "/$dir", '/\\'); if (!file_exists($originDir)) { throw new FileNotFoundException($originDir); } $output->writeln("Dump $dir fixtures"); $this->dumpFiles($originDir, $targetDir); $output->writeln("Done..."); } }
{ "redpajama_set_name": "RedPajamaGithub" }
4,534
[ 128000, 1340, 1230, 271, 2280, 11842, 63959, 59, 8509, 2213, 45782, 61724, 401, 817, 16398, 15650, 45782, 61278, 61278, 9350, 280, 817, 16398, 15650, 45782, 61278, 61278, 10614, 280, 817, 16398, 15650, 45782, 61278, 61278, 5160, 280, 817, 16398, 15650, 45782, 59, 5207, 59, 5207, 5160, 280, 817, 16398, 15650, 53147, 9125, 27659, 53147, 14920, 401, 1058, 6631, 462, 16141, 1538, 19466, 4153, 2289, 13822, 52156, 4153, 198, 517, 262, 2682, 400, 5094, 1858, 280, 262, 2682, 400, 46347, 1858, 401, 262, 586, 734, 1328, 7750, 703, 5094, 1858, 11, 400, 46347, 1858, 340, 262, 341, 286, 400, 576, 405, 5094, 1858, 284, 400, 5094, 1858, 280, 286, 400, 576, 405, 46347, 1858, 284, 400, 46347, 1858, 280, 286, 2748, 19119, 7750, 5074, 317, 262, 4555, 262, 2682 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 1340, 1230, 271, 2280, 11842, 63959, 59, 8509, 2213, 45782, 61724, 401, 817, 16398, 15650, 45782, 61278, 61278, 9350, 280, 817, 16398, 15650, 45782, 61278, 61278, 10614, 280, 817, 16398, 15650, 45782, 61278, 61278, 5160, 280, 817, 16398, 15650, 45782, 59, 5207, 59, 5207, 5160, 280, 817, 16398, 15650, 53147, 9125, 27659, 53147, 14920, 401, 1058, 6631, 462, 16141, 1538, 19466, 4153, 2289, 13822, 52156, 4153, 198, 517, 262, 2682, 400, 5094, 1858, 280, 262, 2682, 400, 46347, 1858, 401, 262, 586, 734, 1328, 7750, 703, 5094, 1858, 11, 400, 46347, 1858, 340, 262, 341, 286, 400, 576, 405, 5094, 1858, 284, 400, 5094, 1858, 280, 286, 400, 576, 405, 46347, 1858, 284, 400, 46347, 1858, 280, 286, 2748, 19119, 7750, 5074, 317, 262, 4555, 262, 2682, -100 ]
Jobs in , and plus a 30 mile radius of Halifax. Finance jobs in Halifax + similar or related jobs. Would you enjoy managing a busy finance department Do you want to manage a small team and be an important part of a successful growing business Rekruut Consultancy is working in partnership with The employer to source a andldquo;hands onandrdquo;, Finance Manager. *... . .... Interested in "Finance Manager Job" job? Click job title for more details. Halifax Brief job details... Forward thinking and energetic Accountancy Practice based just outside of Halifax is seeking an Account Semi-Senior or senior to become part of their busy office. - The Accountancy Practice deals with a varied client base of Sole traders, Partnerships and LTD Companies up to � 50m turnover... You will join a close team of 10 within a larger, open plan office of 15... The Job is largely office based though occasional client visits or meetings may be necessary... This job is a full time, permanent position for a candidate with experience within an Accountancy Practice, preferably as Accounts Assistant or Accounts Semi-Senior... The Job reports to the Client Manager who will be accountable for the portfolio Account Semi. .... Interested in "Accounts Semi-Senior" job? Click job title for more details. Register for Finance Jobs in Halifax. Find the latest Finance jobs in Halifax and in the surrounding locations, such as , or . Also find Financial jobs in , Accountant in and Business jobs in Halifax. Be the first to be able to apply, by getting email alerts. Halifax Brief job details... Chartered Accountancy Practice in Halifax is seeking a capable Full Time Accounts Assistant to become part of their Halifax based Office. Bala. .... Interested in "Accounts assistant job" job? Click job title for more details. Purchase Ledger experience Good attention to detail Good IT. * Long-term career prospects andndash; if you want them Does... . .... Interested in "Purchase Ledger Clerk" job? Click job title for more details. To manage and carry out the accounting functions of the company, and to provide timely operational information to support the efficient running of the business. * To work with and liaise with accounting staff within the group of companies <... ... . .... Interested in "Financial Controller / Management Accountant / Finance Analyst" job? Click job title for more details. Madrid Brief job details... Work in a company with great history on the pharmaceutical market, they have been on the market for over 100 years and have grown internationally. - Their innovative technologies put them in the leading position worldwide so you will enjoy being part of their scientific advancements... A great contract opportunity has is now on offer within an international pharmaceutical company so will suit someone available right away or ready to start within a short notice... Itandrsquo;s a exciting opening to combine your analytical experience within a scientific field which is quite a different environment to the regular financial world, it could be a good chance to experience something new... You will work closely with the Sales Team, Customer Service, Finance, Marketing Manager, EU Strategic Execution ... . .... Interested in "Medicine and Finance combined together - Financial controller" job? Click job title for more details. Excellent Salary... Training plan... Remuneration 32-day holiday, Private Medical Health, On-site parking, PD... E3R have a unique and stimulating opportunity for a qualifie.part qualified Finance Controlle... Manager to work out of our head office in Lindley Huddersfield. .... Interested in "Financial Controller / Finance Manager Job" job? Click job title for more details. North Halifax West Yorkshire Calderdale Brief job details... The potential employer is a £;30m turnover division of an international group. - They run in the contracting and hire sector and this is the No.1 vacancy on site reporting nearby to the MD with a dotted line to group... This vacancy offer is aimed at a qualified accountant who has experience in managing and important a small finance team, working with non-finance staff and positively contributing to the development of the business including pricing , contract negotiation , W IP reporting , profitability and margin analysis... This is a successful, growing and profitable busienss... The successful job seeker for this vacancy will be a hands on individual who will take responsibility for the month end reporting for both internal directors and group , budgeting, forecasting and discussing ... . .... Interested in "Financial Controller" job? Click job title for more details. Register and get email alerts for Finance Jobs in Halifax. Locate similar vacancies in , or . Also register for alerts for Financial jobs in and Business vacancies in Halifax. Be the first to be able to apply and let the employers find you. - They run in the contracting sector and this is the No.1 vacancy on site reporting nearby to the MD with a dotted line to group... This vacancy offer is aimed at a qualified accountant who has experience in managing and important a small finance team, working with non-finance staff and positively contributing to the development of the business including pricing , contract negotiation , W IP reporting , profitability and margin analysis... This is a successful, growing and profitable busienss... The successful job seeker for this vacancy will be a hands on individual who will take responsibility for the month end reporting for both internal directors and group , budgeting, forecasting and discussing and advis... . .... Interested in "Financial Controller" job? Click job title for more details. Ashton-Under-Lyne, Borough Of Tameside Brief job details... Tameside College in Ashton-Under-Lyne Greater Manchester is a diverse and vibrant further education college that provides a wide range of course including A level and advanced level vocational study programmes, Apprenticeships and adult courses up to degree Level. - We aim to give all our students an outstanding experience... We also believe that attending college is about more than achieving a qualification, important though that is... We believe in excellence and back that up with high expectations, a superb working environment (as part of the Vision Tameside � 100 million+ accommodation strategy) and outstanding teaching and support services... This is why we aim to give learners every opportunity to develop their full potential in a supportive and friendly environment... Joining us as the Exe. .... Interested in "Executive Director - Finance and Estates (Accountant - Education)" job? Click job title for more details. York, City Of York Brief job details... CONGREGATION OF JESUS CHARITABLE TRUST Finance and Trust Secretary. DW1193 The Congregation of Jesus Charitable Trust was established for the advancement of religion, education, social and pastoral works in the UK and overseas and for care for members of the Congregation in the English Province... Accountant who will bring excellent finance understanding and strategic leadership to support the Trust and its future... We are now looking for an outstanding Finance and Trust Secretary... This post will be based at the Trustandrsquo;s premises in York, North Yorkshire... The Finance and Trust Secretary. .... Interested in "Finance and Trust Secretary / Accountant" job? Click job title for more details. Burnham-On-Sea Brief job details... Brook Street are recruiting for an Operational Finance Accountant to provide accounting and operational finance support to a successful holiday and leisure business. - This job is ideal for somebody looking to develop their career and grow within a successful award-winning family business... ... Day to day Duties include; o Produce management information and develop reports as needed for business performance monitoring o Accounting process and systems development o Procurement to pay process organisation and system control o Inventory management and stock control system o Development of department budgets and monitoring processes o Periodic update of financial models and running of sensitivities o Finance and accounting process documentation and review o Balance sheet reviews and report... ... . .... Interested in "Operational Finance Accountant" job? Click job title for more details. Mansfield Brief job details... Financ. - Responsibility for preparation of the accounts to trial balance. .... Interested in "Accountant/Finance Manager Job" job? Click job title for more details.
{ "redpajama_set_name": "RedPajamaC4" }
9,000
[ 128000, 41767, 304, 1174, 323, 5636, 264, 220, 966, 14929, 10801, 315, 70769, 627, 79188, 7032, 304, 70769, 489, 4528, 477, 5552, 7032, 627, 29089, 499, 4774, 18646, 264, 13326, 17452, 9476, 3234, 499, 1390, 311, 10299, 264, 2678, 2128, 323, 387, 459, 3062, 961, 315, 264, 6992, 7982, 2626, 125709, 2739, 332, 20556, 6709, 374, 3318, 304, 15664, 449, 578, 19683, 311, 2592, 264, 323, 509, 27610, 26, 89112, 389, 438, 6634, 27610, 72654, 23261, 10790, 627, 9, 1131, 662, 22666, 77362, 304, 330, 79188, 10790, 12280, 1, 2683, 30, 9369, 2683, 2316, 369, 810, 3649, 627, 57041, 54717, 37618, 2683, 3649, 1131, 22952, 7422, 323, 45955, 8785, 6709, 28082, 3196, 1120, 4994, 315, 70769, 374, 11125, 459, 8785, 55738, 6354, 268, 2521, 477, 10195, 311, 3719 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 41767, 304, 1174, 323, 5636, 264, 220, 966, 14929, 10801, 315, 70769, 627, 79188, 7032, 304, 70769, 489, 4528, 477, 5552, 7032, 627, 29089, 499, 4774, 18646, 264, 13326, 17452, 9476, 3234, 499, 1390, 311, 10299, 264, 2678, 2128, 323, 387, 459, 3062, 961, 315, 264, 6992, 7982, 2626, 125709, 2739, 332, 20556, 6709, 374, 3318, 304, 15664, 449, 578, 19683, 311, 2592, 264, 323, 509, 27610, 26, 89112, 389, 438, 6634, 27610, 72654, 23261, 10790, 627, 9, 1131, 662, 22666, 77362, 304, 330, 79188, 10790, 12280, 1, 2683, 30, 9369, 2683, 2316, 369, 810, 3649, 627, 57041, 54717, 37618, 2683, 3649, 1131, 22952, 7422, 323, 45955, 8785, 6709, 28082, 3196, 1120, 4994, 315, 70769, 374, 11125, 459, 8785, 55738, 6354, 268, 2521, 477, 10195, 311, 3719, -100 ]
Facebook Removed 'Stop the Steal' Group to Prevent 'Violence or Civil Unrest': Zuckerberg Facebook logo displayed on a tablet in Lille on Aug. 28, 2019. (Denis Charlet/AFP via Getty Images) Justice Department Files Lawsuit Against Facebook Over Alleged Discrimination of US Workers By Katabella Roberts December 4, 2020 Updated: December 4, 2020 The Department of Justice (DOJ) on Dec. 3 announced that it has filed a lawsuit against Facebook, alleging that the social media giant discriminated against U.S. workers in favor of temporary visa holders. The lawsuit alleges that from January 2018 to September 2019, Facebook refused to recruit, consider, or hire qualified and available U.S. workers for over 2,600 positions with an average salary of about $156,000—instead reserving the jobs for foreigners with temporary H-1B and other visas the company wanted to sponsor for green cards. According to the lawsuit, which is based on a nearly two-year investigation by the department, Facebook intentionally created a hiring system which denied qualified U.S. workers a fair opportunity to learn about and apply for jobs. The lawsuit claims Facebook employed tactics that discriminated against U.S. workers and, rather than conducting a genuine search for qualified and available U.S. workers for permanent positions, instead reserved the positions for temporary visa holders because of their immigration status. As per the complaint, the social media giant did this by failing to advertise those vacancies on its careers website, requiring applicants to apply by physical mail only, and refusing to consider any U.S. workers who applied for those positions. "In contrast, Facebook's usual hiring process relies on recruitment methods designed to encourage applications by advertising positions on its careers website, accepting electronic applications, and not pre-selecting candidates to be hired based on a candidate's immigration status," the DOJ said in a statement. The investigation determined that Facebook's ineffective recruitment methods dissuaded U.S. workers from applying to vacant positions, and that from Jan. 2018 to September 2019, Facebook received zero or one U.S. worker applicants for 99.7 percent of its positions reserved for sponsoring foreigners through the Department of Labor's permanent labor certification process (PERM). Meanwhile, comparable positions at Facebook that were advertised on its careers website during a similar time period typically attracted 100 or more applicants each. The DOJ said Facebook's alleged practices also adversely impacts temporary visa holders by creating an unequal employment relationship, because such temporary visa holders often have limited job mobility and thus are likely to remain with their company until they can adjust status, which for some can be decades. The DOJ is seeking civil penalties, back pay on behalf of domestic workers allegedly denied employment, and other relief to ensure Facebook stops the alleged violations in the future. "Our message to workers is clear: if companies deny employment opportunities by illegally preferring temporary visa holders, the Department of Justice will hold them accountable. Our message to all employers—including those in the technology sector—is clear: you cannot illegally prefer to recruit, consider, or hire temporary visa holders over U.S. workers," Assistant Attorney General Eric Dreiband of the DOJ's Civil Rights Division said. Facebook is also currently under investigation for potential antitrust violations by a group of 47 state attorneys general who are expected to file a lawsuit against the company as early as next week. The Federal Trade Commission is also reportedly set to file its own antitrust lawsuit against the social media giant, CNBC reports. President Donald Trump said on Twitter early Friday that he would be vetoing a national security bill because it didn't address limiting protections currently granted to social media companies under the Section 230 of the Communications Decency Act. The Trump administration and a number of Republicans have been highly critical of Facebook and other large tech companies, frequently accusing them of censoring conservative content and arguing that they act more like publishers and so should be held liable for user content. The Epoch Times has contacted Facebook for comment.
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
856
[ 128000, 21124, 52183, 364, 10903, 279, 3441, 278, 6, 5856, 311, 39168, 364, 50817, 768, 477, 16803, 1252, 4014, 1232, 67034, 198, 21124, 12708, 12882, 389, 264, 21354, 304, 445, 4618, 389, 5033, 13, 220, 1591, 11, 220, 679, 24, 13, 320, 24539, 285, 4969, 1169, 69415, 4669, 21171, 12041, 340, 70786, 6011, 17833, 42089, 3159, 30241, 5690, 6193, 58824, 291, 78400, 2617, 315, 2326, 36798, 198, 1383, 735, 2143, 6985, 31248, 198, 33246, 220, 19, 11, 220, 2366, 15, 16459, 25, 6790, 220, 19, 11, 220, 2366, 15, 198, 791, 6011, 315, 12007, 320, 5989, 41, 8, 389, 3799, 13, 220, 18, 7376, 430, 433, 706, 13019, 264, 19831, 2403, 5690, 11, 62546, 430, 279, 3674, 3772, 14880, 14572, 15846, 2403, 549, 815, 13, 7487, 304, 4799 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 21124, 52183, 364, 10903, 279, 3441, 278, 6, 5856, 311, 39168, 364, 50817, 768, 477, 16803, 1252, 4014, 1232, 67034, 198, 21124, 12708, 12882, 389, 264, 21354, 304, 445, 4618, 389, 5033, 13, 220, 1591, 11, 220, 679, 24, 13, 320, 24539, 285, 4969, 1169, 69415, 4669, 21171, 12041, 340, 70786, 6011, 17833, 42089, 3159, 30241, 5690, 6193, 58824, 291, 78400, 2617, 315, 2326, 36798, 198, 1383, 735, 2143, 6985, 31248, 198, 33246, 220, 19, 11, 220, 2366, 15, 16459, 25, 6790, 220, 19, 11, 220, 2366, 15, 198, 791, 6011, 315, 12007, 320, 5989, 41, 8, 389, 3799, 13, 220, 18, 7376, 430, 433, 706, 13019, 264, 19831, 2403, 5690, 11, 62546, 430, 279, 3674, 3772, 14880, 14572, 15846, 2403, 549, 815, 13, 7487, 304, 4799, -100 ]
Free to download No Fear vector logo in .EPS vector format. Browse to see more No Fear related vector logos. Download No Fear vector logo in .EPS format, and open with Adobe Illustrator or Adobe PhotoShop or CorelDRAW. No Fear is an American lifestyle clothing brand that was created in 1989 by Mark Simo, Brian Simo, and Marty Moates. No Fear Inc. products are sold at various retail stores and company owned stores. It also offers No Fear energy drinks under the same brand, in a joint venture with Pepsi. The company currently employs about 450 people. On February 25, 2011, they filed for Chapter 11 bankruptcy.
{ "redpajama_set_name": "RedPajamaC4" }
1,897
[ 128000, 11180, 311, 4232, 2360, 43067, 4724, 12708, 304, 662, 46277, 4724, 3645, 13, 42812, 311, 1518, 810, 2360, 43067, 5552, 4724, 50119, 13, 8745, 2360, 43067, 4724, 12708, 304, 662, 46277, 3645, 11, 323, 1825, 449, 29966, 100160, 477, 29966, 11064, 20381, 477, 9708, 75, 78135, 627, 2822, 43067, 374, 459, 3778, 19433, 17895, 6883, 430, 574, 3549, 304, 220, 3753, 24, 555, 4488, 4567, 78, 11, 17520, 4567, 78, 11, 323, 56254, 6178, 988, 13, 2360, 43067, 4953, 13, 3956, 527, 6216, 520, 5370, 11040, 10756, 323, 2883, 13234, 10756, 13, 1102, 1101, 6209, 2360, 43067, 4907, 21662, 1234, 279, 1890, 6883, 11, 304, 264, 10496, 26255, 449, 84178, 13, 578, 2883, 5131, 51242, 922, 220, 10617, 1274, 13, 1952, 7552, 220, 914, 11, 220, 679 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 11180, 311, 4232, 2360, 43067, 4724, 12708, 304, 662, 46277, 4724, 3645, 13, 42812, 311, 1518, 810, 2360, 43067, 5552, 4724, 50119, 13, 8745, 2360, 43067, 4724, 12708, 304, 662, 46277, 3645, 11, 323, 1825, 449, 29966, 100160, 477, 29966, 11064, 20381, 477, 9708, 75, 78135, 627, 2822, 43067, 374, 459, 3778, 19433, 17895, 6883, 430, 574, 3549, 304, 220, 3753, 24, 555, 4488, 4567, 78, 11, 17520, 4567, 78, 11, 323, 56254, 6178, 988, 13, 2360, 43067, 4953, 13, 3956, 527, 6216, 520, 5370, 11040, 10756, 323, 2883, 13234, 10756, 13, 1102, 1101, 6209, 2360, 43067, 4907, 21662, 1234, 279, 1890, 6883, 11, 304, 264, 10496, 26255, 449, 84178, 13, 578, 2883, 5131, 51242, 922, 220, 10617, 1274, 13, 1952, 7552, 220, 914, 11, 220, 679, -100 ]
We located 22 people named Andrew Stambaugh living in Pennsylvania, Iowa, Florida and 16 other states. Lived in Kingston, Forty Fort, and Plymouth, PA. Possible Associates Andrew Stambaugh could have been associated with Rick Schofield, Adam Harris, Stephanie Ziebro, Annie Ritsick, Ron Fitser, and Bobby Shoemaker. Saint Petersburg, Gainesville, Tampa, and Miami Beach, FL. Possible Associates Andrew Huntley Stambaugh could have been associated with Helen Louise Huntley. Possible Associates Andrew Stambaugh could have been associated with Priscilla R Chandler. Lived in Cornwall and Cornwall On Hudson, NY. Possible Associates Andrew Stambaugh could have been associated with Helen M Strambaugh. Lived in San Francisco, Los Angeles, Venice, and Fresno, CA. Possible Associates Andrew Elliott Stambaugh could have been associated with Alex Burke. Possible Associates Andrew Leslie Stambaugh could have been associated with Evelyn Marie Moore. Lived in Arlington and Euless, TX. Lived in Newport News and Smithfield, VA. Possible Associates Andrew Stambaugh could have been associated with Elizabeth Anne Lindsay. Lived in Wilkes Barre and Red Lion, PA. Lived in Washington, Hillsborough, Alpha, and Phillipsburg, NJ. Possible Associates Andrew C Stambaugh could have been associated with Susan Kavanaugh Fissel and Maria Glassmoyer. Possible Associates Andrew J Stambaugh could have been associated with Sharon Lee Rust. Lived in Pittsburgh, Wall, and Weedville, PA. Possible Associates Andrew Zane Stambaugh could have been associated with Barbara Lynn Smith, Natalia Holliday, Kimberly Shearer, Paul Wisnieski, Cady Dobbs, and Desiree Cavalancia. Possible Associates Andrew Mitchell Stambaugh could have been associated with Pamela Sue Smith. Lived in San Jose, Huntington Beach, Long Beach, Los Angeles, and Mission Viejo, CA. Possible Associates Andrew A Stambaugh could have been associated with Sarah Lee Irik. Possible Associates Andrew A Stambaugh could have been associated with Sarah L Irik. Greenwood, Fort Wayne, Madison, and Bloomington, IN. Possible Associates Andrew Stambaugh could have been associated with Dina Lyn Griffin, Paula D Griffin-Lowe, and Sherryl Sue Ritchie. Lived in Seffner and Tampa, FL. Fort Wayne, Greenwood, and Bloomington, IN. Possible Associates Andrew Stambaugh could have been associated with Julia Marie Gerardot and Dina Lyn Griffin. Lived in Downingtown, West Chester, and Coatesville, PA. Northlake, Bedford, and Fort Worth, TX. Possible Associates Andrew M Stambaugh could have been associated with Amanda P, Paige P, Mia P, Tom G, Candice G, and Samantha C. Lived in Toledo and Madison, OH. Possible Associates Andrew W Stambaugh could have been associated with Anne Emily Passuello. Lived in Marina Del Rey, Inglewood, and Los Angeles, CA. Can't find the Andrew Stambaugh you're looking for? Try a deep search to uncover even more personal info.
{ "redpajama_set_name": "RedPajamaC4" }
31
[ 128000, 1687, 7559, 220, 1313, 1274, 7086, 13929, 800, 43008, 7595, 5496, 304, 20355, 11, 21357, 11, 9784, 323, 220, 845, 1023, 5415, 627, 43, 2270, 304, 63569, 11, 86043, 11246, 11, 323, 72098, 11, 13174, 627, 66322, 40201, 13929, 800, 43008, 7595, 1436, 617, 1027, 5938, 449, 23194, 57284, 2630, 11, 15387, 21750, 11, 49243, 1901, 648, 15222, 11, 53089, 432, 1220, 875, 11, 14662, 30990, 805, 11, 323, 38481, 64040, 59775, 627, 57475, 55048, 11, 83779, 8078, 11, 33225, 11, 323, 18045, 13011, 11, 13062, 627, 66322, 40201, 13929, 27690, 3258, 800, 43008, 7595, 1436, 617, 1027, 5938, 449, 43881, 56578, 27690, 3258, 627, 66322, 40201, 13929, 800, 43008, 7595, 1436, 617, 1027, 5938, 449, 2394, 3510, 6374, 432, 61448, 627, 43, 2270, 304, 77050, 323 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 1687, 7559, 220, 1313, 1274, 7086, 13929, 800, 43008, 7595, 5496, 304, 20355, 11, 21357, 11, 9784, 323, 220, 845, 1023, 5415, 627, 43, 2270, 304, 63569, 11, 86043, 11246, 11, 323, 72098, 11, 13174, 627, 66322, 40201, 13929, 800, 43008, 7595, 1436, 617, 1027, 5938, 449, 23194, 57284, 2630, 11, 15387, 21750, 11, 49243, 1901, 648, 15222, 11, 53089, 432, 1220, 875, 11, 14662, 30990, 805, 11, 323, 38481, 64040, 59775, 627, 57475, 55048, 11, 83779, 8078, 11, 33225, 11, 323, 18045, 13011, 11, 13062, 627, 66322, 40201, 13929, 27690, 3258, 800, 43008, 7595, 1436, 617, 1027, 5938, 449, 43881, 56578, 27690, 3258, 627, 66322, 40201, 13929, 800, 43008, 7595, 1436, 617, 1027, 5938, 449, 2394, 3510, 6374, 432, 61448, 627, 43, 2270, 304, 77050, 323, -100 ]
Salaam. Aleinu v'al kol ha'olam, Salaam, Salaam. But I was cynical then, and not particularly thoughtful. I didn't catch the uncanny, radical optimism in the song – or the startling, open-hearted generosity. Salaam, the campers sang – not shalom, not even "peace," but salaam, the Arabic word, the Islamic word, in fact the root word that forms "Islam." The word of an enemy, of a culture that's been locked in a deadly competition with us, that has waged war against us since before 1947. I thought of that moment at the day camp during a recent Rosh Hashanah service at a Renewal synagogue in Berkeley, California. It was my first experience at a Renewal Congregation, not because I've been avoiding the movement, but because up until a few months ago, I'd spent my career as a synagogue rabbi and I couldn't go anywhere for the holidays other than my own Conservative congregation. The worship was a revelation for me in many ways, but the most dramatic part came during a series of tunes the excellent musicians led us through after the shofar service. The text for the songs included the Hebrew word Aleh – "rise" – but at some point the singer changed it to Allah – the Muslim word for God. Allah, she chanted, and the scales and rhythms and instrumentation and percussion became explicitly Middle Eastern. Here it was again, but this time for adults. Borrowing Islamic tropes for Jewish prayer, an homage to Islamic spirituality during our holiest Jewish service. This wasn't a Buddhist coloring, which I might have expected, or even a nod to gospel-infused Christianity, which I didn't expect, but would have been less shocking. This was, again, the language of the enemy, using a word in Jewish prayer that suicide bombers shout out before detonating their explosive vests. What is going on here? This isn't merely tikkun olam – the mostly anodyne call for universalistic goodness, American Judaism's most famous innovation. This is radical empathy, an intentional tour into the heart of our adversary, an attempt to know the enemy in the same way the Torah insists we know "the heart of the stranger." It doesn't come out of nowhere. Deuteronomy includes a more prosaic form where we're commanded to return our enemy's lost object. Also, Jonah travels (reluctantly) to Nineveh and rescues the Assyrian city, a hundred years before that enemy wipes out the kingdom of Israel. We're told not to abhor the Egyptians, or to celebrate their suffering. There's an astonishing Midrash which identifies the king of Nineveh as Pharaoh, who's become a ba'al teshuva, a believer in the God of Israel. So the idea of seeing the world through the eyes of an enemy is not exactly foreign to Jewish thought. But chanting Allah during Rosh Hashanah services, or children singing salaam as part of a Friday afternoon ritual goes further than returning a lost object. Choosing Islam for syncretistic innovation means exploring the Islamic soul, trying on the spiritual clothes of not just an exotic, alien culture, but a religious sensibility that in most places on the globe – but not in America – opposes us. It's a big idea, generous, empathetic, large-hearted and strange. It's also naïve. Maybe even foolish. I'm not entirely sold. At this point, despite the moving moment on Rosh Hashanah, I'm an agnostic. I didn't sing along. But I am impressed. This isn't setting up a homeless shelter, or serving turkeys on Christmas day – as admirable as these activities are. It's deeper, provocative, disturbing in every way, and inspiring. We often fret over the future of North American Judaism. The crisis narrative that's so handy and tempting in our Israel discussions often proves equally tempting in thinking through our own complex issues. We're disappearing. We're losing ground – to other religions, other ideologies, to Israel. We're bleeding self-confidence. And, of course, the data confirms some of this pessimism (but certainly not all of it). So we forget our great accomplishments, our rituals, our thinkers. During the holidays, I experienced truly excellent music, moving worship, an innovative congregation bursting at the seams with young energy. I also encountered a truly consequential, novel idea. Who knows where it will lead? But if it's powerful ideas that direct us into the future, we've got some here.
{ "redpajama_set_name": "RedPajamaC4" }
5,727
[ 128000, 50, 6181, 309, 13, 19623, 102437, 348, 83508, 48219, 6520, 6, 337, 309, 11, 80148, 309, 11, 80148, 309, 627, 4071, 358, 574, 70779, 1243, 11, 323, 539, 8104, 43766, 13, 358, 3287, 956, 2339, 279, 21482, 13184, 11, 18336, 54508, 304, 279, 5609, 1389, 477, 279, 68834, 11, 1825, 70395, 65352, 13, 80148, 309, 11, 279, 3190, 388, 29340, 1389, 539, 559, 83128, 11, 539, 1524, 330, 55225, 1359, 719, 59033, 309, 11, 279, 35217, 3492, 11, 279, 15558, 3492, 11, 304, 2144, 279, 3789, 3492, 430, 7739, 330, 94893, 1210, 578, 3492, 315, 459, 9354, 11, 315, 264, 7829, 430, 596, 1027, 16447, 304, 264, 25114, 10937, 449, 603, 11, 430, 706, 92500, 4208, 2403, 603, 2533, 1603, 220, 6393, 22, 627, 40, 3463, 315 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 50, 6181, 309, 13, 19623, 102437, 348, 83508, 48219, 6520, 6, 337, 309, 11, 80148, 309, 11, 80148, 309, 627, 4071, 358, 574, 70779, 1243, 11, 323, 539, 8104, 43766, 13, 358, 3287, 956, 2339, 279, 21482, 13184, 11, 18336, 54508, 304, 279, 5609, 1389, 477, 279, 68834, 11, 1825, 70395, 65352, 13, 80148, 309, 11, 279, 3190, 388, 29340, 1389, 539, 559, 83128, 11, 539, 1524, 330, 55225, 1359, 719, 59033, 309, 11, 279, 35217, 3492, 11, 279, 15558, 3492, 11, 304, 2144, 279, 3789, 3492, 430, 7739, 330, 94893, 1210, 578, 3492, 315, 459, 9354, 11, 315, 264, 7829, 430, 596, 1027, 16447, 304, 264, 25114, 10937, 449, 603, 11, 430, 706, 92500, 4208, 2403, 603, 2533, 1603, 220, 6393, 22, 627, 40, 3463, 315, -100 ]
Archery fosters relationships. Don't believe me? Consider the Olympic Games. Every four years, the Olympics unite archers from across the world. Despite cultural differences, we unite through the Olympic spirit of "friendship, solidarity and fair play." We represent different countries, but we share a love for bows, arrows and arrowing bull's-eyes. That commonality spans generations to promote friendship and collaboration. Regardless of age, nationality or archery style – compound, recurve, bowhunting or target archery – we're all on the same team. And together we can affect the world around us. Alaskan wildlife officers use archery camps to build relationships with people along the Kuskokwim River, said Lisa Demer of the Alaska Dispatch News. The king salmon population in the river – a region that once provided more sustenance than anywhere in Alaska – declined in recent years. That forced the U.S. Fish and Wildlife Service to impose restrictions to help rebuild salmon numbers. The restrictions created tensions, despite good intentions to protect and boost the area's natural resources. By offering archery and firearms camps, however, federal wildlife officers started forming relationships with the native people at young ages. The camps provide a relaxed environment for officers to engage the children, open doors to communication, and prove that officers have the native people's interests at heart. They're not just enforcers. They're real people who genuinely desire to build relationships, and help the Kuskokwim villages and their resources flourish. For children who attend the camps, the early friendships with the officers are keys to continued success and cooperation. Although salmon fishing is temporarily restricted in the Kuskokwim village area, the restrictions will one day be lifted. When that happens, the native people will have mastered a new trade and new methods for acquiring protein: bowfishing and bowhunting. arcHER, an online community for female archers, combined archery love with philanthropic devotion to raise money for the National Breast Cancer Foundation. Using the ALS ice-bucket challenge as inspiration late last year, arcHER founders Cara Kelly and Kaitlyn Price organized the pink balloon challenge. "An arcHER shoots at a pink balloon from any distance while being videotaped, and then states that they'll donate to the National Breast Cancer Foundation," Price said. After sharing their videos on social media and tagging arcHER on Facebook, participants challenged fellow archers (men and women) to participate and donate. Social shares drove visibility, which resulted in more arrowed balloons and donations. The arcHER community raised just under $1,000 for breast cancer research in three months, proving that archery has the power to unite people in a common goal. Archery helped Emma Harris and her stepfather, Kevin, bond. It also aided Emma in building relationships with students her own age. Recurve archer Emma Harris started shooting archery with her stepfather when she was 8 years old. Harris' stepfather, Kevin, is a combat-disabled veteran. They're in different life stages and have different experiences, but archery bridges their generations to emotionally aid Emma and Kevin. Although archery is such an individual sport – you control where your arrows strike – shooting helped Emma come out of her shell. She became an effective communicator, both with her stepfather and kids her own age. Ready to make new archery friends? Head to your local archery shop to try archery, and find archery camps and tournaments near you.
{ "redpajama_set_name": "RedPajamaC4" }
29
[ 128000, 19249, 727, 37413, 388, 12135, 13, 4418, 956, 4510, 757, 30, 21829, 279, 25944, 11871, 13, 7357, 3116, 1667, 11, 279, 33063, 52696, 5438, 388, 505, 4028, 279, 1917, 13, 18185, 13042, 12062, 11, 584, 52696, 1555, 279, 25944, 9090, 315, 330, 10931, 5383, 11, 44254, 323, 6762, 1514, 1210, 1226, 4097, 2204, 5961, 11, 719, 584, 4430, 264, 3021, 369, 82565, 11, 38057, 323, 18404, 287, 17231, 596, 12, 58331, 13, 3011, 4279, 2786, 45395, 22540, 311, 12192, 27607, 323, 20632, 627, 63717, 315, 4325, 11, 59343, 477, 5438, 727, 1742, 1389, 24549, 11, 64648, 588, 11, 15631, 71, 27421, 477, 2218, 5438, 727, 1389, 584, 2351, 682, 389, 279, 1890, 2128, 13, 1628, 3871, 584, 649, 7958, 279, 1917, 2212, 603, 627, 2149, 79451, 30405 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 19249, 727, 37413, 388, 12135, 13, 4418, 956, 4510, 757, 30, 21829, 279, 25944, 11871, 13, 7357, 3116, 1667, 11, 279, 33063, 52696, 5438, 388, 505, 4028, 279, 1917, 13, 18185, 13042, 12062, 11, 584, 52696, 1555, 279, 25944, 9090, 315, 330, 10931, 5383, 11, 44254, 323, 6762, 1514, 1210, 1226, 4097, 2204, 5961, 11, 719, 584, 4430, 264, 3021, 369, 82565, 11, 38057, 323, 18404, 287, 17231, 596, 12, 58331, 13, 3011, 4279, 2786, 45395, 22540, 311, 12192, 27607, 323, 20632, 627, 63717, 315, 4325, 11, 59343, 477, 5438, 727, 1742, 1389, 24549, 11, 64648, 588, 11, 15631, 71, 27421, 477, 2218, 5438, 727, 1389, 584, 2351, 682, 389, 279, 1890, 2128, 13, 1628, 3871, 584, 649, 7958, 279, 1917, 2212, 603, 627, 2149, 79451, 30405, -100 ]
Created by Julie Stevens Dec 14, 2012 at 9:17am. Last updated by Julie Stevens Dec 14, 2012. Created by Julie Stevens Dec 13, 2008 at 1:30pm. Last updated by Julie Stevens Dec 4, 2012. Created by Julie Stevens Dec 4, 2012 at 4:59pm. Last updated by Julie Stevens Dec 4, 2012. Created by Julie Stevens Dec 4, 2012 at 4:58pm. Last updated by Julie Stevens Dec 4, 2012. Created by Julie Stevens Dec 4, 2012 at 4:49pm. Last updated by Julie Stevens Dec 4, 2012. Created by Julie Stevens Dec 4, 2012 at 4:47pm. Last updated by Julie Stevens Dec 4, 2012. Created by Julie Stevens Dec 4, 2012 at 4:46pm. Last updated by Julie Stevens Dec 4, 2012. Created by Julie Stevens Dec 4, 2012 at 4:45pm. Last updated by Julie Stevens Dec 4, 2012. Created by Julie Stevens Dec 13, 2008 at 1:24pm. Last updated by Julie Stevens Dec 3, 2012. Created by Julie Stevens Dec 3, 2012 at 11:59am. Last updated by Julie Stevens Dec 3, 2012. Created by Julie Stevens Dec 3, 2012 at 11:54am. Last updated by Julie Stevens Dec 3, 2012. Created by Julie Stevens Dec 13, 2008 at 1:17pm. Last updated by Julie Stevens Dec 3, 2012. Created by Julie Stevens Dec 3, 2012 at 11:45am. Last updated by Julie Stevens Dec 3, 2012. Created by Julie Stevens Dec 3, 2012 at 11:43am. Last updated by Julie Stevens Dec 3, 2012. Created by Julie Stevens Dec 3, 2012 at 11:42am. Last updated by Julie Stevens Dec 3, 2012. Created by Julie Stevens Dec 3, 2012 at 11:33am. Last updated by Julie Stevens Dec 3, 2012. Created by Julie Stevens Dec 3, 2012 at 11:32am. Last updated by Julie Stevens Dec 3, 2012. Created by Julie Stevens Dec 3, 2012 at 11:26am. Last updated by Julie Stevens Dec 3, 2012. Created by Julie Stevens Dec 3, 2012 at 11:22am. Last updated by Julie Stevens Dec 3, 2012. Created by Julie Stevens Dec 13, 2008 at 12:43pm. Last updated by Julie Stevens Dec 3, 2012.
{ "redpajama_set_name": "RedPajamaC4" }
4,516
[ 128000, 11956, 555, 42287, 36177, 3799, 220, 975, 11, 220, 679, 17, 520, 220, 24, 25, 1114, 309, 13, 8155, 6177, 555, 42287, 36177, 3799, 220, 975, 11, 220, 679, 17, 627, 11956, 555, 42287, 36177, 3799, 220, 1032, 11, 220, 1049, 23, 520, 220, 16, 25, 966, 5298, 13, 8155, 6177, 555, 42287, 36177, 3799, 220, 19, 11, 220, 679, 17, 627, 11956, 555, 42287, 36177, 3799, 220, 19, 11, 220, 679, 17, 520, 220, 19, 25, 2946, 5298, 13, 8155, 6177, 555, 42287, 36177, 3799, 220, 19, 11, 220, 679, 17, 627, 11956, 555, 42287, 36177, 3799, 220, 19, 11, 220, 679, 17, 520, 220, 19, 25, 2970, 5298, 13, 8155, 6177, 555, 42287, 36177, 3799, 220, 19, 11, 220, 679, 17, 627, 11956, 555, 42287 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 11956, 555, 42287, 36177, 3799, 220, 975, 11, 220, 679, 17, 520, 220, 24, 25, 1114, 309, 13, 8155, 6177, 555, 42287, 36177, 3799, 220, 975, 11, 220, 679, 17, 627, 11956, 555, 42287, 36177, 3799, 220, 1032, 11, 220, 1049, 23, 520, 220, 16, 25, 966, 5298, 13, 8155, 6177, 555, 42287, 36177, 3799, 220, 19, 11, 220, 679, 17, 627, 11956, 555, 42287, 36177, 3799, 220, 19, 11, 220, 679, 17, 520, 220, 19, 25, 2946, 5298, 13, 8155, 6177, 555, 42287, 36177, 3799, 220, 19, 11, 220, 679, 17, 627, 11956, 555, 42287, 36177, 3799, 220, 19, 11, 220, 679, 17, 520, 220, 19, 25, 2970, 5298, 13, 8155, 6177, 555, 42287, 36177, 3799, 220, 19, 11, 220, 679, 17, 627, 11956, 555, 42287, -100 ]
John Bissell Another strong year for Greylock Posted Friday, April 19, 2019 3:36 pm PITTSFIELD — The resurgent economy propelled Greylock Federal Credit Union to another strong year in 2018. The county's largest credit union experienced increases in assets, total deposits and loans during its 83rd year of operations, according to Greylock's annual report. Net income, or core earnings, at Greylock jumped from $6.7 million in 2017 to $8.4 million last year, an increase of 25%, according to Greylock's Executive Vice President Michael Stoddard. Increased loan growth, an increase in net interest margin from 2.91% to 3.11% percent, and a onetime refund/dividend from the National Credit Union Share Insurance Fund caused core earnings to rise. Regulatory net worth, a key measure of the credit union's financial strength, rose from 10.30% in 2017 to 10.44% last year. That number was 9.94% in 2016. Last year's increase in regulatory net worth further strengthened Greylock's "well-capitalized" rating that is determined by the National Credit Union Administration, the national regulatory agency for credit unions. The regulatory minimum is 7%. "It was better than we predicted, but we did expect a good strong year," said Stoddard, summing up Greylock's performance in 2018. Although unemployment is slightly higher in the Berkshires now than it was at this time last year, it remained under 5% for most of 2018. Greylock officials credited the strong local economy for producing $74 million in new loan growth — an increase of 7.7% from 2017 — bringing the credit union's total loans outstanding to $1.03 billion by the end of the calendar year. Greylock remained Berkshire County's top producer of both residential mortgage and auto loans in 2018. "Households are more confident," said Greylock's President and CEO John Bissell. "We see it in our survey." Another indication of the strengthening local economy — the number of net loan charge offs, the funding a lender recovers from unpaid loans, fell to .031% of Greylock's average loans, the lowest number since 2007. "That's a pretty good number in the industry," Stoddard said "It means the number of charge offs we have, the people who can't pay back their loans, is going down." Greylock finished the calendar year with $1.22 billion in assets, a $60 million increase from 2017. Total deposits increased by $10 million during 2018 to $1.2 billion. Borrowing remained low at $58 million, but the credit union increased its borrowings from the Federal Home Loan Bank by $42 million to supplement the funding for the strong demand for loans. Due to its status as a certified Community Development Financial Institution, Greylock originated 281 affordable used auto loans for credit challenged borrowers; helped 22 families avoid foreclosure through a foreclosure prevention plans; and issued 135 "Safety Net," "Borrow and Save" and "Credit Builder" loans to provide emergency access to credit regardless of a member's credit score. The credit union also made significant investments in online and mobile banking tools. Based on member feedback, Greylock now has 32,700 members who bank online and over 14,000 who use the credit union's mobile app, Bissell said. Business Editor Tony Dobrowolski can be reached at [email protected] or 413-496-6224.
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
8,092
[ 128000, 13379, 426, 1056, 616, 198, 14364, 3831, 1060, 369, 26769, 1039, 198, 17827, 6740, 11, 5936, 220, 777, 11, 220, 679, 24, 220, 18, 25, 1927, 9012, 198, 47, 964, 10155, 29847, 2001, 578, 594, 86153, 8752, 92785, 26769, 1039, 12411, 16666, 9323, 311, 2500, 3831, 1060, 304, 220, 679, 23, 627, 791, 14189, 596, 7928, 6807, 11552, 10534, 12992, 304, 12032, 11, 2860, 34751, 323, 17017, 2391, 1202, 220, 6069, 6634, 1060, 315, 7677, 11, 4184, 311, 26769, 1039, 596, 9974, 1934, 627, 7099, 8070, 11, 477, 6332, 24608, 11, 520, 26769, 1039, 27096, 505, 400, 21, 13, 22, 3610, 304, 220, 679, 22, 311, 400, 23, 13, 19, 3610, 1566, 1060, 11, 459, 5376, 315, 220, 914, 13689, 4184, 311, 26769, 1039, 596, 18362, 23270 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 13379, 426, 1056, 616, 198, 14364, 3831, 1060, 369, 26769, 1039, 198, 17827, 6740, 11, 5936, 220, 777, 11, 220, 679, 24, 220, 18, 25, 1927, 9012, 198, 47, 964, 10155, 29847, 2001, 578, 594, 86153, 8752, 92785, 26769, 1039, 12411, 16666, 9323, 311, 2500, 3831, 1060, 304, 220, 679, 23, 627, 791, 14189, 596, 7928, 6807, 11552, 10534, 12992, 304, 12032, 11, 2860, 34751, 323, 17017, 2391, 1202, 220, 6069, 6634, 1060, 315, 7677, 11, 4184, 311, 26769, 1039, 596, 9974, 1934, 627, 7099, 8070, 11, 477, 6332, 24608, 11, 520, 26769, 1039, 27096, 505, 400, 21, 13, 22, 3610, 304, 220, 679, 22, 311, 400, 23, 13, 19, 3610, 1566, 1060, 11, 459, 5376, 315, 220, 914, 13689, 4184, 311, 26769, 1039, 596, 18362, 23270, -100 ]
Q: How to add or subtract a "like" based on original value, only one time? I am trying to make whenever I click "like", the program adds 1 to the value. Also, if I click "unlike" it subtracts 1 from the original value. But only one time. As I can like one time and I can dislike one time ... (NOTE IF I UNLIKED AN ALREADY LIKED VALUE .. it subtracts From the original VALUE) var checker = true; $(".like").click(function() { if (checker) { var value = $(this).siblings(".total").text(); var integer = parseInt(value) y = integer + 1; var value = $(this).siblings(".total").text(y); checker = false; } }); $(".unlike").click(function() { if (checker) { var value = $(this).siblings(".total").text(); var integer = parseInt(value) y = integer - 1; var value = $(this).siblings(".total").text(y); checker = false; } }); <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <div class=p arent> <button class="like">LIKE!</button> <p class="total">5</p> <button class="unlike">UNLIKE</button> </div> <div class=parent> <button class="like">LIKE!</button> <p class="total">12</p> <button class="unlike">UNLIKE</button> </div> A: Try it :) $(document).on('click', '.like', function() { var attr = $(this).parent('.parent').attr('checked'); if (!(typeof attr !== typeof undefined && attr !== false)) { var value = $(this).siblings('.total').text(); var interger = parseInt(value); ++interger; $(this).siblings('.total').text(interger); $(this).parent('.parent').attr('checked', 'checked'); } }); $(document).on('click', '.unlike', function() { var attr = $(this).parent('.parent').attr('checked'); if (!(typeof attr !== typeof undefined && attr !== false)) { var value = $(this).siblings('.total').text(); var interger = parseInt(value); --interger; $(this).siblings('.total').text(interger); $(this).parent('.parent').attr('checked', 'checked'); } }); <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <div class=parent> <button class="like">LIKE!</button> <button class="unlike">UNLIKE</button> <p class="total">5</p> </div> <div class=parent> <button class="like">LIKE!</button> <button class="unlike">UNLIKE</button> <p class="total">12</p> </div> A: Try this. Basic solution is to save state of every .like or .unlike in corresponding block. I have used .parent's data. If you want it to be likeable after like and dislike or vice versa, you should have to change opposite status to false, like this. A: You can do this by setting property to respective .total field. var checker = true; $(".like").click(function() { if ($(this).siblings(".total").prop("likeValue") == 1) return; var value = $(this).siblings(".total").text(); var integer = parseInt(value); if ($(this).siblings(".total").prop("likeValue") == -1) y = integer + 2; else y = integer + 1; var value = $(this).siblings(".total").text(y); $(this).siblings(".total").prop("likeValue", 1); }); $(".unlike").click(function() { if ($(this).siblings(".total").prop("likeValue") == -1) return; var value = $(this).siblings(".total").text(); var integer = parseInt(value) if ($(this).siblings(".total").prop("likeValue") == 1) y = integer - 2; else y = integer - 1; var value = $(this).siblings(".total").text(y); $(this).siblings(".total").prop("likeValue", -1); }); <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <div class=p arent> <button class="like">LIKE!</button> <p class="total">5</p> <button class="unlike">UNLIKE</button> </div> <div class=parent> <button class="like">LIKE!</button> <p class="total">12</p> <button class="unlike">UNLIKE</button> </div>
{ "redpajama_set_name": "RedPajamaStackExchange" }
4,011
[ 128000, 48, 25, 2650, 311, 923, 477, 33356, 264, 330, 4908, 1, 3196, 389, 4113, 907, 11, 1193, 832, 892, 30, 358, 1097, 4560, 311, 1304, 15716, 358, 4299, 330, 4908, 498, 279, 2068, 11621, 220, 16, 311, 279, 907, 13, 7429, 11, 422, 358, 4299, 330, 359, 4908, 1, 433, 33356, 82, 220, 16, 505, 279, 4113, 907, 13, 2030, 1193, 832, 892, 627, 2170, 358, 649, 1093, 832, 892, 323, 358, 649, 48969, 832, 892, 2564, 320, 28892, 11812, 358, 6781, 84437, 1507, 2147, 8927, 46678, 7708, 42, 1507, 27925, 5354, 433, 33356, 82, 5659, 279, 4113, 27925, 3707, 959, 42015, 284, 837, 280, 23898, 4908, 1865, 3763, 2993, 368, 341, 220, 422, 320, 71055, 8, 341, 262, 767, 907, 284, 5035, 576, 570, 53020, 5798 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 48, 25, 2650, 311, 923, 477, 33356, 264, 330, 4908, 1, 3196, 389, 4113, 907, 11, 1193, 832, 892, 30, 358, 1097, 4560, 311, 1304, 15716, 358, 4299, 330, 4908, 498, 279, 2068, 11621, 220, 16, 311, 279, 907, 13, 7429, 11, 422, 358, 4299, 330, 359, 4908, 1, 433, 33356, 82, 220, 16, 505, 279, 4113, 907, 13, 2030, 1193, 832, 892, 627, 2170, 358, 649, 1093, 832, 892, 323, 358, 649, 48969, 832, 892, 2564, 320, 28892, 11812, 358, 6781, 84437, 1507, 2147, 8927, 46678, 7708, 42, 1507, 27925, 5354, 433, 33356, 82, 5659, 279, 4113, 27925, 3707, 959, 42015, 284, 837, 280, 23898, 4908, 1865, 3763, 2993, 368, 341, 220, 422, 320, 71055, 8, 341, 262, 767, 907, 284, 5035, 576, 570, 53020, 5798, -100 ]
Hattie is the first Boston Terrier with an MXF title!!! At Preble Field on 8/2/2015 Hattie Double Q'd, 4th and 2nd Place, at the German Shepherd Club of San Diego County AKC Trial ! and Q'd 2nd Place again in MPSTD the next day! Hattie took a 2nd-Place Q MPSTD (13 PACH pts.) on Saturday and a lst-Place Q MPSTD (12 PACH pts.) on Sunday!! and Q'd 2nd Place in MPJWW on Sunday. 2nd Place, 20 PACH points! Hattie Double Q'd (2nd Place)! Saturday Master Preferred Jumpers with Weaves 2nd Place 8 PACH pts. Saturday Master Preferred Standard lst Place 22 PACH pts. Sunday Master Preferred Jumpers with Weaves lst Place 14 PACH pts. Sunday Master Preferred Standard lst Place 20 PACH pts. Master Preferred Jumpers with Weaves 2nd Place 15 PACH pts. Master Preferred Standard 1st Place 20 PACH pts. Master Preferred Jumpers with Weaves 1st Place 12 PACH pts. Master Preferred Standard 1st Place 18 PACH pts. Master Preferred Jumpers with Weaves 1st Place 14 PACH pts. Master Preferred Standard 2d Place 23 PACH pts. Hattie Double Q'd at the SDRRC AKC Trial 3/23/2013 at Liberty Station with 11 MACH pts. in MJ/W and 21 MACH pts. 4th-Place Q in MSTD! Hattie Double Q'd on Saturday, 2/9/2013, at the American Chesapeake AKC Trial at Liberty Station with a 3rd-Place Q in MJ/W and a 4th-Place Q MSTD! On Saturday, November 24, 2012, at the Southwestern Rottweiler Club of San Diego AKC Trial at Rohr Park, Hattie Double Q'd! Despite the heat and humidity, Hattie Double Q'd at the German Shepherd Dog Club of San Diego AKC trial at Rohr Park on Saturday, 9/22/2012, with a 3rd Place in XBJ/W! At the hot and humid American Chesapeake Club AKC Trial at Rohr Park on August 18 and 19, 2012, Hattie Double Q'd Sunday (XBJ/W 3rd Place 12 MACH pts. and XBSTD 3rd Place 22 MACH pts.). On July 28-29, 2012 at the Aztec Doberman Pinscher Club of San Diego Trial at Liberty Station, Hattie Double/Double Q'd with 9 MACH pts. J/W both days, 20 MACH pts. STD 3rd Place Saturday and 22 MACH pts. STD 4th Place Sunday! On July 13-15, 2012 at the Papillon Club of Southern California at the Brookside Equestrian Center in Walnut, CA in heat and humidity, Hattie Double Q'd on Friday with a 3rd Place and 20 MACH pts in Standard and 13 MACH pts in J/W and again on Sunday with 21 MACH pts in Standard and 10 MACH pts in J/W adding 16 MACH pts. in J/W on Saturday. At the Bichon Frise Club of San Diego AKC trial, Liberty Station, June 15 thru 17, 2012 Hattie Double/Double Q'd on very challenging courses! At the Kennel Club of Pasadena AKC trial on June 2 and 3, 2012, Hattie Double Q'd with 32 MACH pts! On May 19, 2012 Hattie aka Hottie got her 20th Double Q earning her Master Agility Champiohship title at the San Diego Rhodesian Ridgeback Club trial in Liberty Station. She continued her streak earning her 21st Double Q the next day. Like father, like daughter... CH. MACH GERONIMO! In rain, wind and hail at the Agility Club of San Diego AKC Trial, Rohr Park, March 17 & 18, 2012, Hattie Double/Double Q'd #18 and #19: XBJ/W 3rd Place (15 MACH pts.), XBStd. 3rd Place (21 MACH pts.), XBJ/W 2d Place (8 MACH pts.), XBStd. lst Place (23 MACH pts.)! On March 10 & 11, 2012, at the Keeshond Club of Southern California AKC Trial, Walnut Grove Park, San Marcos, Hattie Q'd in XB Standard both days (4th and 3rd Place) with a Double Q on Sunday! Hattie Double Q'd with two 2nd Placements (14 MACH points in XB J/W and 18 MACH points in XB Standard) at the American Chesapeake AKC trial on February 11, 2012. On Sunday, Hattie won the 12" XB Standard (19 MACH points)! Hattie was awesome on Sunday with Q and a 3rd place in Standard. She gave me my start lines and contacts. My handler error in jumpers robbed her of her Double Q. I got into overdrive after running Nell before Hattie and sent Hattie out too far when layering! Hattie Double Q'd on Saturday, December 10, 2011 with a 3rd Place (14 MACH pts.) in Jumpers with Weaves and 3rd Place (24 MACH pts.) Standard! On Sunday, December 11, 2011, she got 2nd Place (.12 seconds away from lst Place) with 25 MACH pts. in Standard, just missing another Double Q due to the last bar down in J/W (the triple). At the German Shepherd Dog Club of San Diego AKC Trial on September 25, 2011, at Rohr Park, Hattie Double Q'd with a 3rd Place Q (22 MACH points) in XStandard! On July 31, 2011, at the Aztec Doberman Pincher Club of San Diego AKC Trial, Liberty Station, Hattie Double Q'd with a 4th Place in XB Std., 25 MACH points! At the hot/challenging Agility Club of San Diego AKC trial, July 9 and l0, 2011 at Rohr Park: on Saturday, Hattie won the 12" XB Jumpers/Weaves class for 21 MACH points. On Sunday, July 3, 2011, at Liberty Station (hot days/challenging courses at the Golden Retriever Club of San Diego AKC trial), Hattie Double Q'd. Friday XB J/W 3rd Place 15 MACH pts., XB Standard 2nd Place 33 MACH pts. and Saturday XB J/W 3rd Place 13 MACH pts., XB Standard 3d Place 20 MACH pts. At HVOC on Sunday, March 27, 2011, at the Bichon Frise Club of San Diego/San Diego Rhodesian Ridgeback Club AKC trial Hattie Double Q'd: JWW Class 2d Place (3.04 seconds from lst) with 24 MACH pts., Standard Class 2d Place (.31 second from lst) 37 MACH pts. Picture taken at the rainy UDAC November 21, 2010 NADAC trial. On October 3, 2010 At the Aztec Doberman Pincher Club AKC trial, Hattie Double Q'd earning 73 MACH points. At the San Diego Rhodesian Ridgeback Club, March 27 and 28, 2010, Hattie "Q'd" with a 2nd Place on Saturday and a lst Place Q (36 MACH points) on Sunday in Excellent B J/W 12". At a hot Fourth of July 2009 celebration at the Agility Club of San Diego AKC trial in Rohr Park, all-star Hattie won the 12" Excellent B Standard class earning 50 MACH points. At the UDAC NADAC trial May 30 and 31, 2009, at Skydance Ranch, Oceanside, CA, Hattie came away with lst and 2nds and two titles, WV-N and TN-N. At the Golden Retriever Club of San Diego Agility Trial on Sunday, October 26, 2008, at Rohr Park, Bonita, CA; Hattie won Excellent B Jumpers/Weaves 12" (against 19 competitors) in 29:47 seconds (Standard Course Time was 46 seconds) earning 32 MACH pts. (She was less than a second behind the overall fastest time winner in the 8" class.) There were very few qualifiers in all heights. On a hot/muggy Sunday, July 27, 2008, Hattie won (42 MACH points)the very challenging 12" Excellent B Standard Class of 18 at the Aztec Doberman Pinscher Club of San Diego AKC Trial, Rohr Park, with Sandy without her bionic left knee! Hattie achieved her AX title with a lst-Place Q in 12" Excellent A Standard and also was awarded High Scoring Excellent B Agility Boston Terrier by Meghan Thomas of the Arizona Boston Terrier Rescue. Highlights of the Rainy/Muddy Outdoor AKC Silver Bay Kennel Club Trial on February 23 and 24, 2008 in Del Mar: Geronimo and Hattie are proven "mudders"; Hattie took a lst in Saturday's Excellent B FAST (3l:03 76 SCT 35 with the most points in the least amount of time all jump heights) and another lst Place on Sunday! Hattie turned heads at the West Coast Cocker Spaniel Club at Industry Hills Expo Center 1/5/2008 by being one of very few qualifiers in all classes for Excellent B FAST! Hattie took a lst in the 12" class! On Saturday, October 27, 2007, while recovering from the effects of the Witch Fire, Hattie won and titled in the Excellent A 12" FAST class (31.42 SCT, 78 points). On Sunday, October 28, Hattie won the Excellent B 12" FAST class moving Geronimo (dad) to 2nd Place. At the Golden Retriever Club of Greater Los Angeles' three-day Labor Day AKC Trial in over 105-degree temperatures, Hattie took a lst-Place Q the last day in Excellent 12" Standard! Highlight at the AKC Southern California Portuguese Water Dog Club Trial 2/4/06: Hattie winning and titling (AXJ) in the Excellent A Jumper w/Weaves 12": Yds: 133 SCT: 41 Hattie's time: 28.42 (fastest Qualifying time in the 12" Excellent Jumpers w/Weaves classes totaling 96 dogs). The overall fastest time for 1st-Place Qualifiers at all other jump heights was only 2-3 seconds less. At the Golden Retriever Club of San Diego AKC Trial on October 28 and 29, 2006, Hattie attained her Master Excellent Jumper (MXJ) title by Qualifying both days in the 12" Excellent B Jumpers w/Weaves (class of 15) with a lst Place on Sunday and 28 MACH Points! Hattie in her first trial at Wags for Wishes in June 2004 was 1st place & Q'd in Novice B JWW on Friday and 1st Place & Q'd Novice B JWW on Saturday. She earned a first place and her NAJ title Sept. 11 at the ACD trial in Del Mar and was the only Qualifier in Novice B Standard 12" on the same day.
{ "redpajama_set_name": "RedPajamaC4" }
4,294
[ 128000, 39, 1617, 648, 374, 279, 1176, 10406, 10335, 7401, 449, 459, 28685, 37, 2316, 80395, 1688, 5075, 901, 8771, 389, 220, 23, 14, 17, 14, 679, 20, 473, 1617, 648, 7238, 1229, 4265, 11, 220, 19, 339, 323, 220, 17, 303, 11004, 11, 520, 279, 6063, 59646, 10349, 315, 5960, 18842, 6406, 31672, 34, 41574, 59162, 438, 1229, 4265, 220, 17, 303, 11004, 1578, 304, 9599, 29586, 279, 1828, 1938, 4999, 39, 1617, 648, 3952, 264, 220, 17, 303, 12, 17826, 1229, 9599, 29586, 320, 1032, 393, 12137, 31093, 6266, 389, 7884, 323, 264, 19376, 12, 17826, 1229, 9599, 29586, 320, 717, 393, 12137, 31093, 6266, 389, 7418, 51447, 438, 1229, 4265, 220, 17, 303, 11004, 304, 9599, 41, 19522, 389, 7418, 627, 17, 303, 11004, 11 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 39, 1617, 648, 374, 279, 1176, 10406, 10335, 7401, 449, 459, 28685, 37, 2316, 80395, 1688, 5075, 901, 8771, 389, 220, 23, 14, 17, 14, 679, 20, 473, 1617, 648, 7238, 1229, 4265, 11, 220, 19, 339, 323, 220, 17, 303, 11004, 11, 520, 279, 6063, 59646, 10349, 315, 5960, 18842, 6406, 31672, 34, 41574, 59162, 438, 1229, 4265, 220, 17, 303, 11004, 1578, 304, 9599, 29586, 279, 1828, 1938, 4999, 39, 1617, 648, 3952, 264, 220, 17, 303, 12, 17826, 1229, 9599, 29586, 320, 1032, 393, 12137, 31093, 6266, 389, 7884, 323, 264, 19376, 12, 17826, 1229, 9599, 29586, 320, 717, 393, 12137, 31093, 6266, 389, 7418, 51447, 438, 1229, 4265, 220, 17, 303, 11004, 304, 9599, 41, 19522, 389, 7418, 627, 17, 303, 11004, 11, -100 ]
Resume Template Microsoft Office Microsoft Office Skills Resume Resume Examples Downloadable Microsoft Office Resume Templates , Download this wallpaper for free in high resolution. Resume Template Microsoft Office Microsoft Office Skills Resume Resume Examples Downloadable Microsoft Office Resume Templates was posted in August 24, 2018 at 7:33 pm and This Resume Template Microsoft Office Microsoft Office Skills Resume Resume Examples Downloadable Microsoft Office Resume Templates Wallpaper has viewed by 33 users. If you wanna have it as yours, please click full size and you will go to page download in full size, so you just choose the size above the wallpaper that you want in "Download", Click it and download the Resume Template Microsoft Office Microsoft Office Skills Resume Resume Examples Downloadable Microsoft Office Resume Templates Wallpaper.
{ "redpajama_set_name": "RedPajamaC4" }
106
[ 128000, 29663, 14692, 5210, 8410, 5210, 8410, 31340, 34498, 34498, 26379, 8745, 481, 5210, 8410, 34498, 19820, 1174, 8745, 420, 44686, 369, 1949, 304, 1579, 11175, 13, 34498, 14692, 5210, 8410, 5210, 8410, 31340, 34498, 34498, 26379, 8745, 481, 5210, 8410, 34498, 19820, 574, 8621, 304, 6287, 220, 1187, 11, 220, 679, 23, 520, 220, 22, 25, 1644, 9012, 323, 1115, 34498, 14692, 5210, 8410, 5210, 8410, 31340, 34498, 34498, 26379, 8745, 481, 5210, 8410, 34498, 19820, 71896, 706, 19894, 555, 220, 1644, 3932, 13, 1442, 499, 33833, 617, 433, 439, 18821, 11, 4587, 4299, 2539, 1404, 323, 499, 690, 733, 311, 2199, 4232, 304, 2539, 1404, 11, 779, 499, 1120, 5268, 279, 1404, 3485, 279, 44686, 430, 499, 1390, 304, 330, 11631, 498, 9369, 433, 323, 4232 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 29663, 14692, 5210, 8410, 5210, 8410, 31340, 34498, 34498, 26379, 8745, 481, 5210, 8410, 34498, 19820, 1174, 8745, 420, 44686, 369, 1949, 304, 1579, 11175, 13, 34498, 14692, 5210, 8410, 5210, 8410, 31340, 34498, 34498, 26379, 8745, 481, 5210, 8410, 34498, 19820, 574, 8621, 304, 6287, 220, 1187, 11, 220, 679, 23, 520, 220, 22, 25, 1644, 9012, 323, 1115, 34498, 14692, 5210, 8410, 5210, 8410, 31340, 34498, 34498, 26379, 8745, 481, 5210, 8410, 34498, 19820, 71896, 706, 19894, 555, 220, 1644, 3932, 13, 1442, 499, 33833, 617, 433, 439, 18821, 11, 4587, 4299, 2539, 1404, 323, 499, 690, 733, 311, 2199, 4232, 304, 2539, 1404, 11, 779, 499, 1120, 5268, 279, 1404, 3485, 279, 44686, 430, 499, 1390, 304, 330, 11631, 498, 9369, 433, 323, 4232, -100 ]
Ein Kampf um Rom ist ein seinerzeit sehr populärer historischer Roman von Felix Dahn, der 1876 veröffentlicht wurde. Allgemein Die Handlung spielt in der ausgehenden Spätantike, überspannt das zweite Viertel des 6. Jahrhunderts n. Chr. und handelt vom Kampf der Ostgoten in Italien gegen Ostrom und von ihrem Untergang im Jahr 552. Das Leitmotiv wird in dem auch in die Anthologien eingegangenen Schlussgedicht deutlich: Gebt Raum, ihr Völker, unsrem Schritt. | Wir sind die letzten Goten. | Wir tragen keine Krone mit, | Wir tragen einen Toten. [ ... ] Dieser Tote, der Gotenkönig Teja, drückte dem ganzen voluminösen Roman den Stempel des tragischen Niedergangs eines Volkes aus verheißungsvollen Anfängen auf (vgl. Theoderich der Große). Er wurde bereits im Wilhelminismus – durchaus im Sinn des Verfassers – als Warnung vor Überschätzung augenblicklicher Erfolge und als Dekadenzkritik rezipiert und nach dem Ersten Weltkrieg als eine eingetroffene Vorhersage für das Deutsche Reich gelesen. Denn sowohl die Goten als auch die Weströmer werden in ihren Hoffnungen enttäuscht, und am Ende der Kämpfe um Rom steht für beide Seiten eine Katastrophe. Die farbenfrohe und intrigenreiche Handlung konzentriert sich auf den Kampf um Rom und dabei vor allem auf Heldentum und Heldentod, so dass das Werk bald zu einem ausgesprochenen "Jungsroman" im 1871 neugegründeten Reich wurde. Dahn war Historiker und achtete darauf, den Roman – nach damaligem Wissensstand – so historisch korrekt wie möglich zu schreiben, was ihn in die Kategorie der Professorenromane jener Zeit einreiht. Andere Teile des Inhalts, z. B. die Person des Cethegus, sind aber frei erfunden. Dahn schreibt in seinen Erinnerungen, er habe den Roman eigentlich dem Feuer übergeben wollen. Nur das energische Eingreifen seiner Frau Therese Dahn habe ihn davor bewahrt. Der Roman wurde sein mit Abstand größter Publikumserfolg und blieb bis in die zweite Hälfte des 20. Jahrhunderts populär. Dahn, der 1865 die erste wissenschaftliche Monographie über den spätantiken Geschichtsschreiber Prokopios von Caesarea veröffentlicht hatte, orientierte sich stark an dessen Darstellung der Ereignisse (Prokopios erscheint auch als Nebenfigur im Roman). Aus Sicht der heutigen Forschung gibt der Roman auch dort, wo sich Dahn an die historischen Fakten zu halten bemühte, vielfach ein verzerrtes, dem völkischen Denken des 19. Jahrhunderts geschuldetes Bild der Ereignisse wieder; so werden bei Dahn etwa in ahistorischer Weise die Goten als "Deutsche" bezeichnet und beschrieben, wie sie im südlichen Klima Italiens ihrer nordischen Herkunft entfremdet verweichlichen, wodurch sie ihre Kampfkraft verlieren und somit ihren eigenen Untergang herbeiführen, sich dabei stets als Fremde fühlend. Der scharfe Gegensatz zwischen "Römern" und "Germanen", von dem Dahn im Einklang mit dem damaligen Wissensstand ausging, wird heute sehr viel differenzierter betrachtet (siehe auch Ethnogenese). Hauptfiguren und -konflikte Dahns Hauptfiguren sind komplex und oft von inneren Widersprüchen gezeichnet. Goten Die Geschichte dreht sich hier zunächst um die Königin Amalaswintha, die einen Anschluss an Ostrom für angebracht hält und deshalb von vielen Ostgoten als Verräterin angesehen wird. Außerdem geht es um fünf Schwurbrüder, die das Gotenreich selbständig erhalten wollen und von denen drei ihr später als Könige nachfolgen: Witichis als Soldat, der Treue und Tapferkeit mit mangelndem Scharfsinn vereint, Totila als charismatischer Heldenjüngling, der für kurze Zeit das Blatt zu wenden scheint, aber im Reiterkampf fällt, und der düstere Teja, der den heldenhaften Untergang symbolisiert und in einer Klamm des Vesuvs im Duell mit Cethegus stirbt, den er jedoch ebenfalls tötet. Weströmer Charakterlich am interessantesten ausgebildet ist der (unhistorische) verschlagene und finstere Senator Cethegus, der die herrschenden Goten und die Oströmer gegeneinander ausspielt, um Rom (d. h. Westrom) seine alte Selbständigkeit wiederzugeben. Er stammt aus dem alten Geschlecht der Julier. Es ist zu bemerken, dass Cethegus auch körperlich ein beachtenswerter Mann ist, also keineswegs dem Zerrbild des schwächlichen Römlings entspricht. Oft zeigt Cethegus genau die Eigenschaften, die seinen jeweiligen gotischen Gegnern fehlen: Weitsicht, Verschwiegenheit, Klugheit. Von geringerer Bedeutung sind der intrigante Papst Silverius und seine Anhänger, die vom altrömischen Adel abstammen und demgemäß Namen wie Scaevola und Albinus tragen. Diese Gestalten schildert Dahn als eher dekadent. Oströmer (Byzantiner) Im Roman dominieren (wie bei Prokopios) nicht so sehr der Kaiser Justinian und seine Frau Theodora, sondern die Militärs Belisar, eine Lichtgestalt, die aber den Goten nicht das Schicksal der von ihm bereits besiegten Vandalen bereiten kann, und der verschlagene Narses, der sie als der klügere Stratege schließlich besiegt. Damit ist die Freiheit Italiens, für die sowohl Weströmer als auch Goten gekämpft hatten, verloren. Inhalt Erstes Buch: Theoderich Der Roman beginnt während der letzten Tage der Herrschaft Theoderichs des Großen über Italien. Zu dieser Zeit treffen sich fünf führende Ostgoten um den alten Waffenmeister des Gotenkönigs, Hildebrand, unweit von Ravenna, um über die Missstände im Ostgotenreich zu sprechen. Die Brüder Totila und Hildebad sowie die Feldherren Witichis und Teja leisten einen Schwur, dem Volk der Goten immer treu zu dienen. Denn sie sind Gegner der von dem Römer Cassiodor, dem Kanzler des Reiches, und Amalaswintha, der Tochter Theoderichs, initiierten Aussöhnungspolitik von Römern und Goten, die ihrer Ansicht nach schädlich für die Goten ist. Wenige Tage später treffen sich Angehörige der italisch-römischen Aristokratie und des Klerus um den ehrgeizigen Priester Silverius, dessen Ziel es ist, Papst zu werden, mit Cethegus, um den weströmischen Widerstand gegen die Herrschaft der Goten zu stärken. Als der König im Sterben liegt, übernimmt Cethegus auf Bitten des Kanzlers und Amalaswinthas das Amt des Stadtpräfekten von Rom, das er durch die Aushebung eigener Truppen und die Renovierung der Mauern dazu benutzt, die Unabhängigkeit der Stadt gegenüber dem Gotenreich zu stärken. Zweites Buch: Athalarich Jedoch wird nach dem Tode Theoderichs dessen junger Enkel Athalarich, der an seiner körperlichen Schwäche leidet, König. Es gelingt der Gotenpartei, ihn für sich zu gewinnen. Zwar übernimmt aufgrund seines jungen Alters zunächst seine Mutter Amalaswintha die Herrschaft, doch wendet sich Athalarich bald gegen seine Mutter und will das Gotenreich selbst regieren. Somit ist Cethegus zunehmend mit dem Widerstand des Königs konfrontiert. Um diesen aus dem Weg zu räumen, fädelt Cethegus eine Liebesaffäre mit einer Römerin ein, deren Mutter er einen vermeintlichen Liebestrank überreicht, der in Wahrheit giftig ist. Als diese ihn bei Athalarich anwendet, stirbt der junge König. So wird die Königsmutter und Prinzregentin Amalaswintha zur Königin, was einen schweren Rückschlag für die Gotenpartei und eine Stärkung der Position des Cethegus bedeutet. Drittes Buch: Amalaswintha Um seine Macht über die Königin zu stärken, will Cethegus sie von Ravenna nach Rom ziehen. Nur wenige Tage später treffen aber die Gotenherzöge Thulun, Ibba und Pitza ein, die der junge König noch vor seinem Tod nach Ravenna gerufen hatte und die der Königin einen Vertrag abringen, der ihre eigene Position schwächt und dem sie nur wegen ihrer bereits zu diesem Zeitpunkt geplanten baldigen Flucht nach Konstantinopel zustimmt. Doch die Flucht wird durch das Einschreiten Totilas vorzeitig verhindert. Cethegus überzeugt die Königin nun, die Gotenherzöge, die, durch den Vertrag gestärkt, zurück an die Grenzen reisen, um diese mit verstärkten Truppen zu verteidigen, ermorden zu lassen, was auch gelingt. Er verlässt die Königin aber in dieser schweren Stunde. Zur selben Zeit beratschlagt der oströmische Kaiser Justinian, in den Amalaswintha nach dem Tod seines Vorgängers Justinus ihre Hoffnungen setzt, mit seinen Feldherrn Narses und Belisar und einigen Rechtsgelehrten über die neue Situation in Italien. Er beschließt, trotz der Bedenken des Narses wegen der ungesicherten Ostgrenze gegenüber den Sassaniden, Belisar mit Truppen nach Italien zu schicken, und betraut Cethegus und Petros damit, die Gotenkönigin für ihn zu gewinnen und in ihrem Reich Zwietracht zu säen, um eine Eroberung zu erleichtern. Er wird in seinem Entschluss von seiner Gattin Theodora unterstützt, die jedoch überdies dem Gesandten Petros heimlich den Auftrag gibt, Amalaswintha zu töten, da diese eine Konkurrentin werden könnte. Viertes Buch: Theodahad Als Petros mit Cethegus in Ravenna ankommt, legt er der gotischen Königin nahe, zugunsten ihres Cousins Theodahad zurückzutreten, der der letzte männliche Spross des Geschlechts der Amaler ist, aber auch egoistisch und feige. Sie folgt dem Rat, mahnt aber ihren Vetter, als dieser das Volk der Goten an die Oströmer verkauft, nicht denselben Fehler wie sie zu begehen. Da sich Theodahad aber nicht davon abbringen lässt, flieht sie auf Anraten Cassiodors, um der gotischen Volksversammlung bei Rom von dem Verrat berichten zu können. Die Königin flieht in die Villa des ehemaligen Kanzlers, wird hier jedoch von Gothelindis, der Gattin des Theodahad, die das Gut des Kanzlers zuvor gekauft hatte, überrascht und getötet. Als der Tod bekannt wird, kündigt Petros, der Mitwisser des Verbrechens war und den Theodora deshalb später verbannen lässt, im Auftrag des Kaisers die mit Theodahad geschlossenen Vereinbarungen auf und erklärt dem Gotenreich im Namen Justinians den Krieg. Kurz vor Beginn der Volksversammlung der Goten landet Belisar mit den kaiserlichen Truppen auf Sizilien, doch der König lässt ihn gewähren und schickt die gotischen Streitkräfte stattdessen gen Norden. Doch gelingt es der Gotenpartei um Hildebrand, Gothelindis wegen Mordes zum Tode zu verurteilen und den König wegen Verrates am Volk abzusetzen und für vogelfrei zu erklären. Sie wählen Witichis zum neuen König, da er Gerechtigkeitssinn und Vernunft bewiesen habe. Fünftes Buch: Witichis Wenige Tage später steht Belisar vor Neapel. Die Stadt fällt nach 15 Tagen durch Verrat. Totila entkommt knapp. Da Neapel gefallen ist, beschließt Witichis, auch Rom, dessen Bewohner, wie er vermutet, wie die der anderen Städte in Süditalien zu Belisar überlaufen werden, preiszugeben, um wenigstens den Norden Italiens halten zu können und um später zurückzukehren und die Stadt wieder zu erobern. Grund dafür ist einerseits, dass der Großteil der gotischen Truppen an den Grenzen im Norden steht und der König nur 20.000 Mann gegen ein fast 80.000 Mann starkes kaiserliches Heer zur Verfügung hat, und andererseits, dass das Geschlecht der Wölsungen, da es Mataswintha, die Enkelin Theoderichs, gefangen hält, Anspruch auf den Thron erhebt. Die Goten ziehen sich nun nach Ravenna zurück, lassen die Stadtrömer jedoch zuvor noch Treue schwören, ohne jedoch an deren Verlässlichkeit zu glauben. Kaum haben die Goten die Stadt verlassen, fordert der neugewählte Papst Silverius in der Tat die Bürger Roms auf, ihren Eid zu brechen. Er kündigt an, mit einer Gesandtschaft zu Belisar zu reisen, um ihm die Schlüssel der Stadt zu übergeben. Doch Cethegus, den er anklagen will, kommt ihm zuvor und weist ihm seine Absicht nach, ein Priesterreich zu errichten, worauf Belisar den Bischof von Rom an den Hof von Byzanz schickt, der über ihn und seine Gesandtschaft richten soll. Aber dem Stadtpräfekten von Rom gelingt es, auch den Feldherrn dazu zu bringen, nur unter seinen Bedingungen in Rom einzuziehen. Das verschafft Cethegus einen bedeutenden strategischen Vorteil. Zur gleichen Zeit liegen sowohl die Wölsungen als auch Witichis vor Ravenna, um Einlass zu erhalten und somit die wichtigste Feste der Goten und damit den Königstitel in Händen zu halten. Doch die Ravennaten weigern sich, ihnen den Eintritt zu gewähren, denn sie erkennen nur Mataswintha als ihre Königin an, da sie den Amalern die Treue geschworen haben. Darum verlangt Hildebrand vom König, er solle seine Frau Rauthgundis aufgeben und dafür die Enkelin Theoderichs heiraten. Erst nach langen Unterredungen und dem Zuspruch seiner Frau erklärt sich Witichis schweren Herzens einverstanden. Durch die Heirat des Königs mit der ihn von Kind auf verehrenden und liebenden Amelungentochter gelingt es den Goten, sich wieder zu vereinigen. Da der König aber in der Hochzeitsnacht Mataswintha erklärt, dass er sie niemals lieben könne, schwört die tief verletzte Frau, ihm und dem Gotenreich das Verderben zu bringen. Kurz darauf rüsten sich die Goten zum Aufbruch nach Rom. Vor Rom stellt sich ihnen Belisar zur Schlacht, den sie jedoch überlegen besiegen. Belisar muss in die Stadt flüchten, die die Goten nun lange belagern, da jegliche Versuche, sie zu erstürmen, von Anfang an durch den Verrat der Königin zum Scheitern verurteilt sind. Diese trifft sich allabendlich mit Cethegus, um diesem die gotischen Pläne für den nächsten Tag zu verraten. Als Witichis in einem Großangriff versucht, die Stadt zu nehmen, gelingt ihm dies beinahe, doch scheitert er, als sich ihm Cethegus in den Weg stellt. Nach über einem Jahr der Belagerung verzeichnen die Goten eine traurige Bilanz, denn drei Viertel der Kämpfer sind durch Hunger, Kampf oder Seuchen umgekommen. Zudem ist Witichis gezwungen, sich nach Ravenna zurückzuziehen, da der blutige Johannes, ein Gegenfeldherr, nach einem Ausfall mit acht Tausendschaften nach Ravenna marschiert. Es gelingt dem König, die Stadt vor Johannes zu erreichen, doch wird er nun von Belisar und Cethegus dort eingeschlossen. Jetzt fallen sämtliche gotische Bastionen außerhalb Ravennas, und auch der fränkische Verbündete lässt ihn im Stich. Von Selbstzweifeln geplagt, bietet Witichis Belisar nun an, an seiner statt die Krone zu tragen. Dieser nimmt dies auf Anraten des Cethegus auch zum Schein an. Aber als Witichis, wie von dem Feldherrn gefordert, den Großteil seiner Truppen aus der Stadt führt und den Oströmern die Stadt öffnet, wird er gefangen genommen und in den Kerker geworfen. Belisar lässt das Banner Justinians über dem Palast hissen. Nun versucht Witichis' (ehemalige) Frau Rauthgundis, ihn zu retten, aber die beiden werden, nachdem ihnen die Flucht aus der Stadt zunächst gelungen ist, ermordet. Sechstes Buch: Totila Nachdem diese Nachricht und die des hinterhältigen Mordes an Hildebad, dem Bruder Totilas, nach Tarvisium gelangt sind, wählen die verbliebenen Anführer der Goten Totila zu ihrem König. Dem jungen König gelingt es in den folgenden Monaten, Ravenna und Rom einzuschließen und beinahe ganz Norditalien friedlich zurückzugewinnen. Außerdem öffnen ihm die durch die harte Steuerpolitik Ostroms enttäuschten Städte Süditaliens und die wichtige Seefestung Neapel ihre Tore. Als Belisar erneut versucht, in Italien einzudringen, bereitet ihm Totila eine schwere Niederlage, da der Feldherr seinen Feldzug nur aus eigenen Mitteln finanziert hat. Nach mehreren Wochen der Belagerung gelingt es Totila, die ausgehungerte Bevölkerung Roms dazu zu bewegen, die Tore der Stadt zu öffnen. Er verspricht ihnen, die Milde, für die er bekannt ist, auch in Rom walten zu lassen. Nur Cethegus weigert sich, sein Rom aufzugeben, und besetzt mit den von ihm bezahlten Söldnern und ihm noch treu ergebenen Römern das Kapitol. Jedoch gelingt es den Goten, die noch nicht eroberten Teile der Stadt alsbald zu nehmen. Cethegus muss schwer verletzt fliehen, und Totila wird in Rom als Befreier gefeiert. Sofort schickt der König eine Gesandtschaft, deren Teilnehmer der ehemalige Kanzler Cassiodor und der römische beste Freund Totilas, Julius, sind, nach Konstantinopel, um Frieden zu erbitten. Doch auf Betreiben des Stadtpräfekten und der Kaiserin Theodora lehnt Justinian das Angebot in der Absicht ab, die Goten erneut zu überfallen, sobald wieder genug Gelder für einen Feldzug vorhanden sind. Die Reaktion der Goten ist jedoch ein Angriff über See auf Byzanz. Als die gotischen Truppen bereits kurz vor Konstantinopel stehen, bietet Totila noch einmal den Frieden an. Der Kaiser erbittet sich jedoch Bedenkzeit in Form eines sechs Monate langen Waffenstillstandes. Insgeheim plant die Regierung in Byzanz jedoch einen neuen Krieg gegen die Goten. Dieser beginnt kurz nach der Verlobung Totilas mit Valeria, bei der alte Verbündete aus dem Nordland ihre Waffenhilfe gegen Byzanz anbieten, als Cethegus als neuer magister militum per Italiam die unbemannte gotische Flotte im Hafen von Ancona vernichtet. Aber kurz nach Beginn des Feldzuges tötet sich Theodora selbst, und Narses, der alle Goten, die in seine Fänge geraten, als Sklaven nach Byzanz schicken oder sie töten soll, wird zum Oberbefehlshaber des Feldzuges ernannt. Er führt ein Heer von 120.000 Soldaten mit sich. Unter diesen sind auch Langobarden. Totila stellt sich dem Heer des Kaisers vor Taginae und Caprae und hofft, die Reiterei des Feindes durch eine List zwischen den beiden Städten einzuschließen. Doch ist er, wenn die List gelingen soll, auf den korsischen Kampfgefährten Furius Ahalla angewiesen, dessen Loyalität er sich nicht sicher ist. Und tatsächlich, als er die langobardische Reiterei (ca. 20.000 Mann) zwischen die Städte lockt, fallen die persischen Söldner des Kampfgefährten nicht über die Langobarden des Feindes, sondern über die Goten her. Bei diesem Kampf bei den Busta Gallorum wird der König verletzt und muss fliehen. Aber es gelingt Ahalla, der wegen der enttäuschten Liebe zu Valeria auf Rache sinnt, den schwer verwundeten Totila einzuholen. Sie stürmen aufeinander zu und sterben beide. Siebtes Buch: Teja Die Goten wählen nunmehr Teja zum König. Er beschließt den Rückzug, um dem Feind, der es auf ihre Auslöschung abgesehen hat, so lange wie möglich Widerstand zu leisten. Er führt sein Volk nach Neapel an den Vesuv. An einem Engpass hoffen die Goten darauf, die oströmischen Feinde so lange wie möglich abzuwehren. Diese schließen sie zuletzt ein und belagern den Engpass für mehrere Monate. Im Lager wird Cethegus, der sich erhofft hat, nach einem Sieg über die Goten in Rom herrschen zu können, von Narses, der jetzt Präfekt von Rom ist, und Justinian überlistet. Als nun die Endschlacht bevorsteht, wählt der betrogene Expräfekt von Rom in dieser Situation den Freitod im Kampf. Er fällt, als er nach über acht Stunden des Kampfes gegen Teja stürmt und beide einander erschlagen. Doch naht zu dieser Stunde die Flotte des "Nordvolkes", das die überlebenden Goten an Bord nimmt und sie in ihre Heimat Thule bringt. Adaptionen Der Roman wurde 1968 von dem Berliner Filmproduzenten Artur Brauner unter der Regie von Robert Siodmak als zweiteiliger, englischsprachiger Monumentalfilm unter dem Titel Kampf um Rom mit Laurence Harvey als Cethegus und Orson Welles als Kaiser Justinian verfilmt. Der Medienverlag Kohfeldt brachte 2017 eine ungekürzte Lesung auf 5 mp3-CDs heraus. Sprecher ist Karlheinz Gabor (ISBN 978-3-86352-101-1). Anmerkungen Weblinks Text im Projekt Gutenberg-DE Literarisches Werk Literatur (19. Jahrhundert) Literatur (Deutsch) Historischer Roman
{ "redpajama_set_name": "RedPajamaWikipedia" }
655
[ 128000, 54850, 72044, 69, 4543, 12036, 6127, 4466, 55036, 30513, 26574, 32849, 14304, 261, 7135, 33808, 13041, 6675, 57023, 423, 30660, 11, 2761, 220, 9674, 21, 2807, 92812, 38733, 27201, 382, 2460, 65749, 258, 720, 18674, 8704, 39049, 28047, 3903, 304, 2761, 66178, 71, 20468, 3165, 14360, 519, 3043, 11, 10709, 1941, 857, 406, 6754, 56036, 635, 11655, 531, 301, 951, 220, 21, 13, 38519, 71, 1263, 15916, 308, 13, 53307, 13, 2073, 1450, 3903, 22752, 72044, 69, 2761, 66535, 23196, 268, 304, 1102, 56418, 35799, 507, 35155, 2073, 6675, 72117, 15448, 2431, 526, 737, 38519, 220, 21478, 13, 19537, 2009, 275, 47928, 344, 15165, 304, 2486, 11168, 304, 2815, 16989, 1640, 3675, 49476, 797, 526, 34470, 50379, 1892, 3640, 4970, 84730, 6915, 25, 45436, 83, 96702, 11 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 54850, 72044, 69, 4543, 12036, 6127, 4466, 55036, 30513, 26574, 32849, 14304, 261, 7135, 33808, 13041, 6675, 57023, 423, 30660, 11, 2761, 220, 9674, 21, 2807, 92812, 38733, 27201, 382, 2460, 65749, 258, 720, 18674, 8704, 39049, 28047, 3903, 304, 2761, 66178, 71, 20468, 3165, 14360, 519, 3043, 11, 10709, 1941, 857, 406, 6754, 56036, 635, 11655, 531, 301, 951, 220, 21, 13, 38519, 71, 1263, 15916, 308, 13, 53307, 13, 2073, 1450, 3903, 22752, 72044, 69, 2761, 66535, 23196, 268, 304, 1102, 56418, 35799, 507, 35155, 2073, 6675, 72117, 15448, 2431, 526, 737, 38519, 220, 21478, 13, 19537, 2009, 275, 47928, 344, 15165, 304, 2486, 11168, 304, 2815, 16989, 1640, 3675, 49476, 797, 526, 34470, 50379, 1892, 3640, 4970, 84730, 6915, 25, 45436, 83, 96702, 11, -100 ]
Correlation between SARS-CoV-2 RNA concentration in wastewater and COVID-19 cases in community: A systematic review and meta-analysis J Hazard Mater. 2023 Jan 5;441:129848. doi: 10.1016/j.jhazmat.2022.129848. Epub 2022 Aug 27. Xuan Li 1 , Shuxin Zhang 2 , Samendrdra Sherchan 3 , Gorka Orive 4 , Unax Lertxundi 5 , Eiji Haramoto 6 , Ryo Honda 7 , Manish Kumar 8 , Sudipti Arora 9 , Masaaki Kitajima 10 , Guangming Jiang 11 1 School of Civil, Mining and Environmental Engineering, University of Wollongong, Wollongong, Australia; Centre for Technology in Water and Wastewater, School of Civil and Environmental Engineering, University of Technology Sydney, Ultimo, NSW 2007, Australia. 2 School of Civil, Mining and Environmental Engineering, University of Wollongong, Wollongong, Australia. 3 Department of Environmental Health Sciences, Tulane University, New Orleans, LA 70112, USA. 4 NanoBioCel Group, Laboratory of Pharmaceutics, School of Pharmacy, University of the Basque Country UPV/EHU, Paseo de la Universidad 7, Vitoria-Gasteiz 01006, Spain; Biomedical Research Networking Centre in Bioengineering, Biomaterials and Nanomedicine (CIBER-BBN), Vitoria-Gasteiz, Spain. 5 Bioaraba Health Research Institute; Osakidetza Basque Health Service, Araba Mental Health Network, Araba Psychiatric Hospital, Pharmacy Service, Vitoria-Gasteiz, Spain. 6 Interdisciplinary Center for River Basin Environment, University of Yamanashi, Kofu, Japan. 7 Faculty of Geosciences and Civil Engineering, Kanazawa University, Kanazawa, Japan. 8 Sustainability Cluster, School of Engineering, University of Petroleum and Energy Studies, Dehradun, Uttarakhand, India. 9 Dr. B. Lal Institute of Biotechnology, Jaipur, India. 10 Division of Environmental Engineering, Faculty of Engineering, Hokkaido University, Hokkaido, Japan. 11 School of Civil, Mining and Environmental Engineering, University of Wollongong, Wollongong, Australia; Illawarra Health and Medical Research Institute (IHMRI), University of Wollongong, Wollongong, Australia. Electronic address: [email protected]. DOI: 10.1016/j.jhazmat.2022.129848 Wastewater-based epidemiology (WBE) has been considered as a promising approach for population-wide surveillance of coronavirus disease 2019 (COVID-19). Many studies have successfully quantified severe acute respiratory syndrome coronavirus 2 (SARS-CoV-2) RNA concentration in wastewater (CRNA). However, the correlation between the CRNA and the COVID-19 clinically confirmed cases in the corresponding wastewater catchments varies and the impacts of environmental and other factors remain unclear. A systematic review and meta-analysis were conducted to identify the correlation between CRNA and various types of clinically confirmed case numbers, including prevalence and incidence rates. The impacts of environmental factors, WBE sampling design, and epidemiological conditions on the correlation were assessed for the same datasets. The systematic review identified 133 correlation coefficients, ranging from -0.38 to 0.99. The correlation between CRNA and new cases (either daily new, weekly new, or future cases) was stronger than that of active cases and cumulative cases. These correlation coefficients were potentially affected by environmental and epidemiological conditions and WBE sampling design. Larger variations of air temperature and clinical testing coverage, and the increase of catchment size showed strong negative impacts on the correlation between CRNA and COVID-19 case numbers. Interestingly, the sampling technique had negligible impact although increasing the sampling frequency improved the correlation. These findings highlight the importance of viral shedding dynamics, in-sewer decay, WBE sampling design and clinical testing on the accurate back-estimation of COVID-19 case numbers through the WBE approach. Keywords: COVID-19; Incidence, clinical testing; Prevalence; SARS-CoV-2; Viral shedding; Wastewater-based epidemiology. Copyright © 2022 Elsevier B.V. All rights reserved. COVID-19* / epidemiology RNA, Viral / genetics SARS-CoV-2 / genetics Wastewater-Based Epidemiological Monitoring RNA, Viral
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
3,902
[ 128000, 10803, 23013, 1990, 328, 17485, 87271, 53, 12, 17, 41214, 20545, 304, 77681, 323, 20562, 12, 777, 5157, 304, 4029, 25, 362, 37538, 3477, 323, 8999, 56536, 198, 41, 69874, 99408, 13, 220, 2366, 18, 4448, 220, 20, 26, 18495, 25, 9748, 24951, 13, 36995, 25, 220, 605, 13, 4645, 21, 4537, 1190, 71, 1394, 8637, 13, 2366, 17, 13, 9748, 24951, 13, 469, 9780, 220, 2366, 17, 5033, 220, 1544, 627, 55, 10602, 14851, 220, 16, 1174, 1443, 2249, 258, 37120, 220, 17, 1174, 8388, 408, 6634, 969, 17530, 5776, 220, 18, 1174, 480, 672, 64, 2582, 535, 220, 19, 1174, 1252, 710, 445, 531, 87, 56998, 220, 20, 1174, 469, 35973, 85642, 2117, 220, 21, 1174, 432, 16417, 29987, 220, 22, 1174, 2418, 819, 41240 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 10803, 23013, 1990, 328, 17485, 87271, 53, 12, 17, 41214, 20545, 304, 77681, 323, 20562, 12, 777, 5157, 304, 4029, 25, 362, 37538, 3477, 323, 8999, 56536, 198, 41, 69874, 99408, 13, 220, 2366, 18, 4448, 220, 20, 26, 18495, 25, 9748, 24951, 13, 36995, 25, 220, 605, 13, 4645, 21, 4537, 1190, 71, 1394, 8637, 13, 2366, 17, 13, 9748, 24951, 13, 469, 9780, 220, 2366, 17, 5033, 220, 1544, 627, 55, 10602, 14851, 220, 16, 1174, 1443, 2249, 258, 37120, 220, 17, 1174, 8388, 408, 6634, 969, 17530, 5776, 220, 18, 1174, 480, 672, 64, 2582, 535, 220, 19, 1174, 1252, 710, 445, 531, 87, 56998, 220, 20, 1174, 469, 35973, 85642, 2117, 220, 21, 1174, 432, 16417, 29987, 220, 22, 1174, 2418, 819, 41240, -100 ]
package los import ( "math" "github.com/phil-mansfield/shellfish/los/geom" ) // ProfileRing is a ring of uniformly spaced profiles which allows step // functions to be added quickly to every profile. // // Here is an example usage of profile rings where a ring of 100 profiles with // 200 bins each and with R ranges of [0, 1] are initialized. Then a hundred // random step functions of height 3.5 are inserted to the 42nd profile. // // ring := &ProfileRing{} // ring.Init(0, 1, 200, 100) // for i := 0; i < 100; i++ { // low, high := rand.Float64(), rand.Float64() // if low > high { lo, high = high, low } // ring.Insert(low, high, 3.5, 42) // } // out := make([]float64, 200) // ring.Retrieve(42, out) // // The methods Join() and Split() have also been provided which allow the state // of a single profile ring to be split across many rings so that multiple // threads may work on the same ring at the same time. // // The current implementation of ProfileRing maintains the derivatives of // each profile in the ring and integrating only when a profile is requested // for analysis. This is why the Retrieve method needs to exist instead of just // using a struct field. type ProfileRing struct { derivs []float64 // Contiguous block of pofile data. Column-major. Lines []geom.Line bins int // Length of an individual profile. n int // Number of profiles. lowR, highR, dr float64 } // Join adds two ProfileRings, p1 and p2, together and puts the results in the // p1. func (p1 *ProfileRing) Join(p2 *ProfileRing) { if p1.n != p2.n || p1.bins != p2.bins { panic("ProfileRing sizes do not match.") } else { for i, val := range p2.derivs { p1.derivs[i] += val } } } // Split splits the state of a profile ring, p1, so that it is shared by a // second profile ring, p2. The state can later be rejoined by the Join() // method. func (p1 *ProfileRing) Split(p2 *ProfileRing) { if p1.n != p2.n || p1.bins != p2.bins { p2.Init(p1.lowR, p1.highR, p1.bins, p1.n) } else { p2.bins = p1.bins p2.lowR = p1.lowR p2.highR = p1.highR p2.dr = p2.dr for i := range p2.derivs { p2.derivs[i] = 0 } } } // Init initializes a profile ring made up of n profiles each of which consist // of the given number of radial bins and extend between the two specified // radii. func (p *ProfileRing) Init(lowR, highR float64, bins, n int) { p.derivs = make([]float64, bins*n) p.bins = bins p.n = n p.lowR = lowR p.highR = highR p.dr = (highR - lowR) / float64(bins) p.Lines = make([]geom.Line, n) for i := 0; i < n; i++ { sin, cos := math.Sincos(p.Angle(i)) p.Lines[i].Init(0, 0, float32(cos), float32(sin)) } } // Insert inserts a plateau with the given radial extent and density to the // profile. func (p *ProfileRing) Insert(start, end, rho float64, i int) { if end <= p.lowR || start >= p.highR { return } // One could be a bit more careful with floating point ops here, if // push comes to shove. In particular, Modf calls can be avoided through // trickery. (However, my most recent benchmarks reveal that very little // time is spent in this method call anymore, so I wouldn't bother.) if start > p.lowR { fidx, rem := math.Modf((start - p.lowR) / p.dr) idx := int(fidx) p.derivs[i*p.bins+idx] += rho * (1 - rem) if idx < p.bins-1 { p.derivs[i*p.bins+idx+1] += rho * rem } } else { p.derivs[i*p.bins] += rho } if end < p.highR { fidx, rem := math.Modf((end - p.lowR) / p.dr) idx := int(fidx) p.derivs[i*p.bins+idx] -= rho * (1 - rem) if idx < p.bins-1 { p.derivs[i*p.bins+idx+1] -= rho * rem } } } // Retrieve does any necessary post-processing on the specified profile and // writes in to an out buffer. func (p *ProfileRing) Retrieve(i int, out []float64) { sum := float64(0) for j := 0; j < p.bins; j++ { sum += p.derivs[j+p.bins*i] out[j] = sum } } // Angle returns the angle that the line with the specified index points in. func (p *ProfileRing) Angle(i int) float64 { return math.Pi * 2 * float64(i) / float64(p.n) }
{ "redpajama_set_name": "RedPajamaGithub" }
9,954
[ 128000, 1757, 2537, 271, 475, 2456, 197, 79228, 1875, 197, 9948, 916, 14, 46185, 1474, 598, 2630, 15030, 616, 18668, 14, 2353, 14, 43016, 702, 696, 322, 12609, 44566, 374, 264, 10264, 315, 78909, 64928, 21542, 902, 6276, 3094, 198, 322, 5865, 311, 387, 3779, 6288, 311, 1475, 5643, 627, 2341, 322, 5810, 374, 459, 3187, 10648, 315, 5643, 25562, 1405, 264, 10264, 315, 220, 1041, 21542, 449, 198, 322, 220, 1049, 29618, 1855, 323, 449, 432, 21986, 315, 510, 15, 11, 220, 16, 60, 527, 17719, 13, 5112, 264, 7895, 198, 322, 4288, 3094, 5865, 315, 2673, 220, 18, 13, 20, 527, 22306, 311, 279, 220, 2983, 303, 5643, 627, 2341, 322, 257, 10264, 1703, 612, 8694, 44566, 16484, 322, 257, 10264, 27947, 7, 15, 11, 220 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 1757, 2537, 271, 475, 2456, 197, 79228, 1875, 197, 9948, 916, 14, 46185, 1474, 598, 2630, 15030, 616, 18668, 14, 2353, 14, 43016, 702, 696, 322, 12609, 44566, 374, 264, 10264, 315, 78909, 64928, 21542, 902, 6276, 3094, 198, 322, 5865, 311, 387, 3779, 6288, 311, 1475, 5643, 627, 2341, 322, 5810, 374, 459, 3187, 10648, 315, 5643, 25562, 1405, 264, 10264, 315, 220, 1041, 21542, 449, 198, 322, 220, 1049, 29618, 1855, 323, 449, 432, 21986, 315, 510, 15, 11, 220, 16, 60, 527, 17719, 13, 5112, 264, 7895, 198, 322, 4288, 3094, 5865, 315, 2673, 220, 18, 13, 20, 527, 22306, 311, 279, 220, 2983, 303, 5643, 627, 2341, 322, 257, 10264, 1703, 612, 8694, 44566, 16484, 322, 257, 10264, 27947, 7, 15, 11, 220, -100 ]
Welcome! Join me in my transformation success! Welcome to my blog, Holistic Wellness & Fitness. I am Coach Debbie and I am a wellness transformation coach! Through my blog, I want you to know that you are not alone. I started my transformation journey back in September of 2016 and it continues to date. I am so excited about my transformation success to date that I want to share with everyone who will listen. I want to help others to reach their "champion" status and live a better overall life as a result. I am looking for people to join me as I continue my journey to wellness and fitness. Welcome again and stay tuned for future posts. Author talbot1984Posted on April 19, 2017 April 20, 2017 Tags bodybuilding, competition prep, fitness, flexible dieting, teamhardbodycoaching, transformation, Welcome1 Comment on Welcome! Author talbot1984Posted on January 4, 2018 Leave a comment on What is the number one factor for success in transforming you and your life? Are your struggles making you? Author talbot1984Posted on November 3, 2017 November 3, 2017 Leave a comment on Are your struggles making you? Author talbot1984Posted on October 23, 2017 Leave a comment on Put on your negativity shield!
{ "redpajama_set_name": "RedPajamaC4" }
1,527
[ 128000, 14262, 0, 16877, 757, 304, 856, 18475, 2450, 4999, 14262, 311, 856, 5117, 11, 16071, 4633, 61283, 612, 36808, 13, 358, 1097, 28275, 64489, 323, 358, 1097, 264, 39890, 18475, 7395, 0, 17331, 856, 5117, 11, 358, 1390, 499, 311, 1440, 430, 499, 527, 539, 7636, 13, 358, 3940, 856, 18475, 11879, 1203, 304, 6250, 315, 220, 679, 21, 323, 433, 9731, 311, 2457, 13, 358, 1097, 779, 12304, 922, 856, 18475, 2450, 311, 2457, 430, 358, 1390, 311, 4430, 449, 5127, 889, 690, 9020, 13, 358, 1390, 311, 1520, 3885, 311, 5662, 872, 330, 331, 13580, 1, 2704, 323, 3974, 264, 2731, 8244, 2324, 439, 264, 1121, 13, 358, 1097, 3411, 369, 1274, 311, 5249, 757, 439, 358, 3136, 856, 11879, 311, 39890, 323, 17479, 13 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 14262, 0, 16877, 757, 304, 856, 18475, 2450, 4999, 14262, 311, 856, 5117, 11, 16071, 4633, 61283, 612, 36808, 13, 358, 1097, 28275, 64489, 323, 358, 1097, 264, 39890, 18475, 7395, 0, 17331, 856, 5117, 11, 358, 1390, 499, 311, 1440, 430, 499, 527, 539, 7636, 13, 358, 3940, 856, 18475, 11879, 1203, 304, 6250, 315, 220, 679, 21, 323, 433, 9731, 311, 2457, 13, 358, 1097, 779, 12304, 922, 856, 18475, 2450, 311, 2457, 430, 358, 1390, 311, 4430, 449, 5127, 889, 690, 9020, 13, 358, 1390, 311, 1520, 3885, 311, 5662, 872, 330, 331, 13580, 1, 2704, 323, 3974, 264, 2731, 8244, 2324, 439, 264, 1121, 13, 358, 1097, 3411, 369, 1274, 311, 5249, 757, 439, 358, 3136, 856, 11879, 311, 39890, 323, 17479, 13, -100 ]
Q: Output and Command Link in one in JSF Is there a possibility to use both outcome and action in the same command link? I tried <h:commandLink outcome="page?faces-redirect=true" value="Got to Page" action="#{Bean.setValue("...")}" /> but it ignores the outcome. I have a table with data like this: ID Name Other Things Link to Next Page So I want to give the ID to the next page to show data which belongs to the selected ID from before... How could I realize this? A: You could use <f:setPropertyActionListener>. <h:commandLink value="Edit" action="edit?faces-redirect=true"> <f:setPropertyActionListener target="#{bean.id}" value="#{id}" /> </h:commandLink> Or you could abuse actionListener. <h:commandLink value="Edit" action="edit?faces-redirect=true" actionListener="#{bean.setId(id)}" /> Both ways, however, would require a session scoped bean to remember the chosen id, which is plain awkward. When you open such link multiple times in different browser tabs and then interact on each them afterwards, the site's behavior would be really unintuitive and confusing. The canonical way is to just pass it as a GET parameter. <h:link value="Edit" outcome="edit"> <f:param name="id" value="#{id}" /> </h:link> The target page can get hold of it via <f:viewParam> and if necessary invoke business action on it via <f:viewAction>. See also: * *Creating master-detail pages for entities, how to link them and which bean scope to choose
{ "redpajama_set_name": "RedPajamaStackExchange" }
8,360
[ 128000, 48, 25, 9442, 323, 7498, 6074, 304, 832, 304, 12438, 37, 2209, 1070, 264, 13336, 311, 1005, 2225, 15632, 323, 1957, 304, 279, 1890, 3290, 2723, 5380, 40, 6818, 720, 262, 366, 71, 25, 5749, 4026, 220, 15632, 429, 2964, 30, 7760, 12, 8280, 11516, 1, 720, 970, 429, 33562, 311, 5874, 1, 720, 1335, 4753, 90, 10654, 20042, 446, 1131, 909, 10064, 19053, 8248, 433, 49378, 279, 15632, 627, 40, 617, 264, 2007, 449, 828, 1093, 420, 512, 926, 257, 4076, 415, 7089, 20695, 415, 6074, 311, 9479, 5874, 198, 4516, 358, 1390, 311, 3041, 279, 3110, 311, 279, 1828, 2199, 311, 1501, 828, 902, 17623, 311, 279, 4183, 3110, 505, 1603, 1131, 2650, 1436, 358, 13383, 420, 1980, 32, 25, 1472, 1436, 1005, 366, 69 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 48, 25, 9442, 323, 7498, 6074, 304, 832, 304, 12438, 37, 2209, 1070, 264, 13336, 311, 1005, 2225, 15632, 323, 1957, 304, 279, 1890, 3290, 2723, 5380, 40, 6818, 720, 262, 366, 71, 25, 5749, 4026, 220, 15632, 429, 2964, 30, 7760, 12, 8280, 11516, 1, 720, 970, 429, 33562, 311, 5874, 1, 720, 1335, 4753, 90, 10654, 20042, 446, 1131, 909, 10064, 19053, 8248, 433, 49378, 279, 15632, 627, 40, 617, 264, 2007, 449, 828, 1093, 420, 512, 926, 257, 4076, 415, 7089, 20695, 415, 6074, 311, 9479, 5874, 198, 4516, 358, 1390, 311, 3041, 279, 3110, 311, 279, 1828, 2199, 311, 1501, 828, 902, 17623, 311, 279, 4183, 3110, 505, 1603, 1131, 2650, 1436, 358, 13383, 420, 1980, 32, 25, 1472, 1436, 1005, 366, 69, -100 ]
Are 5 minutes enough to get rid of SunTan? Click through to make a Magical Mask to Remove Sun Tan Instantly from Face & Body. We're here to promote a way to live a more beautiful and healthy life. A way that leads you to physically fit, mentally strong and naturally pretty. Just commit yourself to live a healthy lifestyle and we are always here to help with possible tips and hacks to achieve your goals. 101+ Weight Loss Tips That Make Losing Weight Super Simple! Affiliate Disclosure: Pages on this site may include affiliate links to Amazon and its affiliate sites on which the owner of this website will make a referral commission.
{ "redpajama_set_name": "RedPajamaC4" }
4,350
[ 128000, 11787, 220, 20, 4520, 3403, 311, 636, 9463, 315, 8219, 77197, 30, 9369, 1555, 311, 1304, 264, 73810, 20519, 311, 11016, 8219, 25566, 18549, 398, 505, 19109, 612, 14285, 627, 1687, 2351, 1618, 311, 12192, 264, 1648, 311, 3974, 264, 810, 6366, 323, 9498, 2324, 627, 32, 1648, 430, 11767, 499, 311, 22655, 5052, 11, 34325, 3831, 323, 18182, 5128, 627, 10156, 5379, 6261, 311, 3974, 264, 9498, 19433, 323, 584, 527, 2744, 1618, 311, 1520, 449, 3284, 10631, 323, 60884, 311, 11322, 701, 9021, 627, 4645, 10, 16923, 25733, 26788, 3011, 7557, 99239, 16923, 7445, 9170, 4999, 26926, 35950, 78354, 25, 22521, 389, 420, 2816, 1253, 2997, 22325, 7902, 311, 8339, 323, 1202, 22325, 6732, 389, 902, 279, 6506, 315, 420, 3997, 690, 1304, 264, 45880 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 11787, 220, 20, 4520, 3403, 311, 636, 9463, 315, 8219, 77197, 30, 9369, 1555, 311, 1304, 264, 73810, 20519, 311, 11016, 8219, 25566, 18549, 398, 505, 19109, 612, 14285, 627, 1687, 2351, 1618, 311, 12192, 264, 1648, 311, 3974, 264, 810, 6366, 323, 9498, 2324, 627, 32, 1648, 430, 11767, 499, 311, 22655, 5052, 11, 34325, 3831, 323, 18182, 5128, 627, 10156, 5379, 6261, 311, 3974, 264, 9498, 19433, 323, 584, 527, 2744, 1618, 311, 1520, 449, 3284, 10631, 323, 60884, 311, 11322, 701, 9021, 627, 4645, 10, 16923, 25733, 26788, 3011, 7557, 99239, 16923, 7445, 9170, 4999, 26926, 35950, 78354, 25, 22521, 389, 420, 2816, 1253, 2997, 22325, 7902, 311, 8339, 323, 1202, 22325, 6732, 389, 902, 279, 6506, 315, 420, 3997, 690, 1304, 264, 45880, -100 ]
Q: How can i get values from checkbox in android i want to get the name of the item selected in the checkbox.But i got only some alphanumeric numbers.How can i obtain the name of the selected item from checkbox public View getView(int position, View convertView, ViewGroup parent) { View view = null; if (convertView == null) { LayoutInflater inflator = context.getLayoutInflater(); view = inflator.inflate(R.layout.customlistlayout, null); final ViewHolder viewHolder = new ViewHolder(); viewHolder.text = (TextView) view.findViewById(R.id.label); viewHolder.checkbox = (CheckBox) view.findViewById(R.id.check); viewHolder.checkbox .setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { Model element = (Model) viewHolder.checkbox .getTag(); element.setSelected(buttonView.isChecked()); enter code here //System.out.println(itemname); } }); view.setTag(viewHolder); viewHolder.checkbox.setTag(list.get(position)); } else { view = convertView; ((ViewHolder) view.getTag()).checkbox.setTag(list.get(position)); } ViewHolder holder = (ViewHolder) view.getTag(); holder.text.setText(list.get(position).getName()); holder.checkbox.setChecked(list.get(position).isSelected()); return view; } A: I got something like this: CheckBox not = (CheckBox)findViewById(R.id.checkBox1); not.setChecked(my.notifications); not.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { if (((CheckBox) v).isChecked()) { } else { } } }); A: Try this sample code.. Implement to your code public class Planets extends Activity { private ListView mainListView ; private Planet[] planets ; private ArrayAdapter<Planet> listAdapter ; /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.listview); // Find the ListView resource. mainListView = (ListView) findViewById( R.id.mainListView ); // When item is tapped, toggle checked properties of CheckBox and Planet. mainListView.setOnItemClickListener(new AdapterView.OnItemClickListener() { @Override public void onItemClick( AdapterView<?> parent, View item, int position, long id) { Planet planet = listAdapter.getItem( position ); planet.toggleChecked(); PlanetViewHolder viewHolder = (PlanetViewHolder) item.getTag(); viewHolder.getCheckBox().setChecked( planet.isChecked() ); } }); // Create and populate planets. planets = (Planet[]) getLastNonConfigurationInstance() ; if ( planets == null ) { planets = new Planet[] { new Planet("Mercury"), new Planet("Venus"), new Planet("Earth"), new Planet("Mars"), new Planet("Jupiter"), new Planet("Saturn"), new Planet("Uranus"), new Planet("Neptune"), new Planet("Ceres"), new Planet("Pluto"), new Planet("Haumea"), new Planet("Makemake"), new Planet("Eris") }; } ArrayList<Planet> planetList = new ArrayList<Planet>(); planetList.addAll( Arrays.asList(planets) ); // Set our custom array adapter as the ListView's adapter. listAdapter = new PlanetArrayAdapter(this, planetList); mainListView.setAdapter( listAdapter ); } /** Holds planet data. */ private static class Planet { private String name = "" ; private boolean checked = false ; //public Planet() {} public Planet( String name ) { this.name = name ; } /*public Planet( String name, boolean checked ) { this.name = name ; this.checked = checked ; }*/ public String getName() { return name; } /*public void setName(String name) { this.name = name; }*/ public boolean isChecked() { return checked; } public void setChecked(boolean checked) { this.checked = checked; } public String toString() { return name ; } public void toggleChecked() { checked = !checked ; } } /** Holds child views for one row. */ private static class PlanetViewHolder { private CheckBox checkBox ; private TextView textView ; //public PlanetViewHolder() {} public PlanetViewHolder( TextView textView, CheckBox checkBox ) { this.checkBox = checkBox ; this.textView = textView ; } public CheckBox getCheckBox() { return checkBox; } /* public void setCheckBox(CheckBox checkBox) { this.checkBox = checkBox; }*/ public TextView getTextView() { return textView; } /*public void setTextView(TextView textView) { this.textView = textView; } */ } /** Custom adapter for displaying an array of Planet objects. */ private static class PlanetArrayAdapter extends ArrayAdapter<Planet> { private LayoutInflater inflater; public PlanetArrayAdapter( Context context, List<Planet> planetList ) { super( context, R.layout.simplerow, R.id.rowTextView, planetList ); // Cache the LayoutInflate to avoid asking for a new one each time. inflater = LayoutInflater.from(context) ; } @Override public View getView(int position, View convertView, ViewGroup parent) { // Planet to display Planet planet = (Planet) this.getItem( position ); CheckBox checkBox ; TextView textView ; if ( convertView == null ) { convertView = inflater.inflate(R.layout.simplerow, null); textView = (TextView) convertView.findViewById( R.id.rowTextView ); checkBox = (CheckBox) convertView.findViewById( R.id.CheckBox01 ); convertView.setTag( new PlanetViewHolder(textView,checkBox) ); checkBox.setOnClickListener( new View.OnClickListener() { public void onClick(View v) { CheckBox cb = (CheckBox) v ; Planet planet = (Planet) cb.getTag(); planet.setChecked( cb.isChecked() ); if(cb.isChecked()){ String s = planet.getName(); System.out.println(s); } } }); } else { PlanetViewHolder viewHolder = (PlanetViewHolder) convertView.getTag(); checkBox = viewHolder.getCheckBox() ; textView = viewHolder.getTextView() ; } checkBox.setTag( planet ); checkBox.setChecked( planet.isChecked() ); textView.setText( planet.getName() ); return convertView; } } public Object onRetainNonConfigurationInstance() { return planets ; } } A: Set tag for checkbox like the name you are giving to Checkbox also set it to tag for that checkbox then you can access tab in your setOnClickListener viewHolder.checkbox.setTag("Write here name"); viewHolder.checkbox.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton buttonView,boolean isChecked) { Model element = (Model) viewHolder.checkbox.getTag(); element.setSelected(buttonView.isChecked()); Log.v("Checked Name",buttonview.getTag().toString()); } }); A: Try this code: String str = yourCheckbox.getText(); A: if you want to know which checkbox has been (un)checked you may as well register a new listener instance for each checkbox. CheckBox one = (CheckBox)findViewById(R.id.checkBox1); one.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { Log.d(TAG,"I am checkbox 1!"); } }); CheckBox two = (CheckBox)findViewById(R.id.checkBox2); two.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { Log.d(TAG,"I am checkbox 2!"); } });
{ "redpajama_set_name": "RedPajamaStackExchange" }
3,172
[ 128000, 48, 25, 2650, 649, 602, 636, 2819, 505, 32400, 304, 2151, 602, 1390, 311, 636, 279, 836, 315, 279, 1537, 4183, 304, 279, 32400, 53701, 602, 2751, 1193, 1063, 100079, 5219, 67103, 649, 602, 6994, 279, 836, 315, 279, 4183, 1537, 505, 32400, 198, 898, 2806, 50985, 1577, 2361, 11, 2806, 35644, 11, 24737, 2748, 8, 341, 286, 2806, 1684, 284, 854, 280, 286, 422, 320, 95367, 624, 854, 8, 341, 310, 29669, 4704, 859, 284, 2317, 673, 40212, 545, 310, 1684, 284, 4704, 859, 27469, 2855, 7774, 25254, 1638, 8565, 11, 854, 317, 310, 1620, 37510, 44573, 284, 502, 37510, 545, 310, 44573, 2858, 284, 320, 13982, 8, 1684, 11899, 2855, 1801, 2981, 317, 310, 44573, 96535, 284, 320, 24829, 8, 1684, 11899, 2855, 1801, 9271 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 48, 25, 2650, 649, 602, 636, 2819, 505, 32400, 304, 2151, 602, 1390, 311, 636, 279, 836, 315, 279, 1537, 4183, 304, 279, 32400, 53701, 602, 2751, 1193, 1063, 100079, 5219, 67103, 649, 602, 6994, 279, 836, 315, 279, 4183, 1537, 505, 32400, 198, 898, 2806, 50985, 1577, 2361, 11, 2806, 35644, 11, 24737, 2748, 8, 341, 286, 2806, 1684, 284, 854, 280, 286, 422, 320, 95367, 624, 854, 8, 341, 310, 29669, 4704, 859, 284, 2317, 673, 40212, 545, 310, 1684, 284, 4704, 859, 27469, 2855, 7774, 25254, 1638, 8565, 11, 854, 317, 310, 1620, 37510, 44573, 284, 502, 37510, 545, 310, 44573, 2858, 284, 320, 13982, 8, 1684, 11899, 2855, 1801, 2981, 317, 310, 44573, 96535, 284, 320, 24829, 8, 1684, 11899, 2855, 1801, 9271, -100 ]
Intimate Entanglements: Affects, more-than-human intimacies and the politics of relations in Science and Technology This paper introduces Intimate Entanglements by proposing three interrelated shifts that result from juxtaposing experiences with different world-making practices at the intersection of care, technoscience and theoretical engagements with affect theory and science and technology studies (STS). The first shift positions intimacy as not only relevant in STS but also as a more general epistemic concern of social scientific enquiry. The second shift is an exploration of the heterogeneous materiality of the intimate and, in particular, of its more-than-human constituencies. The third shift both reclaims and speculates about other politics of relations, including practical challenges (not only conceptual) to the way we do research. The paper shows that the beings entangled, the materialities involved, the affects conveyed and the extension of the intimate all come to matter when science and technology is critically analysed, and that they challenge the traditional limits and geographies of the intimate. It also argues that this has important political implications for science and technology, because it counters the invisibilisation of affect and all the ¿intimate work¿ usually associated with the emotional, domestic, and even infrastructural, and contests the ready-made framing of the intimate as naturally bound to the interpersonal, corporal and private, which the authors argue is a way to make visible the politics of relations that scientific and technological settings silently enact. Latimer, J., & López Gómez, D. (2019). Intimate Entanglements: Affects, more-than-human intimacies and the politics of relations in science and technology. The Sociological Review, 67(2), 247-263. https://doi.org/10.1177/0038026119831623 Joanna Latimer (University of York)
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
2,751
[ 128000, 1090, 3509, 4968, 526, 91555, 25, 362, 41027, 11, 810, 48754, 70095, 22713, 27121, 323, 279, 11759, 315, 4398, 304, 10170, 323, 12053, 198, 2028, 5684, 40019, 1357, 3509, 4968, 526, 91555, 555, 57515, 2380, 958, 9920, 29735, 430, 1121, 505, 98953, 14759, 11704, 449, 2204, 1917, 28846, 12659, 520, 279, 19801, 315, 2512, 11, 2869, 24366, 1873, 323, 32887, 79971, 449, 7958, 10334, 323, 8198, 323, 5557, 7978, 320, 81825, 570, 578, 1176, 6541, 10093, 66264, 439, 539, 1193, 9959, 304, 4015, 50, 719, 1101, 439, 264, 810, 4689, 4248, 380, 8274, 4747, 315, 3674, 12624, 77612, 13, 578, 2132, 6541, 374, 459, 27501, 315, 279, 98882, 3769, 488, 315, 279, 32487, 323, 11, 304, 4040, 11, 315, 1202, 810, 48754, 70095, 31605, 6072, 13, 578 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 1090, 3509, 4968, 526, 91555, 25, 362, 41027, 11, 810, 48754, 70095, 22713, 27121, 323, 279, 11759, 315, 4398, 304, 10170, 323, 12053, 198, 2028, 5684, 40019, 1357, 3509, 4968, 526, 91555, 555, 57515, 2380, 958, 9920, 29735, 430, 1121, 505, 98953, 14759, 11704, 449, 2204, 1917, 28846, 12659, 520, 279, 19801, 315, 2512, 11, 2869, 24366, 1873, 323, 32887, 79971, 449, 7958, 10334, 323, 8198, 323, 5557, 7978, 320, 81825, 570, 578, 1176, 6541, 10093, 66264, 439, 539, 1193, 9959, 304, 4015, 50, 719, 1101, 439, 264, 810, 4689, 4248, 380, 8274, 4747, 315, 3674, 12624, 77612, 13, 578, 2132, 6541, 374, 459, 27501, 315, 279, 98882, 3769, 488, 315, 279, 32487, 323, 11, 304, 4040, 11, 315, 1202, 810, 48754, 70095, 31605, 6072, 13, 578, -100 ]
Enhance performance. Maximize convenience. Simplify maintenance. Boost your pressure washer's performance with accessories from Generac. Products are available to maximize convenience and simplify maintenance for years of pressure washing performance. With the SmartScrub Power Foamer attachment, you can pre-treat stains and create a thick foam for amazing cleaning results. The adjustable spray pattern allows you to cover wide areas or focus the blast for longer range. This univeral pressure washer attachment can be used for gas pressure washers up to 3100 PSI.
{ "redpajama_set_name": "RedPajamaC4" }
7,450
[ 128000, 58568, 685, 5178, 13, 7639, 12117, 19679, 13, 62342, 1463, 13709, 13, 34507, 701, 7410, 53992, 596, 5178, 449, 23090, 505, 2672, 582, 13, 15899, 527, 2561, 311, 35608, 19679, 323, 40821, 13709, 369, 1667, 315, 7410, 28786, 5178, 13, 3161, 279, 16147, 3407, 60530, 7572, 32757, 15589, 20581, 11, 499, 649, 864, 2442, 1244, 63563, 323, 1893, 264, 12314, 32183, 369, 8056, 16204, 3135, 13, 578, 37030, 23749, 5497, 6276, 499, 311, 3504, 7029, 5789, 477, 5357, 279, 21327, 369, 5129, 2134, 13, 1115, 653, 1553, 278, 7410, 53992, 20581, 649, 387, 1511, 369, 6962, 7410, 11623, 388, 709, 311, 220, 12226, 15, 89278, 13, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 58568, 685, 5178, 13, 7639, 12117, 19679, 13, 62342, 1463, 13709, 13, 34507, 701, 7410, 53992, 596, 5178, 449, 23090, 505, 2672, 582, 13, 15899, 527, 2561, 311, 35608, 19679, 323, 40821, 13709, 369, 1667, 315, 7410, 28786, 5178, 13, 3161, 279, 16147, 3407, 60530, 7572, 32757, 15589, 20581, 11, 499, 649, 864, 2442, 1244, 63563, 323, 1893, 264, 12314, 32183, 369, 8056, 16204, 3135, 13, 578, 37030, 23749, 5497, 6276, 499, 311, 3504, 7029, 5789, 477, 5357, 279, 21327, 369, 5129, 2134, 13, 1115, 653, 1553, 278, 7410, 53992, 20581, 649, 387, 1511, 369, 6962, 7410, 11623, 388, 709, 311, 220, 12226, 15, 89278, 13, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100 ]
THIS PRODUCT IS A TIME SENSITIVE, PERISHABLE ITEM. STANDARD SHIPPING MAY NOT BE AVAILABLE IN SOME AREAS. PLEASE SEE OUR SHIPPING POLICY FOR MORE INFO. Orders containing perishables placed Wednesday (after 2PM) - Sunday will be shipped on the following Monday. Packages containing HIGH CARE ITEMS shipped to areas where Standard Shipping won't get package to destination in two days will require a minimum of 2-Day shipping. This policy will lighten up when we move into the colder months. Our Caprino di Krebs, coupled with the tart goodness of the mighty cranberry creates a cheese that can be used on everything from your next bagel to a fresh garden salad. Caprino di Krebs began as a fun Thanksgiving day treat but after the first batch, the Lovera gang knew it was going to be a mainstay. The milk for all of our hand-crafted cheeses is from family-owned single source dairies and is hormone and pesticide free. We use organic dried cranberries and organic cane sugar to make this popular favorite.
{ "redpajama_set_name": "RedPajamaC4" }
8,223
[ 128000, 37012, 39183, 3507, 362, 23029, 328, 20982, 45450, 11, 18335, 16849, 3578, 37032, 13, 77457, 88418, 40330, 4276, 7354, 68819, 2006, 66655, 16202, 1950, 13, 54233, 27195, 46013, 88418, 32740, 39364, 4716, 18954, 31871, 627, 25942, 8649, 83217, 4893, 9277, 8079, 320, 10924, 220, 17, 8971, 8, 482, 7418, 690, 387, 28358, 389, 279, 2768, 7159, 627, 70613, 8649, 38717, 63427, 78565, 28358, 311, 5789, 1405, 12028, 24907, 2834, 956, 636, 6462, 311, 9284, 304, 1403, 2919, 690, 1397, 264, 8187, 315, 220, 17, 56012, 11862, 13, 1115, 4947, 690, 83608, 709, 994, 584, 3351, 1139, 279, 76214, 4038, 627, 8140, 8171, 81, 3394, 1891, 30718, 1302, 11, 34356, 449, 279, 45915, 39526, 315, 279, 42727, 70637, 15717, 11705, 264, 17604, 430, 649, 387, 1511, 389, 4395 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 37012, 39183, 3507, 362, 23029, 328, 20982, 45450, 11, 18335, 16849, 3578, 37032, 13, 77457, 88418, 40330, 4276, 7354, 68819, 2006, 66655, 16202, 1950, 13, 54233, 27195, 46013, 88418, 32740, 39364, 4716, 18954, 31871, 627, 25942, 8649, 83217, 4893, 9277, 8079, 320, 10924, 220, 17, 8971, 8, 482, 7418, 690, 387, 28358, 389, 279, 2768, 7159, 627, 70613, 8649, 38717, 63427, 78565, 28358, 311, 5789, 1405, 12028, 24907, 2834, 956, 636, 6462, 311, 9284, 304, 1403, 2919, 690, 1397, 264, 8187, 315, 220, 17, 56012, 11862, 13, 1115, 4947, 690, 83608, 709, 994, 584, 3351, 1139, 279, 76214, 4038, 627, 8140, 8171, 81, 3394, 1891, 30718, 1302, 11, 34356, 449, 279, 45915, 39526, 315, 279, 42727, 70637, 15717, 11705, 264, 17604, 430, 649, 387, 1511, 389, 4395, -100 ]
As a fitness trainer, Aaron Hogland shared many fitness related articles that help you to aware about fitness. Today he come with a new article that also help to improve your fitness & keep your body fit. According to Aaron Hogland, your health into your own hands. Twitter, Facebook, Instagram are big name apps that everyone know & help to connect with your friends, relatives and share your photos & videos. But you know there are many apps that help you to improve your health. According to a study, those who used fitness app were much more active rather then to other nonusers . If Fitness trainer Aaron Hogland missed your favorite health & fitness app then please share the name of fitness app via comment section.
{ "redpajama_set_name": "RedPajamaC4" }
4,371
[ 128000, 2170, 264, 17479, 29994, 11, 26757, 50869, 1974, 6222, 1690, 17479, 5552, 9908, 430, 1520, 499, 311, 8010, 922, 17479, 13, 11450, 568, 2586, 449, 264, 502, 4652, 430, 1101, 1520, 311, 7417, 701, 17479, 612, 2567, 701, 2547, 5052, 627, 11439, 311, 26757, 50869, 1974, 11, 701, 2890, 1139, 701, 1866, 6206, 13, 6405, 11, 5690, 11, 14318, 527, 2466, 836, 10721, 430, 5127, 1440, 612, 1520, 311, 4667, 449, 701, 4885, 11, 29658, 323, 4430, 701, 7397, 612, 6946, 627, 4071, 499, 1440, 1070, 527, 1690, 10721, 430, 1520, 499, 311, 7417, 701, 2890, 627, 11439, 311, 264, 4007, 11, 1884, 889, 1511, 17479, 917, 1051, 1790, 810, 4642, 4856, 1243, 311, 1023, 2536, 4312, 16853, 2746, 36808, 29994, 26757, 50869, 1974, 13942, 701, 7075 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2170, 264, 17479, 29994, 11, 26757, 50869, 1974, 6222, 1690, 17479, 5552, 9908, 430, 1520, 499, 311, 8010, 922, 17479, 13, 11450, 568, 2586, 449, 264, 502, 4652, 430, 1101, 1520, 311, 7417, 701, 17479, 612, 2567, 701, 2547, 5052, 627, 11439, 311, 26757, 50869, 1974, 11, 701, 2890, 1139, 701, 1866, 6206, 13, 6405, 11, 5690, 11, 14318, 527, 2466, 836, 10721, 430, 5127, 1440, 612, 1520, 311, 4667, 449, 701, 4885, 11, 29658, 323, 4430, 701, 7397, 612, 6946, 627, 4071, 499, 1440, 1070, 527, 1690, 10721, 430, 1520, 499, 311, 7417, 701, 2890, 627, 11439, 311, 264, 4007, 11, 1884, 889, 1511, 17479, 917, 1051, 1790, 810, 4642, 4856, 1243, 311, 1023, 2536, 4312, 16853, 2746, 36808, 29994, 26757, 50869, 1974, 13942, 701, 7075, -100 ]
Wai Jia: The Kung Fu Forum Lingerie Fighting Championships Thread: Lingerie Fighting Championships Fremont, CA, U.S.A. http://lingeriefc.com/ It was only a matter of time... Gene Ching Publisher www.KungFuMagazine.com Author of Shaolin Trips Support our forum by getting your gear at MartialArtSmart sanjuro_ronin GM of Hadaka Korosu Oivay ! http://lingeriefc.com/jenny-bloody-valentine/# http://lingeriefc.com/vivian-the-valkyrie-voss-2/ Praise be my Lord my Rock, He trains my hands for war, my fingers for battle ! G.l.o.w. This reminds me of ]Gorgeous Ladies Of Wrestling Teri London Hit me baby one more time! Backing dancer who has worked with the likes of Britney Spears and Beyoncé forges new career as a lingerie-clad martial arts fighter Orlando, Florida, native Teri London, 29, fights in the Lingerie Fighting League, where she takes on other women while wearing negligees But when she isn't hitting the ring, she's a dancer who has appeared in music videos and on tour for some of pop's biggest stars By DAILYMAIL.COM REPORTER Speed, agility and an ability to hit the mark at just the right moment are some of the skills every professional dancer needs - and the same could be said for mixed martial arts fighters. It's probably why the transition has been all but seamless for Teri London, 29, from Orlando, Florida, who recently went from busting moves in pop smash music videos to busting heads in the Lingerie Fighting League, which sees female combatants fight in a selection of racy underwear. An LFC bout has all the action of a regular MMA contest but with more focus on ground work fighting than stand up striking. Bit of a change: Teri London, 29, from Orlando, Florida, who has previously worked as a backing dancer for pop queens, has joined the Lingerie Fighting League Busting moves: Teri has to train for nearly eight hours every day to be in shape for her careers In order to be in top shape for fights, Teri trains for nearly eight hours a day. As well as honing her fighting skills, her training schedule includes gym work, hitting the dance studio, running and swimming. And on top of all of that, Teri continues to dance around her hectic schedule, and has appeared in routines for a host of stars such as Pitbull and Skrillex. Backing it up: Teri was one of the dancers in Beyonce's video for Run the World (Girls) Who run the world? Teri London is seen second from right dancing behind Beyonce in the video for the hit song Double life: The LFL sees female combatants fight it out in a ring while wearing a selection of racy lingerie Shifting focus: An LFC bout has all the action of a regular MMA fight, but is battled out with more ground work fighting than stand up striking The fighter, who has previously appeared in videos such as Beyonce's Run the World (Girls), revealed her interest in MMA and boxing came from her older brothers. She said: 'I became interested in LFC because it combines fighting with sexy outfits - as a dancer I just thought it was a really cool mix. 'Dancing and MMA require lots of discipline and, obviously, you have to keep your body in peak condition.' continued next post Continued from previous post Looking up: Teri said she became interested in fighting through her older brothers' interest in MMA and boxing Mixing it up: Teri thought that the LFL would be a good fit for her because it 'combines fighting with sexy outfits' Getting started: Though Teri has only fought in two bouts so far, she has already earned the nickname 'Feisty Fists' and has won a match Nicknamed 'Feisty Fists', Teri has had two fights so far - LFC 19 and LFC 20 - with a record of 1-1. Both of Teri's fights have been held in Las Vegas, with her next bout scheduled to take place in February 2016. In her second fight, at LFC 20, Teri was far more confident in the ring, winning the fight, as well as praise from her friends and family. Moving up: Though she lost her first fight, Teri was more confident the second time around and gained a win Looking ahead: Teri's fights have both been held in Las Vegas and her next is scheduled for February 2016 Perfectionist: Teri claims she is 'my own biggest critic so I saw lots I still need to work on' She revealed her parents are extremely supportive of her exploits as a fighter. 'I'm my own biggest critic so I saw lots I still need to work on but I'm the type who will put in the work,' she explained. 'Someday I'd like to hoist the championship belt.' And while some may look at the sport and find themselves unable to look past the pretty ladies wearing skimpy underwear, Shaun Donnelly, founder and CEO of LFC, believes looking good in lingerie isn't enough to succeed in the LFC. Big plans: Teri hopes to one day 'hoist the championship belt' as a MMA fighter Making the cut: Founder Shaun Donnell explained that the LFC requires a lot more than looking good in lingerie Pushing back: However, he admitted that 'some contestants are lingerie models, so they don't want to destroy their looks by beating each other to bloody pulps' He said: 'The girls have to be able to move in the cage and protect themselves. 'LFC isn't nearly as brutal as a UFC fight, but there are black eyes and split lips. 'Ultimately some contestants are lingerie models, so they don't want to destroy their looks by beating each other to bloody pulps.' Anyone here following this league? ttt 4 2020! Woah...this is still going? Lingerie Fighting Championship: The world's most controversial MMA league (VIDEO) 4 Mar, 2020 16:14 / Updated 2 days ago Ever wondered what a mixed martial arts league between models would look like? RT Sport delves into the world of The Lingerie Fighting Championship– dubbed 'the world's most controversial MMA league'. In the vast landscape of combat sports, The Lingerie Fighting Championships, or LFC for short, stands alone as the only exclusively female MMA promotion that pits models in sultry lingerie against one another to slug it out in cage fights. The concept seems to tread a fine line between sports entertainment and exhibitionism, pushing against the boundaries of acceptability. Since its creation in Las Vegas in 2014 LFC has already been banned from returning to the state of Kansas after the fighters at a 'Guilty Pleasures' show were deemed to be "dressed too provocatively." The Nevada State Athletic Commission has condemned the league's absence of weight divisions, which allows for girls to be thrown around, choked out and body-slammed by heavier opponents. Feminists have labeled the promotion "a sad rage pool" of het-male fantasy and criticized it for "hooking something that could be empowering for women." Yet its fighters and fans are adamant that the league represents strong-willed women aiming to build a legitimate stepping stone to mainstream MMA. So is this niche brand of fantasy fighting really a battle for female empowerment? Or does it promote the exploitation of women looking to break into the big time? Or is it simply a harmless spectacle no different to any other vice available on the Sin City strip? RT Sport goes inside the weird and wonderful world of lingerie fighting to find out. Quick Navigation Mixed Martial Arts Top Nei Jia: the Qigong and Taijiquan Forum Martial Media, Culture and Other Arts
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
2,149
[ 128000, 54, 2192, 622, 689, 25, 578, 735, 2234, 30353, 17997, 198, 43, 5248, 648, 50417, 48854, 198, 6998, 25, 445, 5248, 648, 50417, 48854, 198, 37, 1864, 546, 11, 9362, 11, 549, 815, 885, 627, 1277, 1129, 72660, 4843, 66, 916, 6018, 2181, 574, 1193, 264, 5030, 315, 892, 9522, 64622, 921, 287, 198, 35650, 8604, 11606, 2234, 77845, 34015, 10119, 916, 198, 7279, 315, 29070, 37737, 12639, 1725, 198, 8075, 1057, 12111, 555, 3794, 701, 14787, 520, 72361, 9470, 34917, 198, 34182, 73, 2868, 1745, 263, 258, 198, 21287, 315, 24805, 13637, 36170, 111627, 198, 46, 344, 352, 59162, 1277, 1129, 72660, 4843, 66, 916, 4537, 18314, 1481, 385, 1094, 46254, 27970, 14, 5062, 1277, 1129, 72660, 4843, 66, 916, 5574, 344, 1122, 10826, 46254, 8050 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 54, 2192, 622, 689, 25, 578, 735, 2234, 30353, 17997, 198, 43, 5248, 648, 50417, 48854, 198, 6998, 25, 445, 5248, 648, 50417, 48854, 198, 37, 1864, 546, 11, 9362, 11, 549, 815, 885, 627, 1277, 1129, 72660, 4843, 66, 916, 6018, 2181, 574, 1193, 264, 5030, 315, 892, 9522, 64622, 921, 287, 198, 35650, 8604, 11606, 2234, 77845, 34015, 10119, 916, 198, 7279, 315, 29070, 37737, 12639, 1725, 198, 8075, 1057, 12111, 555, 3794, 701, 14787, 520, 72361, 9470, 34917, 198, 34182, 73, 2868, 1745, 263, 258, 198, 21287, 315, 24805, 13637, 36170, 111627, 198, 46, 344, 352, 59162, 1277, 1129, 72660, 4843, 66, 916, 4537, 18314, 1481, 385, 1094, 46254, 27970, 14, 5062, 1277, 1129, 72660, 4843, 66, 916, 5574, 344, 1122, 10826, 46254, 8050, -100 ]
Hooray, It's Spring! What a better way to celebrate the start of Spring than Easter?!? Celebrate with your little ones with a visit to the Easter Bunny or one of the egg hunts happening around town. Don't miss out on stopping at one of the fabulous San Diego restaurants and hotels for Easter brunch. Hop on down to read the rest of our blog on how you can enjoy an amazing Easter Weekend in San Diego. Head over to the beautiful Hotel Del Coronado for their Easter Sunday events: Champagne Easter Brunch, Brunch at Sheerwater, colorful egg hunt on the lawn, and a petting zoo that includes baby chicks, bunnies, friendly sheep and goats. Families can enjoy an exciting morning of egg hunts, crafts, goodie bags and more. Don't forget to take your photo op with Peter Rabbit, who will be hopping around to take pictures. Embark on one of their brunch cruises for bottomless mimosas, sparkling cider, meet n' greet with the Easter Bunny all while cruisin' on the San Diego Bay! All-day event with activities for kids, eggs hunt on the beach, Easter Bunny photo op, live music and more. Free admission and parking! Afternoon tea with the Easter bunny, treats, sandwiches and pastries. Sip and brunch the morning away while enjoying remarkable views of San Diego. Head on over for La Jolla's best buffet brunch and Easter egg hunt! Take a ride as a family with the Easter bunny through the east county mountains! Kids can enjoy an Easter egg hunt before or after your ride! San Diego Speed Boat Adventures will be hosting an Easter egg hunt for all guests joining us on a tour. We have departure times at 9am, 11am, 1pm, 3pm & 5pm!
{ "redpajama_set_name": "RedPajamaC4" }
9,034
[ 128000, 39, 10922, 352, 11, 1102, 596, 12531, 0, 3639, 264, 2731, 1648, 311, 18890, 279, 1212, 315, 12531, 1109, 33500, 27074, 30, 33292, 349, 449, 701, 2697, 6305, 449, 264, 4034, 311, 279, 33500, 73162, 477, 832, 315, 279, 19151, 93929, 12765, 2212, 6424, 13, 4418, 956, 3194, 704, 389, 23351, 520, 832, 315, 279, 35631, 5960, 18842, 15926, 323, 25325, 369, 33500, 70917, 13, 26634, 389, 1523, 311, 1373, 279, 2800, 315, 1057, 5117, 389, 1268, 499, 649, 4774, 459, 8056, 33500, 48534, 304, 5960, 18842, 627, 12626, 927, 311, 279, 6366, 14894, 7462, 48183, 2172, 369, 872, 33500, 7418, 4455, 25, 88639, 33500, 3320, 3265, 11, 3320, 3265, 520, 3005, 261, 13284, 11, 34966, 19151, 19614, 389, 279, 37125, 11, 323, 264, 6896, 1303, 42014 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 39, 10922, 352, 11, 1102, 596, 12531, 0, 3639, 264, 2731, 1648, 311, 18890, 279, 1212, 315, 12531, 1109, 33500, 27074, 30, 33292, 349, 449, 701, 2697, 6305, 449, 264, 4034, 311, 279, 33500, 73162, 477, 832, 315, 279, 19151, 93929, 12765, 2212, 6424, 13, 4418, 956, 3194, 704, 389, 23351, 520, 832, 315, 279, 35631, 5960, 18842, 15926, 323, 25325, 369, 33500, 70917, 13, 26634, 389, 1523, 311, 1373, 279, 2800, 315, 1057, 5117, 389, 1268, 499, 649, 4774, 459, 8056, 33500, 48534, 304, 5960, 18842, 627, 12626, 927, 311, 279, 6366, 14894, 7462, 48183, 2172, 369, 872, 33500, 7418, 4455, 25, 88639, 33500, 3320, 3265, 11, 3320, 3265, 520, 3005, 261, 13284, 11, 34966, 19151, 19614, 389, 279, 37125, 11, 323, 264, 6896, 1303, 42014, -100 ]
Some mornings, my mind wants the antioxidants, minerals and vitamins from a smoothie but my taste buds want something they can chew and gnaw on. On those days, I make a smoothie bowl, a thicker smoothie (less liquid) with some healthy toppings added for a little crunch and heartier consistency. The toppings can include raw nuts, unsweetened coconut and crunchy fruit such as grapes, firm apples, pears or chopped citrus. So you see, a smoothie bowl keeps my heart, my stomach and my waistline happy. Win-Win! A thicker smoothie with crunchy toppings are perfect for mornings where you want the vitamins, minerals and anti-oxidants of a smoothie but crave some crunch. Pour smoothie in a bowl and sprinkle with your favorite toppings: raw nuts, unsweetened coconut, grapes or chopped fruit such as apples and pears. Use a spoon and enjoy as you would your favorite soup! As always, thank you for stopping by Jackie Unfiltered. You might wonder why this recipe is called "The Ohio Players." Well, I am dedicating this smoothie to my Ohio family. First, there is Sikia, my ace who lovingly helped me create Jackie Unfiltered and fixes all those pesky technical problems that seem to pop up daily. Second, there is Sikia's mom who I call "Momma Connie." She likes every social media post, reads every blog article and conquers every workout and fitness challenge. As you know, I lost my mom when I was 20 years old so I secretly imagine that Momma Connie's "likes" and "comments" are validations from my own mother. Thank you Ohio fam from the bottom of my heart! Substitute it with another firm and sweet fruit. I can't wait to see how you like it. Please let me know.
{ "redpajama_set_name": "RedPajamaC4" }
5,060
[ 128000, 8538, 58302, 11, 856, 4059, 6944, 279, 81115, 11, 34072, 323, 46192, 505, 264, 11113, 648, 719, 856, 12945, 68543, 1390, 2555, 814, 649, 37433, 323, 39719, 675, 389, 627, 1966, 1884, 2919, 11, 358, 1304, 264, 11113, 648, 19763, 11, 264, 59884, 11113, 648, 320, 1752, 14812, 8, 449, 1063, 9498, 90771, 3779, 369, 264, 2697, 42834, 323, 4851, 1291, 29237, 627, 791, 90771, 649, 2997, 7257, 31049, 11, 7120, 4589, 6901, 34557, 323, 95333, 14098, 1778, 439, 66008, 11, 7626, 41776, 11, 281, 7596, 477, 38525, 60290, 13, 2100, 499, 1518, 11, 264, 11113, 648, 19763, 13912, 856, 4851, 11, 856, 23152, 323, 856, 29142, 1074, 6380, 13, 12468, 13299, 258, 4999, 32, 59884, 11113, 648, 449, 95333, 90771, 527, 4832, 369, 58302, 1405, 499 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 8538, 58302, 11, 856, 4059, 6944, 279, 81115, 11, 34072, 323, 46192, 505, 264, 11113, 648, 719, 856, 12945, 68543, 1390, 2555, 814, 649, 37433, 323, 39719, 675, 389, 627, 1966, 1884, 2919, 11, 358, 1304, 264, 11113, 648, 19763, 11, 264, 59884, 11113, 648, 320, 1752, 14812, 8, 449, 1063, 9498, 90771, 3779, 369, 264, 2697, 42834, 323, 4851, 1291, 29237, 627, 791, 90771, 649, 2997, 7257, 31049, 11, 7120, 4589, 6901, 34557, 323, 95333, 14098, 1778, 439, 66008, 11, 7626, 41776, 11, 281, 7596, 477, 38525, 60290, 13, 2100, 499, 1518, 11, 264, 11113, 648, 19763, 13912, 856, 4851, 11, 856, 23152, 323, 856, 29142, 1074, 6380, 13, 12468, 13299, 258, 4999, 32, 59884, 11113, 648, 449, 95333, 90771, 527, 4832, 369, 58302, 1405, 499, -100 ]
We also set STEAM (Science, Technology, Engineering, Art, Music) projects each term. Children will be required to complete a project at home with family members. At the end of each term we will celebrate the children's successes. This term the children have been set the project of growing a plant. You can re-watch out Peter Pan production here! We hope that you enjoy our Peter Pan Production if you didn't catch it before. We had a great afternoon on Thursday 16th October showing you our dinosaur worlds. Thank you to all who came!
{ "redpajama_set_name": "RedPajamaC4" }
1,175
[ 128000, 1687, 1101, 743, 27597, 1428, 320, 36500, 11, 12053, 11, 17005, 11, 5277, 11, 10948, 8, 7224, 1855, 4751, 13, 15394, 690, 387, 2631, 311, 4686, 264, 2447, 520, 2162, 449, 3070, 3697, 13, 2468, 279, 842, 315, 1855, 4751, 584, 690, 18890, 279, 2911, 596, 48188, 13, 1115, 4751, 279, 2911, 617, 1027, 743, 279, 2447, 315, 7982, 264, 6136, 627, 2675, 649, 312, 85396, 704, 11291, 11233, 5788, 1618, 4999, 1687, 3987, 430, 499, 4774, 1057, 11291, 11233, 25003, 422, 499, 3287, 956, 2339, 433, 1603, 627, 1687, 1047, 264, 2294, 13658, 389, 7950, 220, 845, 339, 6664, 9204, 499, 1057, 63989, 24800, 13, 9930, 499, 311, 682, 889, 3782, 0, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 1687, 1101, 743, 27597, 1428, 320, 36500, 11, 12053, 11, 17005, 11, 5277, 11, 10948, 8, 7224, 1855, 4751, 13, 15394, 690, 387, 2631, 311, 4686, 264, 2447, 520, 2162, 449, 3070, 3697, 13, 2468, 279, 842, 315, 1855, 4751, 584, 690, 18890, 279, 2911, 596, 48188, 13, 1115, 4751, 279, 2911, 617, 1027, 743, 279, 2447, 315, 7982, 264, 6136, 627, 2675, 649, 312, 85396, 704, 11291, 11233, 5788, 1618, 4999, 1687, 3987, 430, 499, 4774, 1057, 11291, 11233, 25003, 422, 499, 3287, 956, 2339, 433, 1603, 627, 1687, 1047, 264, 2294, 13658, 389, 7950, 220, 845, 339, 6664, 9204, 499, 1057, 63989, 24800, 13, 9930, 499, 311, 682, 889, 3782, 0, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100 ]
<?php namespace Maklarresurs\AppBundle\DataFixtures\ORM; use Doctrine\Common\DataFixtures\AbstractFixture; use Doctrine\Common\DataFixtures\OrderedFixtureInterface; use Doctrine\Common\Persistence\ObjectManager; use Maklarresurs\AppBundle\Entity\Area; use Maklarresurs\AppBundle\Entity\Region; class ZoneFixtures extends AbstractFixture implements OrderedFixtureInterface { public function load(ObjectManager $manager) { $path = __DIR__."/../../Resources/fixture-data/zones.json"; $data = json_decode(file_get_contents($path), true); $createAreas = function($areas, Area $parent=null, Region $region) use ($manager, &$createAreas) { foreach($areas as $areaData) { $area = new Area(); $area->setRegion($region); $area->setName($areaData['name']); if(isset($areaData['mapRef'])){ $area->setMapRef($areaData['mapRef']); } if($parent) { $area->setParentArea($parent); } $manager->persist($area); if(isset($areaData['areas'])) $createAreas($areaData['areas'], $area, $region); } }; foreach($data as $regionAreas) { $region = $manager->getReference("MaklarresursAppBundle:Region", $regionAreas['region']); $createAreas($regionAreas['areas'], null, $region); $manager->flush(); $manager->clear(); } } /** * Get the order of this fixture * * @return integer */ function getOrder() { return 2; } } ?>
{ "redpajama_set_name": "RedPajamaGithub" }
5,505
[ 128000, 1340, 1230, 271, 2280, 40424, 14115, 417, 1759, 41023, 8575, 37702, 27048, 19020, 38917, 5322, 817, 29732, 41692, 37702, 27048, 19020, 48526, 19466, 280, 817, 29732, 41692, 37702, 27048, 19020, 59, 55484, 19466, 5160, 280, 817, 29732, 41692, 91275, 78965, 2087, 280, 817, 40424, 14115, 417, 1759, 41023, 8575, 15778, 59, 8900, 280, 817, 40424, 14115, 417, 1759, 41023, 8575, 15778, 59, 14422, 5322, 1058, 22967, 27048, 19020, 2289, 13822, 19466, 5280, 40681, 19466, 5160, 198, 4352, 262, 586, 734, 2865, 12809, 2087, 400, 13600, 340, 262, 341, 286, 400, 2398, 284, 1328, 12530, 565, 52661, 2817, 11528, 14, 60712, 14271, 32182, 3233, 4421, 886, 286, 400, 695, 284, 3024, 15584, 4971, 3138, 17096, 703, 2398, 705, 837, 32395, 286, 400, 3261, 72337, 284, 734, 703, 33637 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 1340, 1230, 271, 2280, 40424, 14115, 417, 1759, 41023, 8575, 37702, 27048, 19020, 38917, 5322, 817, 29732, 41692, 37702, 27048, 19020, 48526, 19466, 280, 817, 29732, 41692, 37702, 27048, 19020, 59, 55484, 19466, 5160, 280, 817, 29732, 41692, 91275, 78965, 2087, 280, 817, 40424, 14115, 417, 1759, 41023, 8575, 15778, 59, 8900, 280, 817, 40424, 14115, 417, 1759, 41023, 8575, 15778, 59, 14422, 5322, 1058, 22967, 27048, 19020, 2289, 13822, 19466, 5280, 40681, 19466, 5160, 198, 4352, 262, 586, 734, 2865, 12809, 2087, 400, 13600, 340, 262, 341, 286, 400, 2398, 284, 1328, 12530, 565, 52661, 2817, 11528, 14, 60712, 14271, 32182, 3233, 4421, 886, 286, 400, 695, 284, 3024, 15584, 4971, 3138, 17096, 703, 2398, 705, 837, 32395, 286, 400, 3261, 72337, 284, 734, 703, 33637, -100 ]
The rooms and villas at Qunci Villas are dotted within tropical gardens, from the beachfront of Mangsit Bay, back into the hills, and overlooking the glistening waters of the Lombok Straits. Designed by renowned Dutch architect Joost Van Grieken, accommodation ranges from Garden view and Ocean view guestrooms, to luxurious multi-bedroom villas on the hillside, with majestic coastal views. Timbered floors with warm colours and unique furnishings, including colourful modern artworks, characterise the guestroms and villas, embracing Balinese style but with a modern twist. Garden view, partial ocean, and ocean view are the respective options for room choices, yet each comes with home comforts aplenty. Outdoor showers only add to the atmosphere, as the sound of the water falling replicates the humid rainfall that the tropics can bring. One bedroom pool villas are the perfect option for water babies who like to be near the beach, but for those looking for the most private villa option, head back into the hills for a stay in Villa Qumbang, Villa Qunang and Villa Qusia - all with private swimming pools, and bay views. Quali Seafood Restaurant dishes up the catch of the day with the freshest of fish on offer, while Quah Mediterranean Restaurant serves a wide range of both International and Balinese cuisine, from breakfast to dinner. The Nooq Lounge Bar is the place to head for an evening cocktail or a spot of Thai food, as the idyllic setting hosts the perfect place to watch as the sun sets over the sea. For something a little more relaxing, the Qamboja Spa is the ideal place to detoxify, and revel in the plant, herb and spice based treatments. Sitting on Lombok's north west coast, the white sand droplets of the Gili islands are within easy reach for a days snorkelling and beachside lazing, whilst Qunci Villas can also help to arrange trips to local temples, treks up Mount Rinjani (as long as it's not bubbling), and numerous water based activities off the beach just a stone's throw from the hotel.
{ "redpajama_set_name": "RedPajamaC4" }
6,580
[ 128000, 791, 12295, 323, 9077, 300, 520, 1229, 18931, 16959, 300, 527, 59201, 2949, 35148, 36536, 11, 505, 279, 11573, 7096, 315, 60148, 47965, 9332, 11, 1203, 1139, 279, 35231, 11, 323, 53324, 279, 342, 75919, 21160, 315, 279, 445, 16829, 27745, 1220, 627, 78233, 555, 37048, 24113, 11726, 11186, 537, 13000, 64004, 54994, 11, 28377, 21986, 505, 19558, 1684, 323, 22302, 1684, 8810, 9949, 11, 311, 43828, 7447, 67967, 9077, 300, 389, 279, 24898, 3002, 11, 449, 81389, 35335, 6325, 13, 45248, 291, 27035, 449, 8369, 27230, 323, 5016, 73271, 11, 2737, 70467, 6617, 97549, 11, 3752, 1082, 279, 8810, 442, 82, 323, 9077, 300, 11, 56501, 19984, 7496, 1742, 719, 449, 264, 6617, 27744, 13, 19558, 1684, 11, 7276, 18435, 11, 323, 18435, 1684, 527, 279 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 791, 12295, 323, 9077, 300, 520, 1229, 18931, 16959, 300, 527, 59201, 2949, 35148, 36536, 11, 505, 279, 11573, 7096, 315, 60148, 47965, 9332, 11, 1203, 1139, 279, 35231, 11, 323, 53324, 279, 342, 75919, 21160, 315, 279, 445, 16829, 27745, 1220, 627, 78233, 555, 37048, 24113, 11726, 11186, 537, 13000, 64004, 54994, 11, 28377, 21986, 505, 19558, 1684, 323, 22302, 1684, 8810, 9949, 11, 311, 43828, 7447, 67967, 9077, 300, 389, 279, 24898, 3002, 11, 449, 81389, 35335, 6325, 13, 45248, 291, 27035, 449, 8369, 27230, 323, 5016, 73271, 11, 2737, 70467, 6617, 97549, 11, 3752, 1082, 279, 8810, 442, 82, 323, 9077, 300, 11, 56501, 19984, 7496, 1742, 719, 449, 264, 6617, 27744, 13, 19558, 1684, 11, 7276, 18435, 11, 323, 18435, 1684, 527, 279, -100 ]
Coleophora vestianella is a moth of the family Coleophoridae. It is found from Europe to Asia Minor, Iran, Afghanistan, China, the Korean Peninsula and Japan. The wingspan is . Adults are on wing from June to August. The larvae feed on Chenopodium (including Chenopodium album) and Atriplex species (including Atriplex patula). They feed on the generative organs of their host plant. Synonyms Coleophora annulatella Nylander, 1848 Coleophora botauripennella Toll, 1955 Coleophora laripennella Toll, 1953 Coleophora subtractella Caradja, 1920 Coleophora tengstromella Doubleday, 1859 Ecebalia vestianella (Linnaeus, 1758) Phalaena (Tinea) vestianella Linnaeus, 1758 Ornix laripennella Zetterstedt, 1839 References External links Swedish Moths Coleophora vestianella at ukmoths vestianella Moths described in 1758 Moths of Asia Moths of Europe Taxa named by Carl Linnaeus
{ "redpajama_set_name": "RedPajamaWikipedia" }
7,957
[ 128000, 99280, 5237, 6347, 28705, 1122, 6985, 374, 264, 98178, 315, 279, 3070, 24298, 5237, 40857, 68, 13, 1102, 374, 1766, 505, 4606, 311, 13936, 30893, 11, 10471, 11, 21139, 11, 5734, 11, 279, 16526, 50714, 323, 6457, 382, 791, 27296, 857, 374, 662, 58338, 527, 389, 20611, 505, 5651, 311, 6287, 382, 791, 83861, 5510, 389, 25507, 454, 47876, 320, 16564, 25507, 454, 47876, 8176, 8, 323, 362, 34081, 2635, 9606, 320, 16564, 362, 34081, 2635, 3352, 5724, 570, 2435, 5510, 389, 279, 1803, 1413, 36853, 315, 872, 3552, 6136, 382, 38234, 46703, 198, 24298, 5237, 6347, 3008, 360, 266, 6985, 37832, 35103, 11, 220, 10336, 23, 198, 24298, 5237, 6347, 11164, 4202, 575, 2734, 6985, 86394, 11, 220, 6280, 20, 198, 24298, 5237, 6347, 45555, 575 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 99280, 5237, 6347, 28705, 1122, 6985, 374, 264, 98178, 315, 279, 3070, 24298, 5237, 40857, 68, 13, 1102, 374, 1766, 505, 4606, 311, 13936, 30893, 11, 10471, 11, 21139, 11, 5734, 11, 279, 16526, 50714, 323, 6457, 382, 791, 27296, 857, 374, 662, 58338, 527, 389, 20611, 505, 5651, 311, 6287, 382, 791, 83861, 5510, 389, 25507, 454, 47876, 320, 16564, 25507, 454, 47876, 8176, 8, 323, 362, 34081, 2635, 9606, 320, 16564, 362, 34081, 2635, 3352, 5724, 570, 2435, 5510, 389, 279, 1803, 1413, 36853, 315, 872, 3552, 6136, 382, 38234, 46703, 198, 24298, 5237, 6347, 3008, 360, 266, 6985, 37832, 35103, 11, 220, 10336, 23, 198, 24298, 5237, 6347, 11164, 4202, 575, 2734, 6985, 86394, 11, 220, 6280, 20, 198, 24298, 5237, 6347, 45555, 575, -100 ]
Nice Recliner Chair Bedroom - To beautify the chair, we normally make a few areas. |} It's miles difficult to enhance the chair, as the scale of the chair is obviously smaller than any rooms inside the house. To help retaining the redecorating and storage chair, you'll want small corner cupboard for chair. The smart homeowner will continually pick the fixtures that's decorative and purposeful in precisely the equal second. This is some very exceptional small corner cabinet for chair. Choose a high leg recliner for a chair that allows you to sit lower back and prop your toes up without the cumbersome appearance of a conventional recliner. This chair is an appropriate manner to add fashion with out sacrificing comfort to your house. Reclaimed timber is used for the duration of the home to reduce wastage of substances and the secure home also maintains its carbon footprint to a bare minimal. From a cultured point of view the super mixture of textures unassuming décor and the woodsy allure of rustic style deliver this transformed barn home an inviting and curated ambiance. One of the most one-of-a-kind features of the house is its that is covered in metallic and ushers in an air of timelessness to an in any other case contemporary shape. Turning a regular home in a multi-level house with a adorable attic the design of the residence by using dorrington atcheson architects fuses a distinct silhouette with seamless modern-day ergonomics. With a breezy metal structure and an indoors that handiest makes use of unassuming shades like white black and grey the point of interest right here stays firmly at the mesmerizing scenery that units the tone for never-ending parties and a tranquil holiday environment. Complete with a small dwelling region a kitchen and a dining place every component of the pool residence objectives to carry collectively modern comfort with the herbal splendor of the lakeside get away. This item has been tagged as: recliner, reclining chair, glider rocker recliner, rocking recliner, excessive leg reclining chair, elevate recliner, pop - up recliner, reclining chair and ottoman, motion recliner, general recliner, no - rock recliners, wall recliners, smooth chair, living room chair, dwelling room furnishings, tv chair, chair recliner, massage chair, rubdown recliner, swivel rocker recliner, massaging recliner.
{ "redpajama_set_name": "RedPajamaC4" }
2,260
[ 128000, 46078, 1050, 566, 10670, 16478, 33955, 482, 2057, 5017, 1463, 279, 10716, 11, 584, 14614, 1304, 264, 2478, 5789, 13, 765, 92, 1102, 596, 8931, 5107, 311, 18885, 279, 10716, 11, 439, 279, 5569, 315, 279, 10716, 374, 14224, 9333, 1109, 904, 12295, 4871, 279, 3838, 13, 2057, 1520, 51110, 279, 31265, 6133, 1113, 323, 5942, 10716, 11, 499, 3358, 1390, 2678, 9309, 87041, 369, 10716, 13, 578, 7941, 67798, 690, 35611, 3820, 279, 38764, 430, 596, 46536, 323, 7580, 1285, 304, 24559, 279, 6273, 2132, 13, 1115, 374, 1063, 1633, 25363, 2678, 9309, 22685, 369, 10716, 627, 25017, 264, 1579, 2531, 48520, 10670, 369, 264, 10716, 430, 6276, 499, 311, 2503, 4827, 1203, 323, 2047, 701, 45713, 709, 2085, 279, 96190, 11341, 315, 264, 21349, 48520 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 46078, 1050, 566, 10670, 16478, 33955, 482, 2057, 5017, 1463, 279, 10716, 11, 584, 14614, 1304, 264, 2478, 5789, 13, 765, 92, 1102, 596, 8931, 5107, 311, 18885, 279, 10716, 11, 439, 279, 5569, 315, 279, 10716, 374, 14224, 9333, 1109, 904, 12295, 4871, 279, 3838, 13, 2057, 1520, 51110, 279, 31265, 6133, 1113, 323, 5942, 10716, 11, 499, 3358, 1390, 2678, 9309, 87041, 369, 10716, 13, 578, 7941, 67798, 690, 35611, 3820, 279, 38764, 430, 596, 46536, 323, 7580, 1285, 304, 24559, 279, 6273, 2132, 13, 1115, 374, 1063, 1633, 25363, 2678, 9309, 22685, 369, 10716, 627, 25017, 264, 1579, 2531, 48520, 10670, 369, 264, 10716, 430, 6276, 499, 311, 2503, 4827, 1203, 323, 2047, 701, 45713, 709, 2085, 279, 96190, 11341, 315, 264, 21349, 48520, -100 ]
Do you want to learn about and take full advantage of your Bernina sewing machine's capabilities? While making the Spring in Prague quilt you will explore many functions of your machine, including decorative stitches, use of embroidery unit. Many Bernina feet and accessories will be highlighted. This 10 month Block of the Month is designed for the Bernina 3 series and up. $35.00 for the first month and $15.00 for each successive month.
{ "redpajama_set_name": "RedPajamaC4" }
6,481
[ 128000, 5519, 499, 1390, 311, 4048, 922, 323, 1935, 2539, 9610, 315, 701, 14502, 2259, 52319, 5780, 596, 17357, 30, 6104, 3339, 279, 12531, 304, 68389, 61836, 499, 690, 13488, 1690, 5865, 315, 701, 5780, 11, 2737, 46536, 63036, 11, 1005, 315, 85927, 5089, 13, 9176, 14502, 2259, 7693, 323, 23090, 690, 387, 27463, 13, 1115, 220, 605, 2305, 8527, 315, 279, 19961, 374, 6319, 369, 279, 14502, 2259, 220, 18, 4101, 323, 709, 627, 3, 1758, 13, 410, 369, 279, 1176, 2305, 323, 400, 868, 13, 410, 369, 1855, 50024, 2305, 13, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 5519, 499, 1390, 311, 4048, 922, 323, 1935, 2539, 9610, 315, 701, 14502, 2259, 52319, 5780, 596, 17357, 30, 6104, 3339, 279, 12531, 304, 68389, 61836, 499, 690, 13488, 1690, 5865, 315, 701, 5780, 11, 2737, 46536, 63036, 11, 1005, 315, 85927, 5089, 13, 9176, 14502, 2259, 7693, 323, 23090, 690, 387, 27463, 13, 1115, 220, 605, 2305, 8527, 315, 279, 19961, 374, 6319, 369, 279, 14502, 2259, 220, 18, 4101, 323, 709, 627, 3, 1758, 13, 410, 369, 279, 1176, 2305, 323, 400, 868, 13, 410, 369, 1855, 50024, 2305, 13, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100 ]
Bearfoot Enterprises, LLC - New & Used Tires is proud to offer Goodyear tires to customers in Ellenton, FL, Bradenton, FL, Parrish, FL, and surrounding areas. We are one of the leading Goodyear tire dealers in the area. Our selection of competitively priced tires makes it easy to find the right tire to fit your budget.
{ "redpajama_set_name": "RedPajamaC4" }
6,537
[ 128000, 89685, 5447, 67056, 11, 15620, 482, 1561, 612, 12477, 350, 3946, 374, 12691, 311, 3085, 6122, 1094, 686, 31800, 311, 6444, 304, 13852, 75072, 11, 13062, 11, 17478, 75072, 11, 13062, 11, 81630, 819, 11, 13062, 11, 323, 14932, 5789, 13, 1226, 527, 832, 315, 279, 6522, 6122, 1094, 686, 28387, 27291, 304, 279, 3158, 13, 5751, 6727, 315, 52304, 3210, 33705, 31800, 3727, 433, 4228, 311, 1505, 279, 1314, 28387, 311, 5052, 701, 8199, 13, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 89685, 5447, 67056, 11, 15620, 482, 1561, 612, 12477, 350, 3946, 374, 12691, 311, 3085, 6122, 1094, 686, 31800, 311, 6444, 304, 13852, 75072, 11, 13062, 11, 17478, 75072, 11, 13062, 11, 81630, 819, 11, 13062, 11, 323, 14932, 5789, 13, 1226, 527, 832, 315, 279, 6522, 6122, 1094, 686, 28387, 27291, 304, 279, 3158, 13, 5751, 6727, 315, 52304, 3210, 33705, 31800, 3727, 433, 4228, 311, 1505, 279, 1314, 28387, 311, 5052, 701, 8199, 13, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100 ]
<?php declare(strict_types=1); namespace Vonage\Voice\Webhook; class Answer { /** * @var string */ protected $conversationUuid; /** * @var string */ protected $from; /** * @var string */ protected $to; /** * @var string */ protected $uuid; public function __construct(array $event) { $this->from = $event['from']; $this->to = $event['to']; $this->uuid = $event['uuid'] ?? $event['call_uuid']; $this->conversationUuid = $event['conversation_uuid']; } public function getConversationUuid(): string { return $this->conversationUuid; } public function getFrom(): string { return $this->from; } public function getTo(): string { return $this->to; } public function getUuid(): string { return $this->uuid; } }
{ "redpajama_set_name": "RedPajamaGithub" }
311
[ 128000, 1340, 1230, 1038, 18978, 39027, 9962, 28, 16, 629, 2280, 43179, 425, 59, 52267, 93589, 21543, 401, 1058, 22559, 198, 517, 262, 1583, 257, 353, 571, 959, 925, 198, 257, 740, 262, 2682, 400, 62737, 39531, 401, 262, 1583, 257, 353, 571, 959, 925, 198, 257, 740, 262, 2682, 400, 1527, 401, 262, 1583, 257, 353, 571, 959, 925, 198, 257, 740, 262, 2682, 400, 998, 401, 262, 1583, 257, 353, 571, 959, 925, 198, 257, 740, 262, 2682, 400, 17566, 401, 262, 586, 734, 1328, 7750, 6238, 400, 3163, 340, 262, 341, 286, 400, 576, 405, 1527, 284, 400, 3163, 681, 1527, 3945, 286, 400, 576, 405, 998, 284, 400, 3163, 681, 998, 3945, 286, 400, 576, 405, 17566, 284, 400, 3163, 681, 17566, 663, 9602 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 1340, 1230, 1038, 18978, 39027, 9962, 28, 16, 629, 2280, 43179, 425, 59, 52267, 93589, 21543, 401, 1058, 22559, 198, 517, 262, 1583, 257, 353, 571, 959, 925, 198, 257, 740, 262, 2682, 400, 62737, 39531, 401, 262, 1583, 257, 353, 571, 959, 925, 198, 257, 740, 262, 2682, 400, 1527, 401, 262, 1583, 257, 353, 571, 959, 925, 198, 257, 740, 262, 2682, 400, 998, 401, 262, 1583, 257, 353, 571, 959, 925, 198, 257, 740, 262, 2682, 400, 17566, 401, 262, 586, 734, 1328, 7750, 6238, 400, 3163, 340, 262, 341, 286, 400, 576, 405, 1527, 284, 400, 3163, 681, 1527, 3945, 286, 400, 576, 405, 998, 284, 400, 3163, 681, 998, 3945, 286, 400, 576, 405, 17566, 284, 400, 3163, 681, 17566, 663, 9602, -100 ]
Holley joins Washington Post biz desk by Chris Roush · July 17, 2017 Peter Holley Washington Post national economy and business editor David Cho, deputy business editor Zachary Goldfarb and digital editor Michelle Williams: We're excited to announce that Peter Holley will take on a new role as a writer in the Business section focusing on innovation. Peter joins the Business section following more than two-and-a-half years on the General Assignment team, where he has consistently been among The Post's most-read writers. Peter will bring fresh voice, insight and energy to the Innovations blog as well as writing enterprise pieces that explore how new and evolving technologies are changing business, the economy and society. His subjects will range from automation and artificial intelligence to the companies and inventors disrupting established industries across the world. In addition to showing a knack for writing stories readers find irresistible on the G.A. team, Peter broke news about an FBI investigation into the deaths of three CIA contractors killed in Jordan, reported from Kabul and Iraq for Foreign, and most recently wrote a thoughtful profile of the Illinois hometown of the Alexandria shooter. We also know Peter can have a little bit of fun, with his unforgettably entertaining PostEverything essay about the "dad bod." Before The Post, Peter was a writer for the Houston Chronicle, among other publications. A graduate of American University and Columbia Journalism School, he lives in Washington, D.C. He'll start his new role on July 17. Tags: Job changes Chris Roush Chris Roush is the dean of the School of Communications at Quinnipiac University in Hamden, Connecticut. He was previously Walter E. Hussman Sr. Distinguished Professor in business journalism at UNC-Chapel Hill. He is a former business journalist for Bloomberg News, Businessweek, The Atlanta Journal-Constitution, The Tampa Tribune and the Sarasota Herald-Tribune. He is the author of the leading business reporting textbook "Show me the Money: Writing Business and Economics Stories for Mass Communication" and "Thinking Things Over," a biography of former Wall Street Journal editor Vermont Royster. Next story "People on the Move" becomes ACBJ revenue stream Previous story CoinDesk hires former CNBC reporter Bennington
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
9,299
[ 128000, 39, 35619, 29782, 6652, 3962, 43478, 18496, 198, 1729, 11517, 432, 788, 71, 9787, 5887, 220, 1114, 11, 220, 679, 22, 198, 37659, 16071, 3258, 198, 39231, 3962, 5426, 8752, 323, 2626, 6576, 6941, 33680, 11, 27158, 2626, 6576, 39315, 661, 7573, 24470, 65, 323, 7528, 6576, 33126, 13926, 512, 1687, 2351, 12304, 311, 22203, 430, 11291, 16071, 3258, 690, 1935, 389, 264, 502, 3560, 439, 264, 7061, 304, 279, 8184, 3857, 21760, 389, 19297, 627, 37659, 29782, 279, 8184, 3857, 2768, 810, 1109, 1403, 9976, 7561, 34902, 1667, 389, 279, 3331, 35527, 2128, 11, 1405, 568, 706, 21356, 1027, 4315, 578, 3962, 596, 1455, 29906, 16483, 13, 11291, 690, 4546, 7878, 7899, 11, 20616, 323, 4907, 311, 279, 55947, 811, 5117, 439, 1664, 439, 4477, 20790 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 39, 35619, 29782, 6652, 3962, 43478, 18496, 198, 1729, 11517, 432, 788, 71, 9787, 5887, 220, 1114, 11, 220, 679, 22, 198, 37659, 16071, 3258, 198, 39231, 3962, 5426, 8752, 323, 2626, 6576, 6941, 33680, 11, 27158, 2626, 6576, 39315, 661, 7573, 24470, 65, 323, 7528, 6576, 33126, 13926, 512, 1687, 2351, 12304, 311, 22203, 430, 11291, 16071, 3258, 690, 1935, 389, 264, 502, 3560, 439, 264, 7061, 304, 279, 8184, 3857, 21760, 389, 19297, 627, 37659, 29782, 279, 8184, 3857, 2768, 810, 1109, 1403, 9976, 7561, 34902, 1667, 389, 279, 3331, 35527, 2128, 11, 1405, 568, 706, 21356, 1027, 4315, 578, 3962, 596, 1455, 29906, 16483, 13, 11291, 690, 4546, 7878, 7899, 11, 20616, 323, 4907, 311, 279, 55947, 811, 5117, 439, 1664, 439, 4477, 20790, -100 ]
Red Cluster bottlebrush in tree form makes a showy specimen, with its bushy, upright growth habit and bright red blooms. This bottlebrush shrub variety can be grown as a large bush or a small single-trunk or multi-trunk tree. A Red Cluster bottlebrush works very well as a specimen tree for a yard with limited space. Its upright rounded crown can be easily kept in check for a manicured look. The flower spikes shaped like a bottle brush appear on and off all year - more in warmer months - and attract hummingbirds and butterflies. A great landscape accent plant, this bottlebrush tree is perfect for the corner of the house or near the entry - though not too near, honeybees love the red flowers. Other varieties of bottlebrush include the Red Cluster in full-to-the-ground bush form, weeping bottlebrush tree, and dwarf 'Little John' bottlebrush bush. Fast growing to 10 feet or more, Red Clusters are cold hardy, doing well anywhere in South Florida. A full sun location is best. The soft-textured foliage is evergreen and the plant is moderately salt-tolerant. It's also said to be deer-resistant, though nothing is deer-proof. If you prefer the look of a single trunk Red cluster bottlebrush, buy it already trained this way from a nursery. For multi-trunk, however, you can buy it in bush-form and train it to tree-form by trimming off new shoots at the base. Fertilize in spring, summer and fall with a top quality granular fertilizer, and supplement feedings with bone meal and/or liquid fertilizer to promote heavy blooming. Red Clusters tend to stay full to the ground, so clean up the trunks on a regular basis to keep the tree shape. Although this plant has a nice, naturally rounded shape, you'll need to cut off stray shoots occasionally for a cleaner look. Cut back hard in spring (late March) - take off up to 1/3 of the plant to encourage the dense and bushy growth. Give it a good drink at least an hour prior to doing any hard pruning. Plant 5 feet from the house to allow the wide, rounded crown of the tree plenty of room the fill out. If you're planting more than one, such as a row of trees along the property line, space them about 8 feet apart so each one can stand out. Red Clusters do best in the ground rather than in containers. COMPANION PLANT SUGGESTIONS: Underplantings should be kept low to show off the Red Cluster's pretty tree form. Try small shrubs such as Mammy croton, Indian hawthorne and dwarf allamanda, and/or groundcovers such as sweet potato vine, coral creeper, jasmine minima (Asiatic jasmine), and dwarf ruella.
{ "redpajama_set_name": "RedPajamaC4" }
4,418
[ 128000, 6161, 36480, 16893, 37161, 304, 5021, 1376, 3727, 264, 1501, 88, 58184, 11, 449, 1202, 30773, 88, 11, 49685, 6650, 14464, 323, 10107, 2579, 92889, 627, 2028, 16893, 37161, 14362, 392, 8205, 649, 387, 15042, 439, 264, 3544, 30773, 477, 264, 2678, 3254, 10398, 3200, 477, 7447, 10398, 3200, 5021, 627, 32, 3816, 36480, 16893, 37161, 4375, 1633, 1664, 439, 264, 58184, 5021, 369, 264, 20085, 449, 7347, 3634, 627, 37220, 49685, 18460, 27631, 649, 387, 6847, 8774, 304, 1817, 369, 264, 70222, 3149, 1427, 627, 791, 23153, 51760, 27367, 1093, 264, 16893, 15998, 5101, 389, 323, 1022, 682, 1060, 482, 810, 304, 46039, 4038, 482, 323, 9504, 87427, 67461, 323, 81776, 627, 32, 2294, 18921, 30200, 6136, 11, 420, 16893, 37161, 5021, 374, 4832, 369, 279 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 6161, 36480, 16893, 37161, 304, 5021, 1376, 3727, 264, 1501, 88, 58184, 11, 449, 1202, 30773, 88, 11, 49685, 6650, 14464, 323, 10107, 2579, 92889, 627, 2028, 16893, 37161, 14362, 392, 8205, 649, 387, 15042, 439, 264, 3544, 30773, 477, 264, 2678, 3254, 10398, 3200, 477, 7447, 10398, 3200, 5021, 627, 32, 3816, 36480, 16893, 37161, 4375, 1633, 1664, 439, 264, 58184, 5021, 369, 264, 20085, 449, 7347, 3634, 627, 37220, 49685, 18460, 27631, 649, 387, 6847, 8774, 304, 1817, 369, 264, 70222, 3149, 1427, 627, 791, 23153, 51760, 27367, 1093, 264, 16893, 15998, 5101, 389, 323, 1022, 682, 1060, 482, 810, 304, 46039, 4038, 482, 323, 9504, 87427, 67461, 323, 81776, 627, 32, 2294, 18921, 30200, 6136, 11, 420, 16893, 37161, 5021, 374, 4832, 369, 279, -100 ]
FEAR FACTORY Has Completed New Studio Album, Says BURTON C. BELL tom lats December 4, 2018 December 4, 2018 Rock News No Comments FEAR FACTORY Has Completed New Studio Album, Says BURTON C. BELL FEAR FACTORY has completed work on its long-awaited new album for a tentative 2019 release. The effort, which will once again be made available via Nuclear Blast, will mark… BLACK STAR RIDERS Tap Producer JAY RUSTON For Fourth Studio Album BLACK STAR RIDERS Tap Producer JAY RUSTON For Fourth Studio Album BLACK STAR RIDERS have demoed more than a dozen songs for their fourth studio album, which they will begin recording next month in Los Angeles. Speaking to Planet Rock… All 183 Yes Songs Ranked Worst to Best All 183 Yes Songs Ranked Worst to Best Yes have survived because they've been willing to endlessly adapt. But which experiment worked best? Continue reading… Source: HRRL Classic Rock News via ultimate Classic Rock All 183 Yes Songs Ranked Worst… BREAKING BENJAMIN Frontman Explains 'Heavier' Sound Of 'Ember' Album BREAKING BENJAMIN Frontman Explains 'Heavier' Sound Of 'Ember' Album In a brand new interview with the Rock 100.5 The KATT radio station, BREAKING BENJAMIN frontman Benjamin Burnley said that the band's latest album, "Ember", could very well be the group's… FREDDY CRICIEN Discusses MADBALL's Guitarist Situation FREDDY CRICIEN Discusses MADBALL's Guitarist Situation MADBALL vocalist Freddy Cricien has spoken out about the band's guitarist situation, more than a year after the group parted ways with longtime axeman Brian "Mitts" Daniels. At the time, the New York hardcore…
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
6,925
[ 128000, 11673, 946, 59643, 7668, 11697, 46594, 1561, 19074, 26749, 11, 47559, 426, 1539, 10483, 356, 13, 426, 19659, 198, 38501, 326, 1900, 6790, 220, 19, 11, 220, 679, 23, 6790, 220, 19, 11, 220, 679, 23, 9305, 5513, 2360, 18149, 198, 11673, 946, 59643, 7668, 11697, 46594, 1561, 19074, 26749, 11, 47559, 426, 1539, 10483, 356, 13, 426, 19659, 435, 21176, 59643, 7668, 706, 8308, 990, 389, 1202, 1317, 90350, 502, 8176, 369, 264, 76220, 220, 679, 24, 4984, 13, 578, 5149, 11, 902, 690, 3131, 1578, 387, 1903, 2561, 4669, 38544, 58436, 11, 690, 1906, 90578, 63949, 57845, 28426, 4419, 37234, 44459, 622, 3097, 432, 8721, 715, 1789, 36174, 19074, 26749, 198, 63949, 57845, 28426, 4419, 37234, 44459, 622, 3097, 432, 8721, 715, 1789, 36174, 19074 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 11673, 946, 59643, 7668, 11697, 46594, 1561, 19074, 26749, 11, 47559, 426, 1539, 10483, 356, 13, 426, 19659, 198, 38501, 326, 1900, 6790, 220, 19, 11, 220, 679, 23, 6790, 220, 19, 11, 220, 679, 23, 9305, 5513, 2360, 18149, 198, 11673, 946, 59643, 7668, 11697, 46594, 1561, 19074, 26749, 11, 47559, 426, 1539, 10483, 356, 13, 426, 19659, 435, 21176, 59643, 7668, 706, 8308, 990, 389, 1202, 1317, 90350, 502, 8176, 369, 264, 76220, 220, 679, 24, 4984, 13, 578, 5149, 11, 902, 690, 3131, 1578, 387, 1903, 2561, 4669, 38544, 58436, 11, 690, 1906, 90578, 63949, 57845, 28426, 4419, 37234, 44459, 622, 3097, 432, 8721, 715, 1789, 36174, 19074, 26749, 198, 63949, 57845, 28426, 4419, 37234, 44459, 622, 3097, 432, 8721, 715, 1789, 36174, 19074, -100 ]
Blood is made up of red and white blood cells. The red blood cells carry oxygen to the body and the white blood cells fight infection and help in the healing process by carrying platelets. The lymphatic system circulates fluid into the blood stream throughout the body. Lymph nodes aid in making the immune system stronger and fight off and destroy bacteria.
{ "redpajama_set_name": "RedPajamaC4" }
2,886
[ 128000, 52586, 374, 1903, 709, 315, 2579, 323, 4251, 6680, 7917, 13, 578, 2579, 6680, 7917, 6920, 24463, 311, 279, 2547, 323, 279, 4251, 6680, 7917, 4465, 19405, 323, 1520, 304, 279, 21730, 1920, 555, 15691, 12235, 10145, 13, 578, 43745, 780, 1887, 4319, 24031, 15962, 1139, 279, 6680, 4365, 6957, 279, 2547, 13, 445, 32800, 7954, 12576, 304, 3339, 279, 22852, 1887, 16643, 323, 4465, 1022, 323, 7066, 24032, 13, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 52586, 374, 1903, 709, 315, 2579, 323, 4251, 6680, 7917, 13, 578, 2579, 6680, 7917, 6920, 24463, 311, 279, 2547, 323, 279, 4251, 6680, 7917, 4465, 19405, 323, 1520, 304, 279, 21730, 1920, 555, 15691, 12235, 10145, 13, 578, 43745, 780, 1887, 4319, 24031, 15962, 1139, 279, 6680, 4365, 6957, 279, 2547, 13, 445, 32800, 7954, 12576, 304, 3339, 279, 22852, 1887, 16643, 323, 4465, 1022, 323, 7066, 24032, 13, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100 ]
According to Direct Selling Association (DSA), there are18.6 million people involved in direct selling in the United States in 2017. Some people join the Multi Level Marketing company as a consumer to buy the company products at a discounted price. Another group of people join the Multi Level Marketing company as a distributor to build a part-time or full-time business. Multi Level Marketing is a sales strategy that a lot of companies use nowadays. Some find it very efficient, others find it controversial. But what you will notice is that it does work very well, and if you know how to do it right, you can make money from multi level marketing business opportunity. Multi-Level Marketing (MLM) or network marketing is a system that involve selling of products or services through a network of distributors. You can be very successful if you enjoy selling and talking to people. The company that creates a MLM program is focused on encouraging existing distributors to recruit new people to distribute the products. The distributors are getting paid by recruiting new distributors and by selling the company products. There are many multi level marketing companies. Amway, Avon, Herbalife, Market America, Young Living are just a few of them. MLM is not for everyone. Those who like selling and meeting with people, will enjoy doing it and make money. Some will find it very difficult to get started and they end up selling to family, friends and relatives. What makesMulti-Level Marketing stand out for a lot of people is that it can help you earn some money on the side. If you already know people that need the product you want to promote, you get to earn a portion of that sale, which is really exciting. While it's not the ultimate way of making money, it still helps you earn a little bit on the side. But this is not a new job for you. Sure, it works OK if you want to sell some stuff on the side for other companies, but unless you are an authorized reseller for that company you will end up with some pretty small commissions. That's why Multi-Level Marketing works great as a side income system for most of us. How Does Multi Level MarketingWorks? Multi level marketing company recruits distributors also known as independence contractors, to sell their products or services to customers. At the same time, the company encourages their distributors to recruit new distributors. When you sign up with a MLM company, besides the registration fee, you will be required to purchase a starter kit which includes some company's popular products. By recruiting new distributors, you will earn a portion of the income generated by them. You will also earn a portion of the income from those distributors recruited by your distributors. Those distributors recruited by you are known as your downlines. The person who invited you to join the company is your upline. Your upline get a portion of the commission you generated. You can see by now how you can make money by joining a MLM company. Once you are a part of that program, the only thing that you can do is to start promoting. But you have to realize that promoting this is not going to be a walk in the park. It requires a lot of hard work and commitment, and you have to make people believe and understand that the Multi-Level Marketing company you are working with will actually deliver the results they expect. Doing that is not going to be easy as you may imagine. Some companies will offer you good commissions, but then again their products are very hard to sell. You really have to take your time to do your research to identify what MLM program is good for you and which one you need to avoid. Promoting Multi-Level Marketing programs is usually done by meeting and talking to people. If you want to generate sales, you have to talk to people, show them the type of value they can expect and how much will this be able to help them. You can also promote them on your blog, it will be a good option if you have an audience that already trusts you. But the problem here is to actually find the best Multi-Level Marketing that suits your needs. You don't want to go with a MLM approach that is not good for you. For most MLM company, whoever is your upline will train you how to promote the company products as well as how to recruits new distributors. Your upline will be more than happy to help you because they will earn commission from the income you generated. You will do the same to your downlines, and you will earn commission from the income they generated. Multi-Level Marketing works quite well, but you also have to understand that iworks well as long as you put hard work into it. Unlike other ways of making money, there's no guarantee here, and you have to show people the value in it. Multi-Level Marketing is very easy to join with small investment. You can earn quite a lot of money, if you put hard work into it. There are many Multi-Level Marketing companies that you can choose from. It can take a lot of time until you earn, especially if you can't find people to promote the program to. There are lots of scams in the industry. They are not MLM programs but pyramid scheme. Companies buy back unsold products with re-stocking fees. No real products or services to sell. It's safe to say that Multi-Level Marketing offers you a nice way to earn some money on the side. If you like selling and like meeting people, this is a good business for you. It is not easy to get started. it is a good idea to research the Multi-Level Marketing program before enrolling in it, just to be safe. Also, make sure that you understand their commission system! I don't like multi level marketing businesses as you have to get other people in, in order to get paid. I mean, if the product is good it is wise to promote it, but promoting a product you don't believe in to make money? No, thanks. If there are endless successful products out there, why would I commit myself to promoting a product which I think is not good? I have never participated in a multi level marketing scheme, but I am involved in affiliate marketing, with which I promote products that I really like and that I like to recommend to my customers. I agree with you. Not everyone like MLM and it is not for everybody. I wish you success in you affiliate marketing business. MLM is not an easy business to get started. It is suitable for someone who is good at recruiting people as downlines and good at selling the company products. A better way to make money online is through Affiliate Marketing. The system I'm using to make money online is Wealthy Affiliate. They offer free starter membership which includes training, support and 2 free websites and free hosting. If you are interested in making money online, you should give Wealthy Affiliate a try. It is free. This is a nice write up of what a MLM business is, Christine. I have several comments that may help put the MLM business model in perspective. MLM companies choose the MLM business model and pass the marketing/sales/training functions to an independent business owner/distributor sales force. The IBO is responsible for recruiting, training, motivating, and managing their sales team of subordinate IBOs. From my personal knowledge and experience, the successful distributors are good at leading their sales teams to sell products. Thank you for your feedback and sharing your experiences. Your topic is very clear-cut to easy to understand. Now there are MLM online, basically the system are still the same as tradition. only differ from how to promote. Nowaday they can do recruiting and promoting online without meeting up in person. They even can have meeting or discussion live or within a classroom online. So it's perfectly easy for MLM to recruit more members. All there direct line or direct senior will come to help out until their downline have recruiting at least one member. So maybe you add this point in? You seems to know the MLM business. Have you joined any MLM? It is easier and more productive these days that many people do their MLM business online. I'll add the point that I missed. Thank you! Thank you for sharing with us this great review on Multi Level Marketing.Many people are interested in earning money and it is very clear that making good choice of the program to work through is a good start. According to this post, I found Multi Level Marketing a good way to earn money when people understand well how the program works. Even if convincing people to follow them asks much effort,when people arrive at finding the downline who are active,it will be a big source of income for them. For those who are good at recruiting people as downlines and selling products, they are good for MLM business. They make good money from MLM. Thanks for this education on Multi Level Marketing Business. I thought MLM is equal to Pyramid Schemes. Now I know I'm wrong; the difference being that the formal is real and the latter is scam to rip people off of their hard earned money. I almost got involved in an MLM some time ago called NeoLife but I ended up changing my mind. There is quite a lot of money that can be generated from MLM but it is not my thing. I'm glad that you know the difference between MLM and Pyramid Schemes. For those who are good at recruiting people as downlines and good at selling the company products, they are earning good money. MLM is not for everyone. I have always confused multi level marketing programs with pyramid schemes or actually thought they were the same thing. I guess that confusion has been cleared with this post. MLM business is not an easy business. It is definitely not for everyone. If you are not good at talking and convincing people then it is not a type of business that I would encourage you to be a part of. It does take some amount of time depending on the amount of work you put in before you start earning some good money. It is a good business and can create a stream flow of passive income. I agree with you that MLM is not an easy business. To be successful, you must be good at recruiting people as your downlines and also selling the products. It takes time to build the business. Hi, I'm glad you provided this clear information about what a multi level marketing is. I know there are many of these and I was always keeping my hands off so far. I think it's fair to say that the system must be a good one if someone is able to communicate well and knows how to sell. What I heard though is that some MLM s ask to buy a quite expensive stock and don't take it back if you don't sell. Another time I heard you need to have a minimum of sales to be qualified to earn commissions. I know, this is not what I'm good at, recruiting people in the down line. I prefer to sell a product and not have to think who else could sell for me to make me more profit. I'know people doing this and are successful by now. Thank you for your comment. MLM is not for me as well. You heard it right. To get started in MLM, you have to spend money buying certain amount of products from the company. I wish you much success in selling your products. I'm not that familiar with MLM, until you mentioned Herbalife. They are pretty well known, even where I live. In the past I thought about promoting them and earn a living that way. My former boss had a wife who did sell Herbalife products, mostly to family and friends, now I think about it and she asked me to promote them as well. Unfortunately our paths went different directions before i had the chance to sell Herbalife. I got another job and my interest went away. Now I'm considering to join a MLM company. Can you tell me which products sell easily and whom not? And what kind of fee is reasonable when joining? I tried Market America as a distributor many years ago. It didn't work out for me. Now I'm just a customer buying products at a discounted price. It is hard to tell you which products sell easily. Most MLM companies has their good products. It all depends on how good the sales person is to recruit his downlines and promoting the company products. When joining MLM, most companies will require you to purchase certain amount of products to get started. As for the fee, it depends on your budget. Do some research before you join. Thank you for your comment and I wish you all the best.
{ "redpajama_set_name": "RedPajamaC4" }
7,505
[ 128000, 11439, 311, 7286, 54820, 10229, 320, 73738, 705, 1070, 527, 972, 13, 21, 3610, 1274, 6532, 304, 2167, 11486, 304, 279, 3723, 4273, 304, 220, 679, 22, 627, 8538, 1274, 5249, 279, 17896, 9580, 18729, 2883, 439, 264, 11761, 311, 3780, 279, 2883, 3956, 520, 264, 48774, 3430, 627, 14364, 1912, 315, 1274, 5249, 279, 17896, 9580, 18729, 2883, 439, 264, 44168, 311, 1977, 264, 961, 7394, 477, 2539, 7394, 2626, 627, 20981, 9580, 18729, 374, 264, 6763, 8446, 430, 264, 2763, 315, 5220, 1005, 46877, 13, 4427, 1505, 433, 1633, 11297, 11, 3885, 1505, 433, 20733, 13, 2030, 1148, 499, 690, 5406, 374, 430, 433, 1587, 990, 1633, 1664, 11, 323, 422, 499, 1440, 1268, 311, 656, 433, 1314, 11, 499, 649, 1304, 3300, 505, 7447 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 11439, 311, 7286, 54820, 10229, 320, 73738, 705, 1070, 527, 972, 13, 21, 3610, 1274, 6532, 304, 2167, 11486, 304, 279, 3723, 4273, 304, 220, 679, 22, 627, 8538, 1274, 5249, 279, 17896, 9580, 18729, 2883, 439, 264, 11761, 311, 3780, 279, 2883, 3956, 520, 264, 48774, 3430, 627, 14364, 1912, 315, 1274, 5249, 279, 17896, 9580, 18729, 2883, 439, 264, 44168, 311, 1977, 264, 961, 7394, 477, 2539, 7394, 2626, 627, 20981, 9580, 18729, 374, 264, 6763, 8446, 430, 264, 2763, 315, 5220, 1005, 46877, 13, 4427, 1505, 433, 1633, 11297, 11, 3885, 1505, 433, 20733, 13, 2030, 1148, 499, 690, 5406, 374, 430, 433, 1587, 990, 1633, 1664, 11, 323, 422, 499, 1440, 1268, 311, 656, 433, 1314, 11, 499, 649, 1304, 3300, 505, 7447, -100 ]
Rankings For 2022 NJ Public-Private Schools: How Did Yours Do? Harry Hurley Published: December 27, 2021 Egg Harbor Township High School - Photo: Google Map Niche.com has finished evaluating the data and have compiled its latest rankings for 2022 of the best Kindergarten through 12th grade public and private schools in America (click here for the methodology). We'll give you a look at a few local examples below, however, you can search the entire state of New Jersey and all of America with the links provided. Here are the results for K-12 public schools in Atlantic County, followed by the top 3 best private high schools in Atlantic County. BEST K-12 PUBLIC SCHOOLS IN ATLANTIC COUNTY, NEW JERSEY Egg Harbor Township Public Schools Greater Egg Harbor Regional School District Hammonton Public Schools District Each of these top 3 rated districts received an A Grade from Niche.com Here is a link to the entire list: https://www.niche.com/k12/search/best-school-districts/c/atlantic-county-nj/ You can easily search all counties throughout the state of New Jersey and nationwide from the link above. BEST PRIVATE HIGH SCHOOLS IN ATLANTIC COUNTY, NEW JERSEY St. Augustine Preparatory School Holy Spirit High School Atlantic Christian High School St. Augustine Prep High School - Facebook Each of these top 3 rated private high schools received an A Grade from Niche.com https://www.niche.com/k12/search/best-private-high-schools/c/atlantic-county-nj/ The link above will give you the opportunity to do a much wider search for any school in America. One thing that sets Niche's rankings apart is we consider the entire student experience, including what students do after high school, and the college search process — specifically college entrance exams — were greatly impacted during the last year, Niche says. It is important to note that as a result of this change, they have updated their methodology to de-emphasize the importance of SAT and ACT scores. "The weight for any factor that considers standardized test scores has been reduced by a third for the 2022 rankings as colleges still require test scores, but the future of standardized testing remains unclear," according to the Niche.com I don't submit this to you as the absolute end all, be all … oracle, gold standard of school rating systems. But, it is one such measure. Take it all with a grain of salt. SOURCE: Niche.com Top 20 High Schools With The Best Teachers At The Jersey Shore 2021-2022 9 Great NJ Schools To Win The Blue Ribbon Award Source: Rankings For 2022 NJ Public-Private Schools: How Did Yours Do? Filed Under: 2022 rankings, best private schools, best public schools, Niche.com Categories: National News, New Jersey News, News, South Jersey News
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
8,712
[ 128000, 23366, 826, 1789, 220, 2366, 17, 27816, 3142, 12, 17205, 31483, 25, 2650, 14910, 98018, 3234, 5380, 42398, 21670, 3258, 30114, 25, 6790, 220, 1544, 11, 220, 2366, 16, 198, 36, 14736, 40282, 53767, 5234, 6150, 482, 11064, 25, 5195, 5135, 198, 45, 12333, 916, 706, 8220, 38663, 279, 828, 323, 617, 20276, 1202, 5652, 33407, 369, 220, 2366, 17, 315, 279, 1888, 17262, 48672, 1555, 220, 717, 339, 12239, 586, 323, 879, 8853, 304, 5270, 320, 3763, 1618, 369, 279, 38152, 4390, 1687, 3358, 3041, 499, 264, 1427, 520, 264, 2478, 2254, 10507, 3770, 11, 4869, 11, 499, 649, 2778, 279, 4553, 1614, 315, 1561, 16228, 323, 682, 315, 5270, 449, 279, 7902, 3984, 627, 8586, 527, 279, 3135, 369, 735, 12, 717, 586, 8853, 304 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 23366, 826, 1789, 220, 2366, 17, 27816, 3142, 12, 17205, 31483, 25, 2650, 14910, 98018, 3234, 5380, 42398, 21670, 3258, 30114, 25, 6790, 220, 1544, 11, 220, 2366, 16, 198, 36, 14736, 40282, 53767, 5234, 6150, 482, 11064, 25, 5195, 5135, 198, 45, 12333, 916, 706, 8220, 38663, 279, 828, 323, 617, 20276, 1202, 5652, 33407, 369, 220, 2366, 17, 315, 279, 1888, 17262, 48672, 1555, 220, 717, 339, 12239, 586, 323, 879, 8853, 304, 5270, 320, 3763, 1618, 369, 279, 38152, 4390, 1687, 3358, 3041, 499, 264, 1427, 520, 264, 2478, 2254, 10507, 3770, 11, 4869, 11, 499, 649, 2778, 279, 4553, 1614, 315, 1561, 16228, 323, 682, 315, 5270, 449, 279, 7902, 3984, 627, 8586, 527, 279, 3135, 369, 735, 12, 717, 586, 8853, 304, -100 ]
Apr 4, 2017 . I'm working on beneficiation of barium sulfate from low grade barite ore . Section 29 2 of the old 'bible' SME Mineral Processing Handbook,. Aug 11, 2017 . Barite mineral processing methods. According to the ore properties, mine scale and use of different, there are gravity separation and flotation. Baryte or barite (BaSO4) is a mineral consisting of barium sulfate. The baryte group consists of . which includes crude baryte (run of mine) and the products of simple beneficiation methods, such as washing, jigging, heavy media separation,. Figure 1.1.2 The distribution of major active and inactive barytes mines and beneficiation from an operation such as Cavendish Mill (Glebe Mines Ltd.). This paper examine the optimization of a beneficiation plant for recovering . part of a mining complex in Sardinia, consists of a jig section integrated with. subject to the feasibilty of applying tailored low cost mining methods to each orebody . versatile beneficiation process suitable for each kind cf ore, from easily. Barite is a mineral composed of barium sulfate (BaSO4) and is a highly sought after .. Flotation / Mineral Beneficiation; Froth Modification; Water Clarification. USGS Minerals Information: Barite USGS Mineral Resources . Feb 8, 2018 . Barite, a name that was derived from the Greek word "barus" (heavy), . crude barite (run of mine) and the products of simple beneficiation. Sustainable Development for Mining of Mineral and Fossil Energy Resources. .. FARAGHALY, M.G., 2002, Beneficiation of El Gedida Barite Iron Ore, Journal of. includes limonite, siderite, hematite, barite and some other mineral bearers of . The development of a technological process for beneficiation of barite raw. Nov 13, 2017 . Barite beneficiation methods depend on characteristics of barite and gangue phases (mineral impurity, specific gravity and magnetic. Any discussion of barite mining is virtually. impossible . the many other variables, such as beneficiation,. The Corporation is having mining leases for ball clay in Dwarakatirumala . Trimex Industires Ltd., Chennai for establishment of Barytes Beneficiation plant in. The Barite Mineral Processing that HOT Mining offered can make our customer satisfied. The processes we can offer are gravity separation magnetic separation. barite mining beneficiation . Equipment barite beneficiation Products. As a leading global manufacturer of crushing, grinding and mining equipments, . Dry Tribo electrostatic Beneficiation of Mineral Sands . minerals including calcite/ quartz, talc/ magnesite, barite/ quartz, and aluminosilicates/ carbon in fly ash. first marketable product, which includes crude barite (run of mine) and the products of simple beneficiation methods, such as washing, jigging, heavy media. Barite (BaSO4) is the most common mineral of Barium. It occurs as a . (run of mine) and the products of simple beneficiation methods, such as washing, jigging,.
{ "redpajama_set_name": "RedPajamaC4" }
7,600
[ 128000, 21383, 220, 19, 11, 220, 679, 22, 662, 358, 2846, 3318, 389, 79319, 315, 3703, 2411, 89418, 505, 3428, 12239, 3703, 635, 16536, 662, 11360, 220, 1682, 220, 17, 315, 279, 2362, 364, 65, 1260, 6, 79867, 50416, 29225, 49924, 11, 627, 22630, 220, 806, 11, 220, 679, 22, 662, 4821, 635, 25107, 8863, 5528, 13, 10771, 311, 279, 16536, 6012, 11, 10705, 5569, 323, 1005, 315, 2204, 11, 1070, 527, 24128, 25768, 323, 68297, 627, 33, 661, 668, 477, 3703, 635, 320, 59927, 14202, 19, 8, 374, 264, 25107, 31706, 315, 3703, 2411, 89418, 13, 578, 293, 661, 668, 1912, 17610, 315, 662, 902, 5764, 35750, 293, 661, 668, 320, 6236, 315, 10705, 8, 323, 279, 3956, 315, 4382, 79319, 5528, 11, 1778, 439, 28786, 11 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 21383, 220, 19, 11, 220, 679, 22, 662, 358, 2846, 3318, 389, 79319, 315, 3703, 2411, 89418, 505, 3428, 12239, 3703, 635, 16536, 662, 11360, 220, 1682, 220, 17, 315, 279, 2362, 364, 65, 1260, 6, 79867, 50416, 29225, 49924, 11, 627, 22630, 220, 806, 11, 220, 679, 22, 662, 4821, 635, 25107, 8863, 5528, 13, 10771, 311, 279, 16536, 6012, 11, 10705, 5569, 323, 1005, 315, 2204, 11, 1070, 527, 24128, 25768, 323, 68297, 627, 33, 661, 668, 477, 3703, 635, 320, 59927, 14202, 19, 8, 374, 264, 25107, 31706, 315, 3703, 2411, 89418, 13, 578, 293, 661, 668, 1912, 17610, 315, 662, 902, 5764, 35750, 293, 661, 668, 320, 6236, 315, 10705, 8, 323, 279, 3956, 315, 4382, 79319, 5528, 11, 1778, 439, 28786, 11, -100 ]
Economic & Technological Development Zone, Guangzhou – April 13, 2018 – Longse, an IoT solution provider, with video as the core, had a successful exhibition at ISC WEST 2018, held in USA. Thanks for coming. Experience on-site and solutions were impressing during the exhibition. Take a look at it. Experience in testing the cameras with the screen can make you enjoy, knowing what kind of solutions you actually need from it. 8MP HD Camera, AI and the other kinds of products were highlighted at the booth, showing the crystal clear pictures on the screen seeing every single detail. In addition, capturing the targets moving in the area through AI, the screen will show up the analysis of the identification. "I do enjoy at AI here, and I do believe it would be a great tech combined with the camera, using in different places" said the customer. Therefore, AI improves the efficiency in the fields like finance, security, transportation, education and such, with its features, bringing nice experience. Embbed with chips and sensors, the cameras can be applied to different scenes, like office, parking lot, construction site, hotel, house and such, meeting the needs. Problems occured like low picture quality, low angle, non-waterproof case etc,. would be solved by providing the better solutions with higher quality towards those situations which will not happen again. Members from the team dominate a significant position at the booth. Thus, teamwork in it plays a role, making service better. Becaue every single one of them can make tremendous potentials and efforts and will stll keep providing customers with the best they can in the future. Thanks again for attending ISC WEST 2018. We'll see you next time!
{ "redpajama_set_name": "RedPajamaC4" }
1,746
[ 128000, 36, 32107, 612, 7146, 5848, 11050, 22967, 11, 65537, 52865, 1389, 5936, 220, 1032, 11, 220, 679, 23, 1389, 5843, 325, 11, 459, 50180, 6425, 9287, 11, 449, 2835, 439, 279, 6332, 11, 1047, 264, 6992, 28099, 520, 97281, 66190, 220, 679, 23, 11, 5762, 304, 7427, 13, 11361, 369, 5108, 13, 21460, 389, 29654, 323, 10105, 1051, 10098, 287, 2391, 279, 28099, 13, 12040, 264, 1427, 520, 433, 627, 35215, 304, 7649, 279, 18632, 449, 279, 4264, 649, 1304, 499, 4774, 11, 14392, 1148, 3169, 315, 10105, 499, 3604, 1205, 505, 433, 13, 220, 23, 5901, 12445, 14669, 11, 15592, 323, 279, 1023, 13124, 315, 3956, 1051, 27463, 520, 279, 36506, 11, 9204, 279, 26110, 2867, 9364, 389, 279, 4264, 9298, 1475, 3254, 7872, 13, 763 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 36, 32107, 612, 7146, 5848, 11050, 22967, 11, 65537, 52865, 1389, 5936, 220, 1032, 11, 220, 679, 23, 1389, 5843, 325, 11, 459, 50180, 6425, 9287, 11, 449, 2835, 439, 279, 6332, 11, 1047, 264, 6992, 28099, 520, 97281, 66190, 220, 679, 23, 11, 5762, 304, 7427, 13, 11361, 369, 5108, 13, 21460, 389, 29654, 323, 10105, 1051, 10098, 287, 2391, 279, 28099, 13, 12040, 264, 1427, 520, 433, 627, 35215, 304, 7649, 279, 18632, 449, 279, 4264, 649, 1304, 499, 4774, 11, 14392, 1148, 3169, 315, 10105, 499, 3604, 1205, 505, 433, 13, 220, 23, 5901, 12445, 14669, 11, 15592, 323, 279, 1023, 13124, 315, 3956, 1051, 27463, 520, 279, 36506, 11, 9204, 279, 26110, 2867, 9364, 389, 279, 4264, 9298, 1475, 3254, 7872, 13, 763, -100 ]
Imagine electronic play in 2010. Do you envision an interactive room where you can live out fantasy scenarios, like the "Star Trek" Holodeck? Do you embody an avatar in cyberspace, as in William Gibson's Neuromancer? Or perhaps you see yourself as one of the dancers at the end of time, as in Michael Moorcock's seminal novels, in which technology is transparently weaved into every aspect of their world, making them omnipotent (though easily bored), able to customize the entire world to their specifications. We're not quite ready for any of these scenarios, but one thing is sure: Gaming will continue to evolve from a lonely, you-against-the-machine activity to a more social and community-driven pastime. And this pastime is well positioned to drive a strong economic sector. Consumers spent $6.9 billion on gaming in 2002, according to the International Digital Software Association (IDSA), making it a bigger industry than movies. The forecast for next year is even more optimistic. Gaming is becoming an increasingly social activity, with IDSA results finding nearly 60 percent of gamers playing with friends, 33 percent playing with siblings, and about 25 percent playing with spouses or parents. LAN parties and massively multiplayer online games are also on the upswing. Alan Yu, director of the annual Game Developers Conference, is enviably positioned to witness the newest and coolest in game technology. As he sees it, the main impediments to multiplayer gaming have been technical: poor connectivity and speed. As those things rapidly improve, people can once again play together. The PC was the first platform to allow networked multiplay, and now the Microsoft Xbox and Sony PlayStation 2 game consoles have joined the fun. Both Microsoft and Sony are exploring new ways to make gaming more fun and interactive, whether people play together over the Internet or on a single computer. At Sony, researchers are toying with technology to help gamers bypass joysticks and make their gestures serve as game commands. This fall, the Sony EyeToy camera—the first product to emerge from this research—will ship for the PlayStation 2 along with EyeToy Play!, a collection of minigames that mix live video of players and computer graphics. "EyeToy Play! is intended as a very social, interactive experience that's especially fun at parties," says Richard Marks, manager of special projects at Sony Computer Entertainment America Research and Development. EyeToy can also draw in very young and old gamers for whom dexterity is a problem. Marks's lab is exploring other exciting possibilities for incorporating cameras into games. "We hope to enable people in their homes to participate in the kinds of special effects previously seen only in movies," he says. To this end, he plans to demonstrate later this year how a 3-D camera might be used for interactive entertainment. "The camera outputs not only color but distance for every pixel, allowing us to interpret the image more reliably and to composite video and graphics more realistically." Marks believes this will usher in an entirely new kind of computer entertainment. Meanwhile, the Microsoft Advanced Technology Group, which helps game developers figure out better ways to make games for the Xbox, is exploring other promising game technologies: voice chat and voice command. Voice technology is already built into Xbox Live, "making it much easier to play on teams," says group director Laura Fryer. Voice chat broadcast through TV speakers is already supported in Clone Wars and other Xbox Live games. Also under development is voice-based command and control of game characters' actions. As online play becomes more accessible, Fryer foresees global communities forming around games, as well as designers providing ways for players to create their own experiences in more fluid, expressive game environments. "Game developers have figured out the hardware and are delivering on the promise of it," says Yu. That promise will materialize in future games that are not only visually stunning but also highly interactive and collaborative. We can't wait.
{ "redpajama_set_name": "RedPajamaC4" }
7,630
[ 128000, 52157, 14683, 1514, 304, 220, 679, 15, 13, 3234, 499, 48146, 459, 21416, 3130, 1405, 499, 649, 3974, 704, 18884, 26350, 11, 1093, 279, 330, 12988, 31571, 1, 16071, 536, 377, 30, 3234, 499, 81658, 459, 21359, 304, 9693, 1941, 1330, 11, 439, 304, 12656, 44522, 596, 45950, 442, 11967, 30, 2582, 8530, 499, 1518, 6261, 439, 832, 315, 279, 61583, 520, 279, 842, 315, 892, 11, 439, 304, 8096, 84548, 38253, 596, 90773, 32963, 11, 304, 902, 5557, 374, 18300, 398, 584, 4234, 1139, 1475, 13189, 315, 872, 1917, 11, 3339, 1124, 95529, 64632, 320, 4636, 6847, 34386, 705, 3025, 311, 32187, 279, 4553, 1917, 311, 872, 29803, 627, 1687, 2351, 539, 5115, 5644, 369, 904, 315, 1521, 26350, 11, 719, 832, 3245, 374, 2771, 25 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 52157, 14683, 1514, 304, 220, 679, 15, 13, 3234, 499, 48146, 459, 21416, 3130, 1405, 499, 649, 3974, 704, 18884, 26350, 11, 1093, 279, 330, 12988, 31571, 1, 16071, 536, 377, 30, 3234, 499, 81658, 459, 21359, 304, 9693, 1941, 1330, 11, 439, 304, 12656, 44522, 596, 45950, 442, 11967, 30, 2582, 8530, 499, 1518, 6261, 439, 832, 315, 279, 61583, 520, 279, 842, 315, 892, 11, 439, 304, 8096, 84548, 38253, 596, 90773, 32963, 11, 304, 902, 5557, 374, 18300, 398, 584, 4234, 1139, 1475, 13189, 315, 872, 1917, 11, 3339, 1124, 95529, 64632, 320, 4636, 6847, 34386, 705, 3025, 311, 32187, 279, 4553, 1917, 311, 872, 29803, 627, 1687, 2351, 539, 5115, 5644, 369, 904, 315, 1521, 26350, 11, 719, 832, 3245, 374, 2771, 25, -100 ]
Posted on August 7, 2018 - 1:55pm. Each morning is a good time to remind your girlfriend how much she means to you and how well you bear her thoughts with you. A simple message from you could go a long way in expressing how much you lover or miss her and also give her the kick for the day, especially when you have some cute paragraphs for her to wake up to. Posted on August 6, 2018 - 1:11pm. Every morning rises from dawn with a sense of freshness, newness and coolness. This time is one of the best of times to thrill your loving partner with soothing words of love, warmth and affection. Take out sometime early in the morning to send your sweetheart a message, expressing your love and true feelings. Posted on August 2, 2018 - 12:02pm. The most important part of our personality is our speech, texts, talks because looks can only get people's attraction but what we say can win their hearts forever. Pick any of these and let her (your girlfriend) feel loved early in the morning! Posted on July 19, 2018 - 2:32pm. A man who loves you will most definitely want to wake up into the euphoria of a good morning sweet text from you. Whilst, the lady who loves him will surely make that happen. Posted on July 9, 2018 - 3:15pm. A good wife is like a diamond, nothing in this world can replace a good wife. A good wife makes the best mother. A good wife is very rare, but when you find one, keep her and make her stay happy for the rest of her life because a good wife is not easy to come by. You've got one? These messages are best for her. Posted on July 2, 2018 - 1:42pm. Of course, you won't leave him to wake up from the wrong side of the bed before you resolve to make him smile. Bet, you're ready to put a smile on his face for the simple fact that he's found favour in your lovely eyes. Here are precise, 110 text messages that hold the magic wand to transforming the most unpleasant frown to the prettiest smile in the morning. Posted on June 18, 2018 - 12:11am. Love is complicated although beautiful, pleasurable yet tedious. Nevertheless, it can't be underestimated. Love is in the centre of every human being. We ultimately want to be loved and to show love. Posted on June 13, 2018 - 3:29pm. An amazing way to put a beautiful smile on the face of those you love from a thousand miles is sending them a lovely good morning message. Do you want to put a cute smile on the face of your boyfriend, girlfriend or loved ones every morning?
{ "redpajama_set_name": "RedPajamaC4" }
6,686
[ 128000, 17827, 389, 6287, 220, 22, 11, 220, 679, 23, 482, 220, 16, 25, 2131, 5298, 627, 4959, 6693, 374, 264, 1695, 892, 311, 24928, 701, 23601, 1268, 1790, 1364, 3445, 311, 499, 323, 1268, 1664, 499, 11984, 1077, 11555, 449, 499, 627, 32, 4382, 1984, 505, 499, 1436, 733, 264, 1317, 1648, 304, 37810, 1268, 1790, 499, 31657, 477, 3194, 1077, 323, 1101, 3041, 1077, 279, 10536, 369, 279, 1938, 11, 5423, 994, 499, 617, 1063, 19369, 43743, 369, 1077, 311, 15508, 709, 311, 627, 17827, 389, 6287, 220, 21, 11, 220, 679, 23, 482, 220, 16, 25, 806, 5298, 627, 11769, 6693, 38268, 505, 39493, 449, 264, 5647, 315, 99316, 11, 502, 2136, 323, 7155, 2136, 13, 1115, 892, 374, 832, 315, 279, 1888, 315, 3115 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 17827, 389, 6287, 220, 22, 11, 220, 679, 23, 482, 220, 16, 25, 2131, 5298, 627, 4959, 6693, 374, 264, 1695, 892, 311, 24928, 701, 23601, 1268, 1790, 1364, 3445, 311, 499, 323, 1268, 1664, 499, 11984, 1077, 11555, 449, 499, 627, 32, 4382, 1984, 505, 499, 1436, 733, 264, 1317, 1648, 304, 37810, 1268, 1790, 499, 31657, 477, 3194, 1077, 323, 1101, 3041, 1077, 279, 10536, 369, 279, 1938, 11, 5423, 994, 499, 617, 1063, 19369, 43743, 369, 1077, 311, 15508, 709, 311, 627, 17827, 389, 6287, 220, 21, 11, 220, 679, 23, 482, 220, 16, 25, 806, 5298, 627, 11769, 6693, 38268, 505, 39493, 449, 264, 5647, 315, 99316, 11, 502, 2136, 323, 7155, 2136, 13, 1115, 892, 374, 832, 315, 279, 1888, 315, 3115, -100 ]
Downton Abbey creator Julien Fellowes has revealed plans for a prequel, to explain how the Earl and Countess of Grantham first met. According to reports, the Fellowes has already begun working on the spin-off story, which charts the romance between Lord Grantham and his American wife. Speaking at a Bafta Screenwriting Lecture, the Downton Abbey creator said: 'I do actually have an idea of doing a prequel of the courtship of Robert and Cora, when all those American heiresses were arriving in London – the Buccaneers, as they were called. 'They had a slightly troubled courtship, because she was in love with him before they married, as we know, and he married her entirely for her money. But although Fellowes has already started penning the Downton Abbey follow up, we won't be seeing it on our screens just yet. Instead he said it will probably begin after Downton Abbey ends. 'I don't think you can continue a narrative in more than one area at once,' he explained.
{ "redpajama_set_name": "RedPajamaC4" }
1,575
[ 128000, 35, 13197, 263, 65555, 20514, 88742, 37946, 288, 706, 10675, 6787, 369, 264, 864, 43014, 11, 311, 10552, 1268, 279, 48510, 323, 4605, 434, 315, 27622, 339, 309, 1176, 2322, 627, 11439, 311, 6821, 11, 279, 37946, 288, 706, 2736, 22088, 3318, 389, 279, 12903, 12744, 3446, 11, 902, 27223, 279, 30363, 1990, 10425, 27622, 339, 309, 323, 813, 3778, 7555, 627, 33117, 520, 264, 14659, 728, 64, 14275, 26372, 68072, 11, 279, 423, 13197, 263, 65555, 20514, 1071, 25, 364, 40, 656, 3604, 617, 459, 4623, 315, 3815, 264, 864, 43014, 315, 279, 5590, 5383, 315, 8563, 323, 4563, 64, 11, 994, 682, 1884, 3778, 65589, 44357, 1051, 33111, 304, 7295, 1389, 279, 93168, 11, 439, 814, 1051, 2663, 627, 17773, 36661, 1047, 264, 10284, 42132 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 35, 13197, 263, 65555, 20514, 88742, 37946, 288, 706, 10675, 6787, 369, 264, 864, 43014, 11, 311, 10552, 1268, 279, 48510, 323, 4605, 434, 315, 27622, 339, 309, 1176, 2322, 627, 11439, 311, 6821, 11, 279, 37946, 288, 706, 2736, 22088, 3318, 389, 279, 12903, 12744, 3446, 11, 902, 27223, 279, 30363, 1990, 10425, 27622, 339, 309, 323, 813, 3778, 7555, 627, 33117, 520, 264, 14659, 728, 64, 14275, 26372, 68072, 11, 279, 423, 13197, 263, 65555, 20514, 1071, 25, 364, 40, 656, 3604, 617, 459, 4623, 315, 3815, 264, 864, 43014, 315, 279, 5590, 5383, 315, 8563, 323, 4563, 64, 11, 994, 682, 1884, 3778, 65589, 44357, 1051, 33111, 304, 7295, 1389, 279, 93168, 11, 439, 814, 1051, 2663, 627, 17773, 36661, 1047, 264, 10284, 42132, -100 ]
Iron Xmas LED Light Up christmas lights bottle light, size 15.5*12.5*35cm, color and size also can be customized. You can contact us if you have and good idea. Iron Santa Claus Christmas LED Light Up christmas lights, size 24*4.5*51.5cm, color and size also can be customized. You can contact us if you have and good idea. Iron snow man Christmas LED Light Up christmas lights, size 32*4.5*50cm, color and size also can be customized. You can contact us if you have and good idea. Iron Wall Decorations Christmas LED Light Up christmas lights, size 37*4.5*40.5cm, color and size also can be customized. You can contact us if you have and good idea. Iron Decorations Christmas LED Light Up christmas lights, size 28*4.5*30cm, color and size also can be customized. You can contact us if you have and good idea. Iron Wall Decorations Christmas squirrel LED Light Up christmas lights , size 31.5*4.5*30cm, color and size also can be customized. You can contact us if you have and good idea. Iron arrows Wall Decorations Christmas squirrel LED Light Up christmas ights , size 23.5*4.5*50cm, color and size also can be customized. You can contact us if you have and good idea.
{ "redpajama_set_name": "RedPajamaC4" }
483
[ 128000, 47493, 1630, 7044, 13414, 8828, 3216, 54302, 13001, 16893, 3177, 11, 1404, 220, 868, 13, 20, 9, 717, 13, 20, 9, 1758, 6358, 11, 1933, 323, 1404, 1101, 649, 387, 32789, 13, 1472, 649, 3729, 603, 422, 499, 617, 323, 1695, 4623, 627, 47493, 16376, 68119, 10280, 13414, 8828, 3216, 54302, 13001, 11, 1404, 220, 1187, 9, 19, 13, 20, 9, 3971, 13, 20, 6358, 11, 1933, 323, 1404, 1101, 649, 387, 32789, 13, 1472, 649, 3729, 603, 422, 499, 617, 323, 1695, 4623, 627, 47493, 12056, 893, 10280, 13414, 8828, 3216, 54302, 13001, 11, 1404, 220, 843, 9, 19, 13, 20, 9, 1135, 6358, 11, 1933, 323, 1404, 1101, 649, 387, 32789, 13, 1472, 649, 3729, 603, 422, 499, 617, 323, 1695, 4623, 627, 47493, 9935 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 47493, 1630, 7044, 13414, 8828, 3216, 54302, 13001, 16893, 3177, 11, 1404, 220, 868, 13, 20, 9, 717, 13, 20, 9, 1758, 6358, 11, 1933, 323, 1404, 1101, 649, 387, 32789, 13, 1472, 649, 3729, 603, 422, 499, 617, 323, 1695, 4623, 627, 47493, 16376, 68119, 10280, 13414, 8828, 3216, 54302, 13001, 11, 1404, 220, 1187, 9, 19, 13, 20, 9, 3971, 13, 20, 6358, 11, 1933, 323, 1404, 1101, 649, 387, 32789, 13, 1472, 649, 3729, 603, 422, 499, 617, 323, 1695, 4623, 627, 47493, 12056, 893, 10280, 13414, 8828, 3216, 54302, 13001, 11, 1404, 220, 843, 9, 19, 13, 20, 9, 1135, 6358, 11, 1933, 323, 1404, 1101, 649, 387, 32789, 13, 1472, 649, 3729, 603, 422, 499, 617, 323, 1695, 4623, 627, 47493, 9935, -100 ]
Located within 1.3 km of Metropolitan Museum of Art and 2.4 km of Strawberry Fields in New York Beautiful NYC Brownstone offers accommodation with free WiFi and seating area. All of the air-conditioned units feature a shared bathroom living room flat-screen TV and fully-equipped kitchen. An oven and microwave are also available as well as a coffee machine. Central Park is 2.6 km from the apartment while Carnegie Hall is 3.1 km from the property. The nearest airport is LaGuardia Airport 6 km from the property.
{ "redpajama_set_name": "RedPajamaC4" }
3,879
[ 128000, 48852, 2949, 220, 16, 13, 18, 13437, 315, 45878, 16730, 315, 5277, 323, 220, 17, 13, 19, 13437, 315, 89077, 25599, 304, 1561, 4356, 20055, 34385, 10690, 11046, 6209, 28377, 449, 1949, 34407, 323, 38399, 3158, 627, 2460, 315, 279, 3805, 59105, 291, 8316, 4668, 264, 6222, 15197, 5496, 3130, 10269, 30360, 6007, 323, 7373, 88202, 9979, 13, 1556, 24276, 323, 42374, 527, 1101, 2561, 439, 1664, 439, 264, 11033, 5780, 627, 44503, 5657, 374, 220, 17, 13, 21, 13437, 505, 279, 13455, 1418, 64373, 11166, 374, 220, 18, 13, 16, 13437, 505, 279, 3424, 13, 578, 24379, 17149, 374, 5034, 21471, 689, 21348, 220, 21, 13437, 505, 279, 3424, 13, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 48852, 2949, 220, 16, 13, 18, 13437, 315, 45878, 16730, 315, 5277, 323, 220, 17, 13, 19, 13437, 315, 89077, 25599, 304, 1561, 4356, 20055, 34385, 10690, 11046, 6209, 28377, 449, 1949, 34407, 323, 38399, 3158, 627, 2460, 315, 279, 3805, 59105, 291, 8316, 4668, 264, 6222, 15197, 5496, 3130, 10269, 30360, 6007, 323, 7373, 88202, 9979, 13, 1556, 24276, 323, 42374, 527, 1101, 2561, 439, 1664, 439, 264, 11033, 5780, 627, 44503, 5657, 374, 220, 17, 13, 21, 13437, 505, 279, 13455, 1418, 64373, 11166, 374, 220, 18, 13, 16, 13437, 505, 279, 3424, 13, 578, 24379, 17149, 374, 5034, 21471, 689, 21348, 220, 21, 13437, 505, 279, 3424, 13, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100 ]
Viagra vs high blood pressure prednisone dosage for adults with back pain viagra vs soft tabs aspirin drug label. Influence of nonsteroidal anti-inflammatory drugs on the antiplatelet effects of aspirin in rats prednisone reviews for acne. Cialis vs viagra cost comparison prednisone for cats with kidney disease prednisone dosing for copd aspirin drug ppt Viagra online prices. Prednisone for cats arthritis is prednisone good for upper back pain prednisone dosage for babies prednisone for asthma while pregnant. What major class of drug compounds does aspirin belong to prednisone dosage for rash viagra vs cialis effectiveness aspirin drug indications. Aspirin drug classifications drug interactions aspirin and tramadol aspirin after drug eluting stent drug food interactions of aspirin probenecid aspirin drug interactions. Viagra 25mg vs 50mg oral prednisone for joint pain prednisone dose pack for asthma prednisone longevity for cancer in dogs europe meds online buy viagra professional. Cost viagra vs levitra aspirin new cardiovascular uses for an old drug aspirin drug effects buy viagra professional uk. 60 mg prednisone for bronchitis long term low dose prednisone for asthma aspirin drug study nursing responsibilities brand viagra vs generic viagra price vs cialis. Dosage of prednisone for asthma attack viagra vs cialis men's health high dose prednisone for hearing loss viagra 25mg vs 50mg vs 100mg drug to drug interactions with aspirin. Drug interactions with aspirin drug eluting stent aspirin clopidogrel simvastatin drug interactions aspirin. Prednisone dose for cats with ibd 10 mg prednisone for asthma 100mg viagra vs 20mg levitra viagra vs cialis effects. Prednisone taper dosing for bronchitis oral prednisone for poison ivy or oak viagra 50 mg vs 100mg aspirin dose after drug-eluting stent. Drugstore delivery to uk liquid prednisone dosage for cats. Online pharmacy for sale uk voltaren medicine for arthritis histac 150 ranitidine tablets bp 150 mg drug interaction wellbutrin effexor. Nicotinell tabletten nebenwirkungen can voltaren gel be used for headaches ranitidine tablets usp 300 mg coupons for voltaren gel. Voltaren injection for lower back pain viagra online price viagra online pharmacy india voltaren gel used for back pain bactrim generic uses. Cheap viagra online pro buy viagra cialis online uk can voltaren gel be used for hip pain viagra buy online pakistan buy viagra online reddit. Viagra pills for sale online best generic viagra online reviews buy generic bactrim online viagra pfizer buy online. Viagra online indian pharmacy where to buy generic viagra online in canada voltaren gel for spinal arthritis ranitidine tablets purpose ranitidine hcl tablets. Voltaren gel for headaches can voltaren gel be used for neck pain generic viagra soft online what is ranitidine tablets 150 mg for is voltaren good for arthritis. Can you use voltaren gel for neck pain price for voltaren 1 gel generic drug name for bactrim ranitidine tablets where can i buy real viagra online yahoo answers. Drug interactions wellbutrin and zyrtec buy viagra online next day delivery ranitidine hydrochloride tablets i.p 150 mg ranitidine hydrochloride tablets formulation. Buy real viagra online generic bactrim ingredients buy viagra online shop where to buy genuine viagra online. Evista.com coupon viagra tablet buy online ranitidine tablets for horses nicotinell mint suge tablet 1mg where to buy real viagra online uk drug interactions wellbutrin flexeril. Ranitidine hydrochloride tablets eli lilly coupons for evista voltaren gel good for back pain wellbutrin xl drug class. Voltaren for arthritis ranitidine genrx tablets voltaren 50mg dosage for back pain ranitidine hydrochloride tablets 150 mg uses. Ranitidine tablets 150 mg dosage voltaren 25 mg for fever cost for voltaren wellbutrin interactions drugs.com. Buy natural viagra online viagra professional price $2.05 generic bactrim and birth control tips for buying viagra online buy viagra jelly online uk bactrim generic price. Where to buy viagra online from canada tablet ranitidine 150 mg is voltaren gel safe for back pain wellbutrin class of drug. Wellbutrin benadryl drug interactions voltaren for joint pain buy online viagra canada price for voltaren price for voltaren gel 1. Buy viagra online with a prescription voltaren gel for knee arthritis ranitidine tablets c-section is wellbutrin an maoi drug viagra cheap online evista coupons rebates. Generic bactrim online evista free trial coupon discount coupon for voltaren gel voltaren for si joint pain. Voltaren suppository for babies dosage viagra buy online india 5 htp drug interactions wellbutrin where can i buy viagra online uk yahoo answers. Tamoxifen vs arimidex cost dipyridamole dosage for stress test buy nizoral at cvs Viagra 30 Pills 50mg $55 - $1.83 Per pill. Viagra dose 75 mg tamoxifen 10mg vs 20mg viagra coupon 2012 buy nizoral shampoo india nizoral cream buy uk american gold viagra 380 mg buy nizoral cream boots. Buy nizoral boots viagra cialis soft tabs taking viagra 25mg dipyridamole dose for stroke cialis soft tabs kaufen viagra dosage options. Viagra 100mg tablets 150 mg viagra generic where to buy nizoral hair loss shampoo buy nizoral tablets online Priligy usa buy nizoral tablets. Buy valtrex usa nizoral cream buy in uk buy nizoral 1 shampoo online valtrex to buy uk buy valtrex online. Where can i buy nizoral shampoo uk generic brand for differin viagra 25 mg yorum viagra 50 mg cost viagra coupon 3 free tamoxifen vs aromatase inhibitors for breast cancer. Viagra online 50mg nizoral shampoo buy online india buy cialis soft tabs online viagra gold generique 800mg buy valtrex without insurance. 100mg viagra dosage viagra dosage nhs cialis soft tabs canada can you buy viagra over the counter in croatia nizoral shampoo india buy online generic cialis soft tabs online. Where can i buy nizoral in stores viagra 100mg dose raloxifene vs tamoxifen breast cancer treatment 100mg viagra first time where to buy nizoral cream. Buy valtrex 1000mg kamagra oral jelly 100mg - the viagra gel cialis soft tabs 20mg erfahrungen viagra super active 20 mg buy nizoral shampoo with 2 ketoconazole. Aspirin and extended-release dipyridamole versus clopidogrel for recurrent stroke nizoral cream to buy dipyridamole dose for stress test viagra vs cialis dosages. Viagra 100mg or cialis 20mg buy valtrex online australia 25mg viagra does it work buy valtrex australia buy nizoral shampoo uk. Viagra coupon kroger viagra dosage cut in half buy nizoral online india Tretinoin buy online uk buy real valtrex online. Buy nizoral shampoo online amazon pfizer viagra 50mg online generische cialis soft tabs (tadalafil) cialis soft tabs sublingual viagra 50 oder 100 mg. Viagra 50 mg tablet price cialis soft tabs preisvergleich where to buy nizoral shampoo in philippines kamagra jelly 100mg viagra evista vs tamoxifen breast cancer prevention. Buy nizoral in canada can u buy valtrex at walmart viagra 25mg price in india cheap viagra 100mg tablets where to buy nizoral shampoo over the counter. Nizoral tablets buy where to buy nizoral dandruff shampoo cialis soft tabs 60 pills x 40 mg viagra dosage 150 nizoral shampoo buy uk 25mg viagra work viagra dosage weight. Buy generic valtrex online canada viagra 100 mg dosering buy nizoral canada can you buy valtrex at walmart buy nizoral shampoo malaysia. Buy valtrex online cheap buy nizoral topical cream tamoxifen vs raloxifene for breast cancer chemoprophylaxis aspirin and dipyridamole for stroke prevention. Buy generic valtrex online cheap viagra 100 mg recommended dosage. Roxithromycin drug bank online pharmacy uk generic roxithromycin drug information allopurinol for acute leukemia. Buy brand viagra cheap cheap viagra canada online digoxin medication card buy voltaren plus is allopurinol used for kidney stones. Voltaren tablets to buy allopurinol for kidney stones cheap viagra kamagra chinese medicine alternative to viagra. Naprosyn 250 mg price where can i buy voltaren emulgel buy voltaren emulgel buy voltaren australia naprosyn price in india naprosyn 250 mg price. Buy voltaren 25mg normal dosage for allopurinol buy voltaren suppositories online viagra cheap australia buy voltaren gel online. Viagra cheapest price buy voltaren gel probenecid and colchicine brand name Buy viagra in liverpool naprosyn price australia. Buy voltaren from canada naprosyn price australia can you buy viagra over the counter in the bahamas buy voltaren nz. Viagra cheaper with prescription viagra pills for cheap buy voltaren cream cheap viagra online free shipping buy voltaren gel over the counter. Voltaren gel buy online cheap viagra with prescription were can i buy viagra over the counter cheapest viagra uk online buy voltaren emulgel online. Naprosyn sr 750 price buy voltaren patches allopurinol for gout pain buy voltaren injection voltaren gel to buy. Viagra cheaper than cialis where to buy voltaren gel in usa allopurinol for prevention of progression of kidney disease with hyperuricemia buy voltaren gel otc. Allopurinol for leukemia voltaren buy buy voltaren gel usa cheap viagra online nz cheap viagra levitra cialis viagra alternative medicine buy cheap generic viagra. Can u buy viagra over the counter in usa voltaren gel to buy online naprosyn 500 mg price buy cheap viagra in uk colchicine probenecid brand name. Buy cheap viagra in australia cheap viagra with dapoxetine allopurinol treatment for kidney stones allopurinol dosage for gout attack allopurinol dosage for kidney stones. Voltaren gel canada buy viagra medicine cost in india pfizer viagra cheap prices naprosyn 375 price. Confusione linguistica – Chi sono i precari?
{ "redpajama_set_name": "RedPajamaC4" }
7,864
[ 128000, 36644, 12944, 6296, 1579, 6680, 7410, 4255, 26209, 606, 47040, 369, 12884, 449, 1203, 6784, 20273, 6296, 8579, 23204, 25689, 258, 5623, 2440, 13, 76040, 315, 2536, 3751, 71916, 7294, 67595, 11217, 389, 279, 7294, 1787, 1169, 6372, 315, 25689, 258, 304, 32510, 4255, 26209, 606, 8544, 369, 46905, 13, 33402, 6296, 20273, 2853, 12593, 4255, 26209, 606, 369, 19987, 449, 39042, 8624, 4255, 26209, 606, 8924, 287, 369, 6293, 67, 25689, 258, 5623, 78584, 31578, 2930, 7729, 13, 30924, 26209, 606, 369, 19987, 55652, 374, 4255, 26209, 606, 1695, 369, 8582, 1203, 6784, 4255, 26209, 606, 47040, 369, 24869, 4255, 26209, 606, 369, 51643, 1418, 20895, 13, 3639, 3682, 538, 315, 5623, 32246, 1587, 25689, 258, 9352, 311, 4255, 26209, 606, 47040, 369, 57342, 20273, 6296 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 36644, 12944, 6296, 1579, 6680, 7410, 4255, 26209, 606, 47040, 369, 12884, 449, 1203, 6784, 20273, 6296, 8579, 23204, 25689, 258, 5623, 2440, 13, 76040, 315, 2536, 3751, 71916, 7294, 67595, 11217, 389, 279, 7294, 1787, 1169, 6372, 315, 25689, 258, 304, 32510, 4255, 26209, 606, 8544, 369, 46905, 13, 33402, 6296, 20273, 2853, 12593, 4255, 26209, 606, 369, 19987, 449, 39042, 8624, 4255, 26209, 606, 8924, 287, 369, 6293, 67, 25689, 258, 5623, 78584, 31578, 2930, 7729, 13, 30924, 26209, 606, 369, 19987, 55652, 374, 4255, 26209, 606, 1695, 369, 8582, 1203, 6784, 4255, 26209, 606, 47040, 369, 24869, 4255, 26209, 606, 369, 51643, 1418, 20895, 13, 3639, 3682, 538, 315, 5623, 32246, 1587, 25689, 258, 9352, 311, 4255, 26209, 606, 47040, 369, 57342, 20273, 6296, -100 ]
I believe strongly in giving positive feedback where it's due. You'll have heard me plug many companies and products like Wacom, ColorVision, Lensbaby. I've not been paid to endorse any of those products. I just happen to use and like them. But the converse is also true. I believe in giving negative feedback when it's due as well. Sadly today I've decided I won't be buying from 7dayshop.com despite having been using them occasionally since 2002. I feel I've had a slow painful purchasing experience with them this last few weeks and I found customer service surly and unhelpful. I won't bother going into the details but I did want to let people know. 7dayshop is a cheaper than other companies but in my opinion the pain of ordering from them more than offsets the money I might save. On the other hand I've had good experiences with warehouseexpress.com. Again, just to be totally clear - this is totally based on my own experinces with these two companies. Nobody has paid me to say any of this.
{ "redpajama_set_name": "RedPajamaC4" }
3,006
[ 128000, 40, 4510, 16917, 304, 7231, 6928, 11302, 1405, 433, 596, 4245, 13, 1472, 3358, 617, 6755, 757, 20206, 1690, 5220, 323, 3956, 1093, 468, 45670, 11, 3562, 69162, 11, 43771, 79064, 13, 358, 3077, 539, 1027, 7318, 311, 19507, 904, 315, 1884, 3956, 13, 358, 1120, 3621, 311, 1005, 323, 1093, 1124, 13, 2030, 279, 95340, 374, 1101, 837, 13, 358, 4510, 304, 7231, 8389, 11302, 994, 433, 596, 4245, 439, 1664, 13, 57243, 3432, 358, 3077, 6773, 358, 2834, 956, 387, 12096, 505, 220, 22, 1316, 8845, 916, 8994, 3515, 1027, 1701, 1124, 23781, 2533, 220, 1049, 17, 13, 358, 2733, 358, 3077, 1047, 264, 6435, 26175, 23395, 3217, 449, 1124, 420, 1566, 2478, 5672, 323, 358, 1766, 6130, 2532, 1765, 398, 323, 653, 8823, 1285 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 40, 4510, 16917, 304, 7231, 6928, 11302, 1405, 433, 596, 4245, 13, 1472, 3358, 617, 6755, 757, 20206, 1690, 5220, 323, 3956, 1093, 468, 45670, 11, 3562, 69162, 11, 43771, 79064, 13, 358, 3077, 539, 1027, 7318, 311, 19507, 904, 315, 1884, 3956, 13, 358, 1120, 3621, 311, 1005, 323, 1093, 1124, 13, 2030, 279, 95340, 374, 1101, 837, 13, 358, 4510, 304, 7231, 8389, 11302, 994, 433, 596, 4245, 439, 1664, 13, 57243, 3432, 358, 3077, 6773, 358, 2834, 956, 387, 12096, 505, 220, 22, 1316, 8845, 916, 8994, 3515, 1027, 1701, 1124, 23781, 2533, 220, 1049, 17, 13, 358, 2733, 358, 3077, 1047, 264, 6435, 26175, 23395, 3217, 449, 1124, 420, 1566, 2478, 5672, 323, 358, 1766, 6130, 2532, 1765, 398, 323, 653, 8823, 1285, -100 ]
IOC: Olympic Track Worker Breaks Both Legs After Being Struck By Bobsled Filed Under:bobsled, IOC, Sochi, Winter Olympics Jamaica-1, two-man bobsleigh steered by Winston Watts takes a practice run at the Sanki Sliding Centre in Rosa Khutor on February 13, 2014 during the 2014 Sochi Winter Olympic Games. AFP PHOTO / LEON NEAL (Photo credit should read LEON NEAL/AFP/Getty Images)Jamaica-1, two-man bobsleigh steered by Winston Watts takes a practice run at the Sanki Sliding Centre in Rosa Khutor on February 13, 2014 during the 2014 Sochi Winter Olympic Games. (credit: LEON NEAL/AFP/Getty Images) KRASNAYA POLYANA, Russia (AP) — An Olympic track worker struck by a bobsled broke both legs and may have a concussion, IOC officials said Thursday. The worker was on the track when he was hit by a forerunning sled near the finish line at the Sanki Sliding Center, just before the start of Thursday's two-man bobsled training. "We still do not know why he was in this zone and exactly what happened," IOC President Thomas Bach said in a visit to The Associated Press office in Sochi. Bach added that the worker "maybe" has a concussion. Later, IOC spokesman Mark Adams told the AP: "I understand he is conscious and talking and has two broken legs." Sochi organizers said the unidentified man was taken by helicopter to a hospital, but gave no other information about his injuries. Officials said the crash took place just before the finish line, which would suggest that the sled likely had not yet started to brake. "According to standard procedure, a warning signal was given ahead of the forerunners' bob beginning its run on the track," Sochi organizers said in a statement released more than three hours after the accident. "The reasons for the icemaker's presence on the track after the warning signal are currently being determined." Also, officials said the luge team relay event scheduled to make its Olympic debut on Thursday will take place as scheduled. The first bobsled training session was delayed at the start for about 35 minutes as a work crew repaired a light fixture that was apparently smashed in the accident. Also, the track was cleared of other debris that had fallen into the finish area. Olympic bobsledders remained in the start area during the delay, well away from the crash location. Forerunning sleds are used before training and competition sessions to assess track conditions and make sure the facility is safe for racing. Also, people in the vicinity of the track are almost always alerted that a sled is in the track through public-address announcements, though it was unclear why the worker struck was unaware that the session was beginning. It's also unclear why the worker was on the track when the sled came out the final curve and approached the finish line. The sled that struck him was the second "forerunner" used before the training session. Loudspeakers in the finish-deck area were working during training after the crash, though there has been at least one incident when the public-address system at the facility – an absolutely critical part of the track's safety plan – failed. It went silent when the U.S. and other international luge teams visited the Sochi track for a training session in November after electricity was lost. That impacted lights, timing devices and the speaker system that allows sliders up top know when sleds at the bottom of the chute have been removed and the track is clear for the next competitor. In turn, it also tells people in the finish area that a sled is on the way. "We didn't really know what was going on," USA Luge coach Mark Grimmette said in November, when detailing how training was interrupted. The Sochi track was designed to be safer following the death of luger Nodar Kumarishtavili in an accident hours before the opening ceremonies of the Vancouver Games four years ago. There have been no major mishaps during any of the competition so far, and athletes have been complimentary of the track's condition. "To be honest, the ice is phenomenal," U.S. skeleton racer Katie Uhlaender said following the first two heats of the women's competition, several hours before the mishap. "It's better than it was in training and whoever they got working on the ice, kudos, because they are doing Olympic level work on the track. It is fast and it's fun." In 2005, U.S. skeleton racer Noelle Pikus-Pace was struck by a bobsled in the outrun of a track in Canada, shattering a leg and ultimately causing her to miss the 2006 Turin Olympics.
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
6,872
[ 128000, 70051, 25, 25944, 20371, 34186, 15996, 82, 11995, 91034, 4740, 21347, 4610, 1983, 3296, 426, 5598, 839, 198, 89182, 9636, 45073, 5598, 839, 11, 98003, 11, 2100, 14946, 11, 20704, 33063, 198, 41, 3105, 3074, 12, 16, 11, 1403, 21110, 293, 5598, 64069, 4179, 12616, 555, 48208, 59336, 5097, 264, 6725, 1629, 520, 279, 328, 116399, 6995, 6714, 14821, 304, 47930, 20774, 4936, 389, 7552, 220, 1032, 11, 220, 679, 19, 2391, 279, 220, 679, 19, 2100, 14946, 20704, 25944, 11871, 13, 27746, 65877, 611, 11396, 715, 8014, 984, 320, 10682, 6807, 1288, 1373, 11396, 715, 8014, 984, 69415, 21560, 12041, 8, 41, 3105, 3074, 12, 16, 11, 1403, 21110, 293, 5598, 64069, 4179, 12616, 555, 48208, 59336, 5097, 264, 6725, 1629, 520, 279, 328, 116399, 6995 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 70051, 25, 25944, 20371, 34186, 15996, 82, 11995, 91034, 4740, 21347, 4610, 1983, 3296, 426, 5598, 839, 198, 89182, 9636, 45073, 5598, 839, 11, 98003, 11, 2100, 14946, 11, 20704, 33063, 198, 41, 3105, 3074, 12, 16, 11, 1403, 21110, 293, 5598, 64069, 4179, 12616, 555, 48208, 59336, 5097, 264, 6725, 1629, 520, 279, 328, 116399, 6995, 6714, 14821, 304, 47930, 20774, 4936, 389, 7552, 220, 1032, 11, 220, 679, 19, 2391, 279, 220, 679, 19, 2100, 14946, 20704, 25944, 11871, 13, 27746, 65877, 611, 11396, 715, 8014, 984, 320, 10682, 6807, 1288, 1373, 11396, 715, 8014, 984, 69415, 21560, 12041, 8, 41, 3105, 3074, 12, 16, 11, 1403, 21110, 293, 5598, 64069, 4179, 12616, 555, 48208, 59336, 5097, 264, 6725, 1629, 520, 279, 328, 116399, 6995, -100 ]
Ross Douthat | Liberal Catholics in the Age of Francis Liberal Catholics in the Age of Francis December 2, 2013 3:29 pm December 2, 2013 3:29 pm My Sunday column discussed what Catholics on the political right should make of Pope Francis's latest exhortation, and how they should respond to a papacy that has been emphasizing the church's social teaching in language that Catholics with free-market views might not necessarily be eager to embrace. The other, equally-interesting question, of course is how Catholics of a more liberal persuasion (politically and theologically) should respond to Francis — or, perhaps more aptly, what they should be looking for, hoping for, and working toward in a pontificate whose tone they mostly find congenial, but whose substance has included reaffirmations of Catholic teaching on some of the culture-war issues dividing left and right. There are a few possibilities here. There are many Catholics, as I've pointed out before, who dissent from church teaching on various issues in a "soft" way that doesn't really shape their relationship to the church — and this population may be pretty content with a change in tone and emphasis (and press coverage!) that doesn't otherwise lead to dramatic shifts. (This is roughly what John Allen has in mind when he describes Francis as potentially "a pope for the Catholic middle.") Then, in an overlapping category, there are self-defined "liberal Catholics" for whom economic concerns are much more crucial to their self-definition than either moral or theological debates, and who are likely to be similarly content with a papacy that seems to be foregrounding and validating their issues even if it's also reaffirming traditional doctrine on sex, marriage and the family. Then at the opposite extreme there are liberal Catholics (and many lapsed and semi-lapsed Catholics) whose vision is more comprehensively hostile to the church as it has existed and exists, and whose temporary happiness with Pope Francis is likely to dissipate in the absence of the kind of sweeping, Protestantizing change that more orthodox believers consider not only undesirable but impossible. Where this category overlaps with the various secular and non-Catholic voices who have embraced the "Good Pope Francis" narrative, you can see the potential for an eventual large-scale backlash, of the kind that Joshua Keating hints at in a piece for Slate today, which ends up dismissing Francis's grasp for a religious middle as all salesmanship and no substance, and the new pope himself as just another Vatican reactionary. Then, finally, you have Catholics who are morally/culturally/theologically liberal but also realistic about the ways in which Catholicism can and cannot change — by which mean I mean that they want to see their church address and adapt to certain post-sexual revolution realities, but don't expect or desire a revolution that suddenly makes every church-versus-culture conflict on these issues disappear. My (provisional) sense is that Francis is trying to invite liberal believers with this perspective into a kind of dialogue about what's possible for the church. Consider, for instance, this passage from his latest exhortation, on the role of women in Catholicism: Demands that the legitimate rights of women be respected, based on the firm conviction that men and women are equal in dignity, present the Church with profound and challenging questions which cannot be lightly evaded. The reservation of the priesthood to males, as a sign of Christ the Spouse who gives himself in the Eucharist, is not a question open to discussion, but it can prove especially divisive if sacramental power is too closely identified with power in general. It must be remembered that when we speak of sacramental power "we are in the realm of function, not that of dignity or holiness." The ministerial priesthood is one means employed by Jesus for the service of his people, yet our great dignity derives from baptism, which is accessible to all. The configuration of the priest to Christ the head – namely, as the principal source of grace – does not imply an exaltation which would set him above others. In the Church, functions "do not favour the superiority of some vis-à-vis the others." Indeed, a woman, Mary, is more important than the bishops. Even when the function of ministerial priesthood is considered "hierarchical", it must be remembered that "it is totally ordered to the holiness of Christ's members". Its key and axis is not power understood as domination, but the power to administer the sacrament of the Eucharist; this is the origin of its authority, which is always a service to God's people. This presents a great challenge for pastors and theologians, who are in a position to recognize more fully what this entails with regard to the possible role of women in decision-making in different areas of the Church's life. The suggestion here, addressed to all readers but especially to a certain kind of dissenter, is that there may be space for reform — for a fuller "recognition" of women within the church, and a fuller share in ecclesiastical "decision-making" — within the limits imposed by a male priesthood. Which suggests, in turn, that a plausible mission for liberal Catholicism in the age of Francis would be to identify such areas of reform, where the church could move in their direction without overturning settled doctrine, rewriting capital-T Tradition, or betraying the clear language of the gospels. The role of women in church governance is one such place. The possibility of ending the rule of celibacy (or at least expanding the exceptions), highlighted today by my colleague Bill Keller, is another. The possible changes being bruited to the rules surrounding communion for remarried Catholics is a potential third example. And no doubt there are more. For my own part — if liberal Catholics don't mind a little advice from a conservative — I think the first area is by the far the most promising, since it offers a way for the church to say, in effect, "yes and no" to the cultural revolutions of the 1960s and 1970s: Yes to the dignity of women, yes to their further empowerment, but no to the idea that this dignity and empowerment depends on jettisoning Catholic (and biblical, and New Testament) ideals about sex and chastity, male-female difference, the indissolubility of marriage and the elevated place of celibacy in Christian life. It's true that a shift like, say, naming women as cardinals would be more innovative than allowing married priests, since the rule of celibacy has been altered by the church in the past and no woman has ever worn a red hat. (The question of female deacons in church history is more vexed, depending in part on the definition of the diaconate — though Pope Benedict's 2009 clarification of that definition suggests certain openings.) But innovating within the bounds of tradition is better than returning to a discarded approach to priestly discipline just because the latter seems like the more painless change to make. And as I read the signs of the times — claiming no inspiration for that reading! — female cardinals seem like a more effective and potentially-warranted adaptation than surrendering the countersign provided by priestly celibacy at a time when Western society arguably needs it more than ever. (And when, it should be noted, the evidence that it's actually warping the lives of men in holy orders is conspicuously lacking.) Anyway, if the Inquisition (or one of my Traditionalist friends) comes knocking I'll insist that this talk is just a thought experiment. (Though Mary Ann Cardinal Glendon has a certain ring to it …) But it's the kind that liberal Catholics should be contemplating, as they try to bring something lasting out of the pleasant jolt that Francis's rhetoric has given them. The Lure of a Brave New World Pope Francis and the Ghost of Sargent Shriver
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
3,520
[ 128000, 93238, 423, 2969, 266, 765, 31158, 51971, 304, 279, 13381, 315, 26184, 198, 9374, 3333, 51971, 304, 279, 13381, 315, 26184, 198, 33246, 220, 17, 11, 220, 679, 18, 220, 18, 25, 1682, 9012, 6790, 220, 17, 11, 220, 679, 18, 220, 18, 25, 1682, 9012, 198, 5159, 7418, 3330, 14407, 1148, 51971, 389, 279, 5054, 1314, 1288, 1304, 315, 30460, 26184, 596, 5652, 506, 22780, 367, 11, 323, 1268, 814, 1288, 6013, 311, 264, 26365, 2826, 430, 706, 1027, 82003, 279, 8993, 596, 3674, 12917, 304, 4221, 430, 51971, 449, 1949, 48831, 6325, 2643, 539, 14647, 387, 24450, 311, 27830, 13, 578, 1023, 11, 18813, 65873, 287, 3488, 11, 315, 3388, 374, 1268, 51971, 315, 264, 810, 18250, 98224, 320, 91627, 2740, 323, 279, 30450, 8 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 93238, 423, 2969, 266, 765, 31158, 51971, 304, 279, 13381, 315, 26184, 198, 9374, 3333, 51971, 304, 279, 13381, 315, 26184, 198, 33246, 220, 17, 11, 220, 679, 18, 220, 18, 25, 1682, 9012, 6790, 220, 17, 11, 220, 679, 18, 220, 18, 25, 1682, 9012, 198, 5159, 7418, 3330, 14407, 1148, 51971, 389, 279, 5054, 1314, 1288, 1304, 315, 30460, 26184, 596, 5652, 506, 22780, 367, 11, 323, 1268, 814, 1288, 6013, 311, 264, 26365, 2826, 430, 706, 1027, 82003, 279, 8993, 596, 3674, 12917, 304, 4221, 430, 51971, 449, 1949, 48831, 6325, 2643, 539, 14647, 387, 24450, 311, 27830, 13, 578, 1023, 11, 18813, 65873, 287, 3488, 11, 315, 3388, 374, 1268, 51971, 315, 264, 810, 18250, 98224, 320, 91627, 2740, 323, 279, 30450, 8, -100 ]