<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:media="http://search.yahoo.com/mrss/"
	
	>

<channel>
	<title>PA</title>
	<link>https://publicassistants.org</link>
	<description>PA</description>
	<pubDate>Fri, 23 Jun 2023 01:25:42 +0000</pubDate>
	<generator>https://publicassistants.org</generator>
	<language>en</language>
	
		
	<item>
		<title>HOME</title>
				
		<link>https://publicassistants.org/HOME</link>

		<pubDate>Wed, 25 Jan 2023 03:06:09 +0000</pubDate>

		<dc:creator>PA</dc:creator>

		<guid isPermaLink="true">https://publicassistants.org/HOME</guid>

		<description>
</description>
		
	</item>
		
		
	<item>
		<title>ABOUT</title>
				
		<link>https://publicassistants.org/ABOUT</link>

		<pubDate>Tue, 23 May 2023 19:29:09 +0000</pubDate>

		<dc:creator>PA</dc:creator>

		<guid isPermaLink="true">https://publicassistants.org/ABOUT</guid>

		<description>
	&#60;img width="3091" height="2048" width_o="3091" height_o="2048" data-src="https://freight.cargo.site/t/original/i/75eb64ca1b652820782d401aefd52ffb1117e9f45aaefaac19af9f2395180e66/19290007.JPG" data-mid="179720199" border="0" data-scale="100" src="https://freight.cargo.site/w/1000/i/75eb64ca1b652820782d401aefd52ffb1117e9f45aaefaac19af9f2395180e66/19290007.JPG" /&#62;
WHO WE ARE
Necessity is the mother of invention, and Public Assistants is its daughter. Born from the depths of COVID-19, Public Assistants shapes itself within its community. Now a design studio and creative agency, we know we cannot thrive if we do not first understand. Our projects and programming respond to the needs of those around us, building with care, creativity, and purpose. Public Assistants Inc. (PA)—a community design studio and creative agency now in its fifth year—is to build community-powered cultural spaces that expand creative, economic, and narrative agency for New Yorkers, especially those pushed to the margins. A core part of this work is helping our communities reclaim the means of cultural production by designing, and producing our own media—books, commercials, exhibitions, and other forms of storytelling that shape how we see ourselves in the world.


What we do:

Art and Creative Direction

Print Media, Painting &#38;amp; Illustration

Performances, Workshops, Mutual aid





* All of our services to QTBIPOC members of the community are 
pro-bono and donation based.
</description>
		
	</item>
		
		
	<item>
		<title>CONTACT</title>
				
		<link>https://publicassistants.org/CONTACT</link>

		<pubDate>Wed, 21 Jun 2023 13:23:23 +0000</pubDate>

		<dc:creator>PA</dc:creator>

		<guid isPermaLink="true">https://publicassistants.org/CONTACT</guid>

		<description>CONTACT ︎
Email:&#38;nbsp;team@publicassistants.org* For the time being all individual/private visits and consultations at&#38;nbsp;
the Public Assistants studio 
need be scheduled and confirmed in advance ︎︎︎


    
    var ifr = document.getElementById("JotFormIFrame-231728292851158");
    if (ifr) {
      var src = ifr.src;
      var iframeParams = [];
      if (window.location.href &#38;&#38; window.location.href.indexOf("?") &#62; -1) {
        iframeParams = iframeParams.concat(window.location.href.substr(window.location.href.indexOf("?") + 1).split('&#38;'));
      }
      if (src &#38;&#38; src.indexOf("?") &#62; -1) {
        iframeParams = iframeParams.concat(src.substr(src.indexOf("?") + 1).split("&#38;"));
        src = src.substr(0, src.indexOf("?"))
      }
      iframeParams.push("isIframeEmbed=1");
      ifr.src = src + "?" + iframeParams.join('&#38;');
    }
    window.handleIFrameMessage = function(e) {
      if (typeof e.data === 'object') { return; }
      var args = e.data.split(":");
      if (args.length &#62; 2) { iframe = document.getElementById("JotFormIFrame-" + args[(args.length - 1)]); } else { iframe = document.getElementById("JotFormIFrame"); }
      if (!iframe) { return; }
      switch (args[0]) {
        case "scrollIntoView":
          iframe.scrollIntoView();
          break;
        case "setHeight":
          iframe.style.height = args[1] + "px";
          if (!isNaN(args[1]) &#38;&#38; parseInt(iframe.style.minHeight) &#62; parseInt(args[1])) {
            iframe.style.minHeight = args[1] + "px";
          }
          break;
        case "collapseErrorPage":
          if (iframe.clientHeight &#62; window.innerHeight) {
            iframe.style.height = window.innerHeight + "px";
          }
          break;
        case "reloadPage":
          window.location.reload();
          break;
        case "loadScript":
          if( !window.isPermitted(e.origin, ['jotform.com', 'jotform.pro']) ) { break; }
          var src = args[1];
          if (args.length &#62; 3) {
              src = args[1] + ':' + args[2];
          }
          var script = document.createElement('script');
          script.src = src;
          script.type = 'text/javascript';
          document.body.appendChild(script);
          break;
        case "exitFullscreen":
          if      (window.document.exitFullscreen)        window.document.exitFullscreen();
          else if (window.document.mozCancelFullScreen)   window.document.mozCancelFullScreen();
          else if (window.document.mozCancelFullscreen)   window.document.mozCancelFullScreen();
          else if (window.document.webkitExitFullscreen)  window.document.webkitExitFullscreen();
          else if (window.document.msExitFullscreen)      window.document.msExitFullscreen();
          break;
      }
      var isJotForm = (e.origin.indexOf("jotform") &#62; -1) ? true : false;
      if(isJotForm &#38;&#38; "contentWindow" in iframe &#38;&#38; "postMessage" in iframe.contentWindow) {
        var urls = {"docurl":encodeURIComponent(document.URL),"referrer":encodeURIComponent(document.referrer)};
        iframe.contentWindow.postMessage(JSON.stringify({"type":"urls","value":urls}), "*");
      }
    };
    window.isPermitted = function(originUrl, whitelisted_domains) {
      var url = document.createElement('a');
      url.href = originUrl;
      var hostname = url.hostname;
      var result = false;
      if( typeof hostname !== 'undefined' ) {
        whitelisted_domains.forEach(function(element) {
            if( hostname.slice((-1 * element.length - 1)) === '.'.concat(element) &#124;&#124;  hostname === element ) {
                result = true;
            }
        });
        return result;
      }
    };
    if (window.addEventListener) {
      window.addEventListener("message", handleIFrameMessage, false);
    } else if (window.attachEvent) {
      window.attachEvent("onmessage", handleIFrameMessage);
    }
    
 </description>
		
	</item>
		
		
	<item>
		<title>PRESS</title>
				
		<link>https://publicassistants.org/PRESS</link>

		<pubDate>Sat, 29 Apr 2023 17:18:52 +0000</pubDate>

		<dc:creator>PA</dc:creator>

		<guid isPermaLink="true">https://publicassistants.org/PRESS</guid>

		<description>PRESSELEPHANT: How Mutual Aid Network ‘Public Assistants’ Are Challenging the Politics of Respectability

PAPER MAGAZINE: Public Assistants Celebrates a Year of Community Work

FRIEZE: ‘Aesthetics of Urgency’: Public Assistants on the Artistic Practice of Mutual Aid Work

EPICENTER-NYC: A community space faces an uncertain future

CURBED: Public Assistants, a Resistance Community Space, Opens in Crown Heights “It’s meant to feel like a family, like an enclave, like an oasis.”

INTERVIEW MAGAZINE: The Black Pages: A September Issue Portfolio Guest Edited by DonChristian

THE AWESOME FOUNDATION:&#38;nbsp;Public Assistants

THEM: 12 Awe-Inspiring Photos From This Weekend’s March for Black Trans Lives



	
&#60;img width="622" height="125" width_o="622" height_o="125" data-src="https://freight.cargo.site/t/original/i/a89b3bb96787d42a3d2de27c3e027d125f53a3d267b089a29902e4fea8726f44/980x.png" data-mid="182978779" border="0"  src="https://freight.cargo.site/w/622/i/a89b3bb96787d42a3d2de27c3e027d125f53a3d267b089a29902e4fea8726f44/980x.png" /&#62;
&#60;img width="959" height="202" width_o="959" height_o="202" data-src="https://freight.cargo.site/t/original/i/6678d8c7124b962af5e1e3e14b9c1408ccc6f18e2847f21339865b3a6929b740/FRIEZE.png" data-mid="182978783" border="0"  src="https://freight.cargo.site/w/959/i/6678d8c7124b962af5e1e3e14b9c1408ccc6f18e2847f21339865b3a6929b740/FRIEZE.png" /&#62;
&#60;img width="947" height="300" width_o="947" height_o="300" data-src="https://freight.cargo.site/t/original/i/7607a5f42e00669661a3c862a5b925905e814547ade6e33bd0057f2c35d78a27/them-logo_61bfea77-9be6-4116-8d4b-2cfc1c221b05_x300.png" data-mid="183326986" border="0"  src="https://freight.cargo.site/w/947/i/7607a5f42e00669661a3c862a5b925905e814547ade6e33bd0057f2c35d78a27/them-logo_61bfea77-9be6-4116-8d4b-2cfc1c221b05_x300.png" /&#62;
&#60;img width="528" height="121" width_o="528" height_o="121" data-src="https://freight.cargo.site/t/original/i/ef579f636b933e1c30e7190d389e4cde639f0e53f1d6ef09454022bf538f5cbd/artforum_logo_528.png" data-mid="183326850" border="0"  src="https://freight.cargo.site/w/528/i/ef579f636b933e1c30e7190d389e4cde639f0e53f1d6ef09454022bf538f5cbd/artforum_logo_528.png" /&#62;
&#60;img width="2500" height="942" width_o="2500" height_o="942" data-src="https://freight.cargo.site/t/original/i/8b3d054ae4687cdcd806adf34d8f2faa891f92ec64882bb67ecf9d730619c9a6/Curbed_Logo_Black_RGB_Horizontal-Regular.png" data-mid="183092053" border="0"  src="https://freight.cargo.site/w/1000/i/8b3d054ae4687cdcd806adf34d8f2faa891f92ec64882bb67ecf9d730619c9a6/Curbed_Logo_Black_RGB_Horizontal-Regular.png" /&#62;
&#60;img width="600" height="226" width_o="600" height_o="226" data-src="https://freight.cargo.site/t/original/i/b9976ce8688f115cd8a3d1e0e394d0c7e9ffc0bcec34632bc448a5ad2ecca595/INTERVIEW-MAG-LOGO.png" data-mid="182978799" border="0"  src="https://freight.cargo.site/w/600/i/b9976ce8688f115cd8a3d1e0e394d0c7e9ffc0bcec34632bc448a5ad2ecca595/INTERVIEW-MAG-LOGO.png" /&#62;
&#60;img width="1680" height="626" width_o="1680" height_o="626" data-src="https://freight.cargo.site/t/original/i/54d0b4181701271e1bc5c491e7091d5d3d2fae54e800790c3cfd2f4d85e0a887/4fae234830514ab3809ef628fd948bb6-thumbnail-2048x2048.png" data-mid="182978771" border="0"  src="https://freight.cargo.site/w/1000/i/54d0b4181701271e1bc5c491e7091d5d3d2fae54e800790c3cfd2f4d85e0a887/4fae234830514ab3809ef628fd948bb6-thumbnail-2048x2048.png" /&#62;
&#60;img width="2112" height="796" width_o="2112" height_o="796" data-src="https://freight.cargo.site/t/original/i/0a49384740d581d3cb82fb1d83cd395934b3848074e3550d03e97aaaaae074c0/cropped-epicenter_good_hood_logo_black-1-copy.jpg" data-mid="182978897" border="0"  src="https://freight.cargo.site/w/1000/i/0a49384740d581d3cb82fb1d83cd395934b3848074e3550d03e97aaaaae074c0/cropped-epicenter_good_hood_logo_black-1-copy.jpg" /&#62;
&#60;img width="816" height="116" width_o="816" height_o="116" data-src="https://freight.cargo.site/t/original/i/72662fe5592e24123a77a944fd9970a2344b9efe0d87d2d3abe0fe6b7fd0bc8c/bplogo24-big-2016.png" data-mid="183327172" border="0"  src="https://freight.cargo.site/w/816/i/72662fe5592e24123a77a944fd9970a2344b9efe0d87d2d3abe0fe6b7fd0bc8c/bplogo24-big-2016.png" /&#62;



</description>
		
	</item>
		
		
	<item>
		<title>DONATE</title>
				
		<link>https://publicassistants.org/DONATE</link>

		<pubDate>Sat, 29 Apr 2023 17:25:00 +0000</pubDate>

		<dc:creator>PA</dc:creator>

		<guid isPermaLink="true">https://publicassistants.org/DONATE</guid>

		<description>︎&#60;img width="480" height="153" width_o="480" height_o="153" data-src="https://freight.cargo.site/t/original/i/4ce7d31cb243432baa0ae9824b467fba31e47d40f75b723a12d6709765a523e2/Asset-6.png" data-mid="185009076" border="0"  src="https://freight.cargo.site/w/480/i/4ce7d31cb243432baa0ae9824b467fba31e47d40f75b723a12d6709765a523e2/Asset-6.png" /&#62;

Public Assistants is a 501c3 and tax deductible entity. All gifts of donation go to directly support our general operations, public programs, and artist led initiatives. Donation receipts are available upon request.&#38;nbsp;
For more information on donating, please email: donate@publicassistants.orgPaypal: www.paypal.biz/publicassistantsVenmo: @public-assistants


</description>
		
	</item>
		
		
	<item>
		<title>WASH RADIO ARCHIVE</title>
				
		<link>https://publicassistants.org/WASH-RADIO-ARCHIVE</link>

		<pubDate>Wed, 24 May 2023 20:30:54 +0000</pubDate>

		<dc:creator>PA</dc:creator>

		<guid isPermaLink="true">https://publicassistants.org/WASH-RADIO-ARCHIVE</guid>

		<description>
&#60;img width="755" height="153" width_o="755" height_o="153" data-src="https://freight.cargo.site/t/original/i/32495fa952ab5eb64c6deccd18efc72d9d94b48b3a2d9c06d69ee5914d4bbffc/Asset-5.png" data-mid="190893520" border="0" data-scale="41" src="https://freight.cargo.site/w/755/i/32495fa952ab5eb64c6deccd18efc72d9d94b48b3a2d9c06d69ee5914d4bbffc/Asset-5.png" /&#62;A PUBLIC ASSISTANTS AUDIO BROADCAST
ARCHIVE&#38;nbsp;
	




</description>
		
	</item>
		
		
	<item>
		<title>YOUTH MURAL RESIDENCY</title>
				
		<link>https://publicassistants.org/YOUTH-MURAL-RESIDENCY</link>

		<pubDate>Fri, 23 Jun 2023 01:25:42 +0000</pubDate>

		<dc:creator>PA</dc:creator>

		<guid isPermaLink="true">https://publicassistants.org/YOUTH-MURAL-RESIDENCY</guid>

		<description>

	PILOT YOUTH ARTIST RESIDENCY 2021
This is a paid program for youth aged 15 - 18, for three weeks throughout the summer. The program teaches students how to create murals, allows them to design and plan 
and execute a mural in the city of New York.



&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/61e0f2328b7e521da092e638ac1b7ac0a332cc6ef5fcf509f61577a52fdf2d9f/25090009.JPG" data-mid="183022396" border="0"  src="https://freight.cargo.site/w/1000/i/61e0f2328b7e521da092e638ac1b7ac0a332cc6ef5fcf509f61577a52fdf2d9f/25090009.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/ffb3954f01f368ad7b02086084a1a20d5382ee402c5786cb8fc09288be2afc16/25090011.JPG" data-mid="183022400" border="0"  src="https://freight.cargo.site/w/1000/i/ffb3954f01f368ad7b02086084a1a20d5382ee402c5786cb8fc09288be2afc16/25090011.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/bb5b3795fff0f0ebfcd0c4489741ebf3391a1e5f8753219ac1369f057a3c59ce/09430031.JPG" data-mid="183022394" border="0"  src="https://freight.cargo.site/w/1000/i/bb5b3795fff0f0ebfcd0c4489741ebf3391a1e5f8753219ac1369f057a3c59ce/09430031.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/461122cca89c7847882372971461efaf183e05a0fbed6c40c699449cfb42887c/09430014.JPG" data-mid="183022408" border="0"  src="https://freight.cargo.site/w/1000/i/461122cca89c7847882372971461efaf183e05a0fbed6c40c699449cfb42887c/09430014.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/a6ff710eddeb0a20b8bf3fa314d31b778375290276d3847e69cccd136e8c076a/09430011.JPG" data-mid="183022393" border="0"  src="https://freight.cargo.site/w/1000/i/a6ff710eddeb0a20b8bf3fa314d31b778375290276d3847e69cccd136e8c076a/09430011.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/6c938ba70b8a078a1857d03b2ddb83e4c6ee6c4a64a6a3950fcdf70cefa9eea8/09430004.JPG" data-mid="183022402" border="0"  src="https://freight.cargo.site/w/1000/i/6c938ba70b8a078a1857d03b2ddb83e4c6ee6c4a64a6a3950fcdf70cefa9eea8/09430004.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/fc3446bd6991ff943228e746d74b60ccafa464210d66bb9c8367db928f121338/09420037.JPG" data-mid="183022401" border="0"  src="https://freight.cargo.site/w/1000/i/fc3446bd6991ff943228e746d74b60ccafa464210d66bb9c8367db928f121338/09420037.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/b46cb589851db0cef2e2d0f6ac104c6083d489858d9915beadf9da8301f6b880/09420028.JPG" data-mid="183022398" border="0"  src="https://freight.cargo.site/w/1000/i/b46cb589851db0cef2e2d0f6ac104c6083d489858d9915beadf9da8301f6b880/09420028.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/19940a9b3993380ed1a73e6b287762f4b9396e74d4b0b5c4cba537c8014529dc/09420022.JPG" data-mid="183022404" border="0"  src="https://freight.cargo.site/w/1000/i/19940a9b3993380ed1a73e6b287762f4b9396e74d4b0b5c4cba537c8014529dc/09420022.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/4f776ecf6bf6e9fcea502a288763da14ecb198b99497268bb1835e594365f227/09420006.JPG" data-mid="183022399" border="0"  src="https://freight.cargo.site/w/1000/i/4f776ecf6bf6e9fcea502a288763da14ecb198b99497268bb1835e594365f227/09420006.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/f863c6b7fb42950d6153869b85109732e2d46c96714aec8317315d0fd33ff3a0/09420009.JPG" data-mid="183022409" border="0"  src="https://freight.cargo.site/w/1000/i/f863c6b7fb42950d6153869b85109732e2d46c96714aec8317315d0fd33ff3a0/09420009.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/bc947c792b42f8cd340504062739ecb79704bf38d5e276f5d7aac82cdf2b9afd/09420007.JPG" data-mid="183022407" border="0"  src="https://freight.cargo.site/w/1000/i/bc947c792b42f8cd340504062739ecb79704bf38d5e276f5d7aac82cdf2b9afd/09420007.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/8acbbb4d96956f0741ce1ed30628523333d8d7c359b13c587fa0e9a782166f9d/04530032.JPG" data-mid="183022405" border="0"  src="https://freight.cargo.site/w/1000/i/8acbbb4d96956f0741ce1ed30628523333d8d7c359b13c587fa0e9a782166f9d/04530032.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/61cbc528a241ec7c4ea1bb6f3e3a6bc4d30ae2630a85ea5325ab95ca8bd4053b/04530029.JPG" data-mid="183022403" border="0"  src="https://freight.cargo.site/w/1000/i/61cbc528a241ec7c4ea1bb6f3e3a6bc4d30ae2630a85ea5325ab95ca8bd4053b/04530029.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/b913063607338f167fc5b1b7c78d3674aac5e3682eb6683939be89c2d23ccdbd/04530030.JPG" data-mid="183022395" border="0"  src="https://freight.cargo.site/w/1000/i/b913063607338f167fc5b1b7c78d3674aac5e3682eb6683939be89c2d23ccdbd/04530030.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/fa6c9c26a647f44a2f14235b092bb466fa60938e3b642f4f184a9b6e0917234e/04530028.JPG" data-mid="183022406" border="0"  src="https://freight.cargo.site/w/1000/i/fa6c9c26a647f44a2f14235b092bb466fa60938e3b642f4f184a9b6e0917234e/04530028.JPG" /&#62;
</description>
		
	</item>
		
		
	<item>
		<title>BIKE INITIATIVE</title>
				
		<link>https://publicassistants.org/BIKE-INITIATIVE</link>

		<pubDate>Wed, 03 May 2023 13:56:25 +0000</pubDate>

		<dc:creator>PA</dc:creator>

		<guid isPermaLink="true">https://publicassistants.org/BIKE-INITIATIVE</guid>

		<description>
	
BIKE INITIATIVEA free bike distribution service to mobilize the BIPOC community throughout NYC. 
Mechanics work to provide bike repairs and distribute refurbished bikes to our 
growing waitlist of community membersin need. Funded by donations of money and bike parts, 
we have been able to get 60+ bikes on the road and service over 150 riders.




&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/d4b7408269beb8ad9b082c390d84df5a126c17b5750528f9ce20053e7d6b70ba/25090028.JPG" data-mid="177582607" border="0" data-marker-id="2" src="https://freight.cargo.site/w/1000/i/d4b7408269beb8ad9b082c390d84df5a126c17b5750528f9ce20053e7d6b70ba/25090028.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/6d4669f21c983b70cef0bbd7eb3e69383a5787a38247ed5abfce33f251b588a3/25090030.JPG" data-mid="177582608" border="0"  src="https://freight.cargo.site/w/1000/i/6d4669f21c983b70cef0bbd7eb3e69383a5787a38247ed5abfce33f251b588a3/25090030.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/dc1f4d2e28edb607522c6edcdabd5689b4c8a45c8fa014d3e90f6489ba5b708f/25090032.JPG" data-mid="177582609" border="0"  src="https://freight.cargo.site/w/1000/i/dc1f4d2e28edb607522c6edcdabd5689b4c8a45c8fa014d3e90f6489ba5b708f/25090032.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/0cbafac885d02922fba218603b9c9a688b2a9e61f52c31e76523ac99f193e700/25110036.JPG" data-mid="177582610" border="0"  src="https://freight.cargo.site/w/1000/i/0cbafac885d02922fba218603b9c9a688b2a9e61f52c31e76523ac99f193e700/25110036.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/1f7099e598c8633e0c2d05a215f3563efa146edb3e124aff5dd5f9677d86bd9e/38870011.JPG" data-mid="177582611" border="0"  src="https://freight.cargo.site/w/1000/i/1f7099e598c8633e0c2d05a215f3563efa146edb3e124aff5dd5f9677d86bd9e/38870011.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/53eb5c57ff8c3860f6012e17c77e5da71ef765d851fdbca0c17f7b5a19364f55/38870024.JPG" data-mid="177582612" border="0"  src="https://freight.cargo.site/w/1000/i/53eb5c57ff8c3860f6012e17c77e5da71ef765d851fdbca0c17f7b5a19364f55/38870024.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/ee98478681efd8a15ae22639ebb7f63fe8d2b5561a0ef1031aa793bfd0bca7b9/38870027.JPG" data-mid="177582613" border="0"  src="https://freight.cargo.site/w/1000/i/ee98478681efd8a15ae22639ebb7f63fe8d2b5561a0ef1031aa793bfd0bca7b9/38870027.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/2919e06ed64016634b61f77334f4255cf6dbebdcea3d03bceea995607b422225/38870029.JPG" data-mid="177582615" border="0"  src="https://freight.cargo.site/w/1000/i/2919e06ed64016634b61f77334f4255cf6dbebdcea3d03bceea995607b422225/38870029.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/813c6c8d18fe71528fd0aa4c9a6e2f388fa46cf128af734a722a4cb9bfe98ccd/38870031.JPG" data-mid="177582616" border="0"  src="https://freight.cargo.site/w/1000/i/813c6c8d18fe71528fd0aa4c9a6e2f388fa46cf128af734a722a4cb9bfe98ccd/38870031.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/9ece3f00f238c65ab37034487d4e84aefb26b2bb7c9b92b5735c74866ff41b50/38870032.JPG" data-mid="177582617" border="0"  src="https://freight.cargo.site/w/1000/i/9ece3f00f238c65ab37034487d4e84aefb26b2bb7c9b92b5735c74866ff41b50/38870032.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/605dc4f4c016df49d318483c8910ef510831b3ccb0b87dd600bdf4e21ae480fd/38870034.JPG" data-mid="177582619" border="0"  src="https://freight.cargo.site/w/1000/i/605dc4f4c016df49d318483c8910ef510831b3ccb0b87dd600bdf4e21ae480fd/38870034.JPG" /&#62;
&#60;img width="3089" height="2048" width_o="3089" height_o="2048" data-src="https://freight.cargo.site/t/original/i/1d8af5ac1669f5683949f813a04bd9630f8a3655c054d7ffb97bfcc1cb9c65b6/61710002.JPG" data-mid="177582622" border="0"  src="https://freight.cargo.site/w/1000/i/1d8af5ac1669f5683949f813a04bd9630f8a3655c054d7ffb97bfcc1cb9c65b6/61710002.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/afecf7585e0712609f24a1790473ba1489a831c4e51855459797f0a878d6737b/72130011.JPG" data-mid="177582623" border="0"  src="https://freight.cargo.site/w/1000/i/afecf7585e0712609f24a1790473ba1489a831c4e51855459797f0a878d6737b/72130011.JPG" /&#62;
</description>
		
	</item>
		
		
	<item>
		<title>MEDIC TRAINING</title>
				
		<link>https://publicassistants.org/MEDIC-TRAINING</link>

		<pubDate>Fri, 16 Jun 2023 15:06:21 +0000</pubDate>

		<dc:creator>PA</dc:creator>

		<guid isPermaLink="true">https://publicassistants.org/MEDIC-TRAINING</guid>

		<description>
	
MEDIC TRAINING
We believe confident self sufficiency is a path to resilient resistance. Over a 4-day workshop, participants received 20 hours ofcommunity medic training with informative sessions including&#38;nbsp;
role playing emergency scenarios.



&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/86df508e1cb8e4d6ea224f53317ecfbd8f6a8b38c2d56ca5c3213cb737032514/82260023.JPG" data-mid="183021920" border="0"  src="https://freight.cargo.site/w/1000/i/86df508e1cb8e4d6ea224f53317ecfbd8f6a8b38c2d56ca5c3213cb737032514/82260023.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/676a34ae7dac6e02e3b35f91b928c2b4ede814690da6ce555bb36a121509f748/82260024.JPG" data-mid="183021921" border="0"  src="https://freight.cargo.site/w/1000/i/676a34ae7dac6e02e3b35f91b928c2b4ede814690da6ce555bb36a121509f748/82260024.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/d151708e5945743ce7c5939d58f815ed508e8c20aa4dfd4a9d8f681160af5430/82260025.JPG" data-mid="183021922" border="0"  src="https://freight.cargo.site/w/1000/i/d151708e5945743ce7c5939d58f815ed508e8c20aa4dfd4a9d8f681160af5430/82260025.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/cfcaa1f42d38d15eea48dbf575095eec412a48067132cce6cc01cace7d4c5306/82260026.JPG" data-mid="183021923" border="0"  src="https://freight.cargo.site/w/1000/i/cfcaa1f42d38d15eea48dbf575095eec412a48067132cce6cc01cace7d4c5306/82260026.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/e2650e76219891136e29ddafd26797538326f07b9c693ba3b4292b04566953ec/82260028.JPG" data-mid="183021924" border="0"  src="https://freight.cargo.site/w/1000/i/e2650e76219891136e29ddafd26797538326f07b9c693ba3b4292b04566953ec/82260028.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/6e8bc3bf8cbfcfd52ed8efc632a220cece940c79564c37b5f4cdfcf69ae8eeb4/82260029.JPG" data-mid="183021925" border="0"  src="https://freight.cargo.site/w/1000/i/6e8bc3bf8cbfcfd52ed8efc632a220cece940c79564c37b5f4cdfcf69ae8eeb4/82260029.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/e2d91e3b54c6b4eb6c2e9ee8c1d16697c40c9d365f9d1a4ccd5d66e392cb5ecb/82260031.JPG" data-mid="183021926" border="0"  src="https://freight.cargo.site/w/1000/i/e2d91e3b54c6b4eb6c2e9ee8c1d16697c40c9d365f9d1a4ccd5d66e392cb5ecb/82260031.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/b5e017ef4893d452a7c372d42a66cbb2472814f968cb28357065f6eac12ad2c7/82260032.JPG" data-mid="183021927" border="0"  src="https://freight.cargo.site/w/1000/i/b5e017ef4893d452a7c372d42a66cbb2472814f968cb28357065f6eac12ad2c7/82260032.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/d66b93033883e3dc564f183b5957f0842303883d48a576a10488ee542c1af3ff/82260036.JPG" data-mid="183021928" border="0"  src="https://freight.cargo.site/w/1000/i/d66b93033883e3dc564f183b5957f0842303883d48a576a10488ee542c1af3ff/82260036.JPG" /&#62;










</description>
		
	</item>
		
		
	<item>
		<title>TOY COAT DRIVE</title>
				
		<link>https://publicassistants.org/TOY-COAT-DRIVE</link>

		<pubDate>Wed, 03 May 2023 21:09:58 +0000</pubDate>

		<dc:creator>PA</dc:creator>

		<guid isPermaLink="true">https://publicassistants.org/TOY-COAT-DRIVE</guid>

		<description>
	

TOY COAT DRIVE&#38;nbsp;

Our annual Toy and Coat Drive is meant to inspire feelings of joy
and support to local families during the Holiday season, 
serving up to as many as 82 families.


&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/69d9eb5a7f188dff9dd630f2af72779300f5eeaa5a4b3b4013d5dd1ea5b82430/19520032.JPG" data-mid="178515805" border="0"  src="https://freight.cargo.site/w/1000/i/69d9eb5a7f188dff9dd630f2af72779300f5eeaa5a4b3b4013d5dd1ea5b82430/19520032.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/35f3349871668cecb1b4c8ecac9efcf816d85a01c1d636221f29ab6812b6f459/19520033.JPG" data-mid="178515806" border="0"  src="https://freight.cargo.site/w/1000/i/35f3349871668cecb1b4c8ecac9efcf816d85a01c1d636221f29ab6812b6f459/19520033.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/c2f37b59f6dee05a587ebc40e5ef6217d92b3a1f26efe75396538ecd289feda3/19520034.JPG" data-mid="178515807" border="0"  src="https://freight.cargo.site/w/1000/i/c2f37b59f6dee05a587ebc40e5ef6217d92b3a1f26efe75396538ecd289feda3/19520034.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/d8aba6bdae37c6e4edb639904d934b5211266b08b55d4c1ad9d7c8f3dcdd00b1/19520036.JPG" data-mid="178515808" border="0"  src="https://freight.cargo.site/w/1000/i/d8aba6bdae37c6e4edb639904d934b5211266b08b55d4c1ad9d7c8f3dcdd00b1/19520036.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/986c2ef548c705d2749664776c9094693e296249d119c8b6aa856ddeb33b5ee0/19520029.JPG" data-mid="178515804" border="0"  src="https://freight.cargo.site/w/1000/i/986c2ef548c705d2749664776c9094693e296249d119c8b6aa856ddeb33b5ee0/19520029.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/f2551754cbc14b4c962ec234889536a3f9ab1f167cd8dac214e32088acce383e/19520037.JPG" data-mid="178515809" border="0"  src="https://freight.cargo.site/w/1000/i/f2551754cbc14b4c962ec234889536a3f9ab1f167cd8dac214e32088acce383e/19520037.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/cadc7f94eeee6c733fc3e0fce42eba9d652a72625afad0ac5d7fa6acff410468/20110004.JPG" data-mid="178515810" border="0"  src="https://freight.cargo.site/w/1000/i/cadc7f94eeee6c733fc3e0fce42eba9d652a72625afad0ac5d7fa6acff410468/20110004.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/b1ccb25406a58e514908e08a69826eaf08882d2e418c7bfe32dd973616a4fc1f/20110005.JPG" data-mid="178515811" border="0"  src="https://freight.cargo.site/w/1000/i/b1ccb25406a58e514908e08a69826eaf08882d2e418c7bfe32dd973616a4fc1f/20110005.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/50d32885c390c9a29e560675ae95d49b3e5615137a5368f7870c2932df556d50/20110006.JPG" data-mid="178515812" border="0"  src="https://freight.cargo.site/w/1000/i/50d32885c390c9a29e560675ae95d49b3e5615137a5368f7870c2932df556d50/20110006.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/5394c44d8a90c625eab9b83e35d56320c384c6cda7549dfe911e41cccd94d3b6/20110007.JPG" data-mid="178515813" border="0"  src="https://freight.cargo.site/w/1000/i/5394c44d8a90c625eab9b83e35d56320c384c6cda7549dfe911e41cccd94d3b6/20110007.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/3b9c90a5d2ac8e7dc04df7d85112e669031fa65b2bca87f19a91b88907883583/20110008.JPG" data-mid="178515814" border="0"  src="https://freight.cargo.site/w/1000/i/3b9c90a5d2ac8e7dc04df7d85112e669031fa65b2bca87f19a91b88907883583/20110008.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/51d79352b3d776c5624e16d1541b0b16330757ab34e7abfb185227d487ccbd34/20110009.JPG" data-mid="178515815" border="0"  src="https://freight.cargo.site/w/1000/i/51d79352b3d776c5624e16d1541b0b16330757ab34e7abfb185227d487ccbd34/20110009.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/08cf902f12eef86d5b5cc817bcddd27dc895568d2acb657d1d569fe68c2d2a41/20110010.JPG" data-mid="178515816" border="0"  src="https://freight.cargo.site/w/1000/i/08cf902f12eef86d5b5cc817bcddd27dc895568d2acb657d1d569fe68c2d2a41/20110010.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/b582b6cb3fc1bcafeabd65bc1491fc1b73ed84ad6e580412d530e81793ddf5f2/20110012.JPG" data-mid="178515817" border="0"  src="https://freight.cargo.site/w/1000/i/b582b6cb3fc1bcafeabd65bc1491fc1b73ed84ad6e580412d530e81793ddf5f2/20110012.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/ebb7ca100354af166f3e6147c1893faf62e61fb1b59a126e36c93d43175c771e/20110013.JPG" data-mid="178515818" border="0"  src="https://freight.cargo.site/w/1000/i/ebb7ca100354af166f3e6147c1893faf62e61fb1b59a126e36c93d43175c771e/20110013.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/ebb7ca100354af166f3e6147c1893faf62e61fb1b59a126e36c93d43175c771e/20110013.JPG" data-mid="178515818" border="0"  src="https://freight.cargo.site/w/1000/i/ebb7ca100354af166f3e6147c1893faf62e61fb1b59a126e36c93d43175c771e/20110013.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/5cf1879d191bb5948dd7f0b2d6e21b08b02dc9db6a26fce701003a876cc917ad/20110015.JPG" data-mid="178515819" border="0"  src="https://freight.cargo.site/w/1000/i/5cf1879d191bb5948dd7f0b2d6e21b08b02dc9db6a26fce701003a876cc917ad/20110015.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/566b3c2505b04a5ade4cf65309e2bd9d7476c0609dbf1e55321c902bd9e51c0e/20110028.JPG" data-mid="178515820" border="0"  src="https://freight.cargo.site/w/1000/i/566b3c2505b04a5ade4cf65309e2bd9d7476c0609dbf1e55321c902bd9e51c0e/20110028.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/b244e2a1c2124b09ab843b06c0acb6335d9490002f65b421d3ddafa1d19907cb/20110029.JPG" data-mid="178515821" border="0"  src="https://freight.cargo.site/w/1000/i/b244e2a1c2124b09ab843b06c0acb6335d9490002f65b421d3ddafa1d19907cb/20110029.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/96ce9727d6629b559bcddd57e92545d732184f5d27666bee344b749068ab5a92/20110034.JPG" data-mid="178515822" border="0"  src="https://freight.cargo.site/w/1000/i/96ce9727d6629b559bcddd57e92545d732184f5d27666bee344b749068ab5a92/20110034.JPG" /&#62;
&#60;img width="2048" height="3088" width_o="2048" height_o="3088" data-src="https://freight.cargo.site/t/original/i/3e08be5bceb7d6496193e25801f924a50006510f2d436559b18c487b27b8d770/20110035.JPG" data-mid="178515823" border="0"  src="https://freight.cargo.site/w/1000/i/3e08be5bceb7d6496193e25801f924a50006510f2d436559b18c487b27b8d770/20110035.JPG" /&#62;
&#60;img width="3088" height="2048" width_o="3088" height_o="2048" data-src="https://freight.cargo.site/t/original/i/e6580bd72764521e22cf8051526161d595cd829943ef0d6fdd82218cbbe4a463/20110036.JPG" data-mid="178515824" border="0"  src="https://freight.cargo.site/w/1000/i/e6580bd72764521e22cf8051526161d595cd829943ef0d6fdd82218cbbe4a463/20110036.JPG" /&#62;







</description>
		
	</item>
		
	</channel>
</rss>