Файловый менеджер - Редактировать - /home/jogoso94/public_html/static/img/logo/connect_image_puzzle.zip
�азад
PK �ZY�*� � sw.jsnu �[��� 'use strict';const OFFLINE_DATA_FILE="offline.json";const CACHE_NAME_PREFIX="c3offline";const BROADCASTCHANNEL_NAME="offline";const CONSOLE_PREFIX="[SW] ";const LAZYLOAD_KEYNAME="";const broadcastChannel=typeof BroadcastChannel==="undefined"?null:new BroadcastChannel(BROADCASTCHANNEL_NAME);function PostBroadcastMessage(o){if(!broadcastChannel)return;setTimeout(()=>broadcastChannel.postMessage(o),3E3)}function Broadcast(type){PostBroadcastMessage({"type":type})} function BroadcastDownloadingUpdate(version){PostBroadcastMessage({"type":"downloading-update","version":version})}function BroadcastUpdateReady(version){PostBroadcastMessage({"type":"update-ready","version":version})}function IsUrlInLazyLoadList(url,lazyLoadList){if(!lazyLoadList)return false;try{for(const lazyLoadRegex of lazyLoadList)if((new RegExp(lazyLoadRegex)).test(url))return true}catch(err){console.error(CONSOLE_PREFIX+"Error matching in lazy-load list: ",err)}return false} function WriteLazyLoadListToStorage(lazyLoadList){if(typeof localforage==="undefined")return Promise.resolve();else return localforage.setItem(LAZYLOAD_KEYNAME,lazyLoadList)}function ReadLazyLoadListFromStorage(){if(typeof localforage==="undefined")return Promise.resolve([]);else return localforage.getItem(LAZYLOAD_KEYNAME)}function GetCacheBaseName(){return CACHE_NAME_PREFIX+"-"+self.registration.scope}function GetCacheVersionName(version){return GetCacheBaseName()+"-v"+version} async function GetAvailableCacheNames(){const cacheNames=await caches.keys();const cacheBaseName=GetCacheBaseName();return cacheNames.filter(n=>n.startsWith(cacheBaseName))}async function IsUpdatePending(){const availableCacheNames=await GetAvailableCacheNames();return availableCacheNames.length>=2} async function GetMainPageUrl(){const allClients=await clients.matchAll({includeUncontrolled:true,type:"window"});for(const c of allClients){let url=c.url;if(url.startsWith(self.registration.scope))url=url.substring(self.registration.scope.length);if(url&&url!=="/"){if(url.startsWith("?"))url="/"+url;return url}}return""} function fetchWithBypass(request,bypassCache){if(typeof request==="string")request=new Request(request);if(bypassCache)return fetch(request.url,{headers:request.headers,mode:request.mode,credentials:request.credentials,redirect:request.redirect,cache:"no-store"});else return fetch(request)} async function CreateCacheFromFileList(cacheName,fileList,bypassCache){const responses=await Promise.all(fileList.map(url=>fetchWithBypass(url,bypassCache)));let allOk=true;for(const response of responses)if(!response.ok){allOk=false;console.error(CONSOLE_PREFIX+"Error fetching '"+response.url+"' ("+response.status+" "+response.statusText+")")}if(!allOk)throw new Error("not all resources were fetched successfully");const cache=await caches.open(cacheName);try{return await Promise.all(responses.map((response, i)=>cache.put(fileList[i],response)))}catch(err){console.error(CONSOLE_PREFIX+"Error writing cache entries: ",err);caches.delete(cacheName);throw err;}} async function UpdateCheck(isFirst){try{const response=await fetchWithBypass(OFFLINE_DATA_FILE,true);if(!response.ok)throw new Error(OFFLINE_DATA_FILE+" responded with "+response.status+" "+response.statusText);const data=await response.json();const version=data.version;const fileList=data.fileList;const lazyLoadList=data.lazyLoad;const currentCacheName=GetCacheVersionName(version);const cacheExists=await caches.has(currentCacheName);if(cacheExists){const isUpdatePending=await IsUpdatePending();if(isUpdatePending){console.log(CONSOLE_PREFIX+ "Update pending");Broadcast("update-pending")}else{console.log(CONSOLE_PREFIX+"Up to date");Broadcast("up-to-date")}return}const mainPageUrl=await GetMainPageUrl();fileList.unshift("./");if(mainPageUrl&&fileList.indexOf(mainPageUrl)===-1)fileList.unshift(mainPageUrl);console.log(CONSOLE_PREFIX+"Caching "+fileList.length+" files for offline use");if(isFirst)Broadcast("downloading");else BroadcastDownloadingUpdate(version);if(lazyLoadList)await WriteLazyLoadListToStorage(lazyLoadList);await CreateCacheFromFileList(currentCacheName, fileList,!isFirst);const isUpdatePending=await IsUpdatePending();if(isUpdatePending){console.log(CONSOLE_PREFIX+"All resources saved, update ready");BroadcastUpdateReady(version)}else{console.log(CONSOLE_PREFIX+"All resources saved, offline support ready");Broadcast("offline-ready")}}catch(err){console.warn(CONSOLE_PREFIX+"Update check failed: ",err)}}self.addEventListener("install",event=>{event.waitUntil(UpdateCheck(true).catch(()=>null))}); async function GetCacheNameToUse(availableCacheNames,doUpdateCheck){if(availableCacheNames.length===1||!doUpdateCheck)return availableCacheNames[0];const allClients=await clients.matchAll();if(allClients.length>1)return availableCacheNames[0];const latestCacheName=availableCacheNames[availableCacheNames.length-1];console.log(CONSOLE_PREFIX+"Updating to new version");await Promise.all(availableCacheNames.slice(0,-1).map(c=>caches.delete(c)));return latestCacheName} async function HandleFetch(event,doUpdateCheck){const availableCacheNames=await GetAvailableCacheNames();if(!availableCacheNames.length)return fetch(event.request);const useCacheName=await GetCacheNameToUse(availableCacheNames,doUpdateCheck);const cache=await caches.open(useCacheName);const cachedResponse=await cache.match(event.request);if(cachedResponse)return cachedResponse;const result=await Promise.all([fetch(event.request),ReadLazyLoadListFromStorage()]);const fetchResponse=result[0];const lazyLoadList= result[1];if(IsUrlInLazyLoadList(event.request.url,lazyLoadList))try{await cache.put(event.request,fetchResponse.clone())}catch(err){console.warn(CONSOLE_PREFIX+"Error caching '"+event.request.url+"': ",err)}return fetchResponse} self.addEventListener("fetch",event=>{if((new URL(event.request.url)).origin!==location.origin)return;const doUpdateCheck=event.request.mode==="navigate";const responsePromise=HandleFetch(event,doUpdateCheck);if(doUpdateCheck)event.waitUntil(responsePromise.then(()=>UpdateCheck(false)));event.respondWith(responsePromise)}); PK �Zݘf! ! workermain.jsnu �[��� 'use strict';let hasInitialised=false;let runtime=null;function HandleInitRuntimeMessage(e){const data=e.data;if(data&&data["type"]==="init-runtime"){InitRuntime(data);self.removeEventListener("message",HandleInitRuntimeMessage)}}self.addEventListener("message",HandleInitRuntimeMessage);self.c3_import=url=>import(url);function IsAbsoluteURL(url){return/^(?:[a-z\-]+:)?\/\//.test(url)||url.substr(0,5)==="data:"||url.substr(0,5)==="blob:"}function IsRelativeURL(url){return!IsAbsoluteURL(url)} async function LoadScripts(scriptsArr){if(scriptsArr.length===1){const url=scriptsArr[0];await import(((IsRelativeURL(url)?"./":"")+url))}else{const scriptStr=scriptsArr.map(url=>`import "${IsRelativeURL(url)?"./":""}${url}";`).join("\n");const blobUrl=URL.createObjectURL(new Blob([scriptStr],{type:"application/javascript"}));try{await import(blobUrl)}catch(err){console.warn("[Construct] Unable to import script from blob: URL. Falling back to loading scripts sequentially, which could significantly increase loading time. Make sure blob: URLs are allowed for best performance.", err);for(const url of scriptsArr)await import(((IsRelativeURL(url)?"./":"")+url))}}} async function InitRuntime(data){if(hasInitialised)throw new Error("already initialised");hasInitialised=true;const messagePort=data["messagePort"];const runtimeBaseUrl=data["runtimeBaseUrl"];const exportType=data["exportType"];self.devicePixelRatio=data["devicePixelRatio"];const workerDependencyScripts=data["workerDependencyScripts"].map(urlOrBlob=>{let url=urlOrBlob;if(urlOrBlob instanceof Blob)url=URL.createObjectURL(urlOrBlob);else url=(new URL(url,runtimeBaseUrl)).toString();return url});const runOnStartupFunctions= [];self.runOnStartup=function runOnStartup(f){if(typeof f!=="function")throw new Error("runOnStartup called without a function");runOnStartupFunctions.push(f)};const engineScripts=data["engineScripts"].map(url=>(new URL(url,runtimeBaseUrl)).toString());try{await LoadScripts([...workerDependencyScripts,...engineScripts])}catch(err){console.error("[C3 runtime] Failed to load all engine scripts in worker: ",err);return}const scriptsStatus=data["projectScriptsStatus"];self["C3_ProjectScriptsStatus"]= scriptsStatus;const mainProjectScript=data["mainProjectScript"];const allProjectScripts=data["projectScripts"];for(let [originalUrl,loadUrl]of allProjectScripts){if(!loadUrl)loadUrl=originalUrl;if(originalUrl===mainProjectScript)try{await LoadScripts([loadUrl]);if(exportType==="preview"&&!scriptsStatus[originalUrl])ReportProjectMainScriptError(originalUrl,"main script did not run to completion",messagePort)}catch(err){ReportProjectMainScriptError(originalUrl,err,messagePort)}else if(originalUrl=== "scriptsInEvents.js"||originalUrl.endsWith("/scriptsInEvents.js"))await LoadScripts([loadUrl])}data["runOnStartupFunctions"]=runOnStartupFunctions;if(exportType==="preview"&&typeof self.C3.ScriptsInEvents!=="object"){const msg="Failed to load JavaScript code used in events. Check all your JavaScript code has valid syntax.";console.error("[C3 runtime] "+msg);messagePort.postMessage({"type":"alert-error","message":msg});return}messagePort.postMessage({"type":"creating-runtime"});runtime=self["C3_CreateRuntime"](data); await self["C3_InitRuntime"](runtime,data)}function ReportProjectMainScriptError(url,err,messagePort){console.error(`[Preview] Failed to load project main script (${url}): `,err);const msg=`Failed to load project main script (${url}). Check all your JavaScript code has valid syntax. Press F12 and check the console for error details.`;messagePort.postMessage({"type":"alert-error","message":msg})}; PK �Z?�P�m m style.cssnu �[��� html, body { padding: 0; margin: 0; overflow: hidden; background: #000000; color: white; } html, body, canvas { touch-action: none; touch-action-delay: none; } #notSupportedWrap { margin: 2em auto 1em auto; width: 75%; max-width: 45em; border: 2px solid #aaa; border-radius: 1em; padding: 2em; background-color: #f0f0f0; font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif; color: black; } #notSupportedTitle { font-size: 1.8em; } .notSupportedMessage { font-size: 1.2em; } .notSupportedMessage em { color: #888; } /* bbcode styles */ .bbCodeH1 { font-size: 2em; font-weight: bold; } .bbCodeH2 { font-size: 1.5em; font-weight: bold; } .bbCodeH3 { font-size: 1.25em; font-weight: bold; } .bbCodeH4 { font-size: 1.1em; font-weight: bold; } .bbCodeItem::before { content: " • "; } /* For text icons converted to HTML: size the height to the line height preserving the aspect ratio. Also add position: relative as that allows just adding a 'top' style for the iconoffsety style. */ .c3-text-icon { height: 1em; width: auto; position: relative; } /* screen reader text */ .c3-screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); }PK �Z�$�� �� images/shared-0-sheet2.pngnu �[��� �PNG IHDR ��A� sRGB ��� IDATx^�� |�����l� ��+�V�� �穢� ����Z�Z+ا���Ċ[�O���%�V�.��>��\ZYMp[Dp�A[ ����ܹ��r��'���Z3��9���|g�K�A �[��D�C�ѕzw��!����-S'�%C�I���� �������O(�B²�(��l�f������Н�"�b�KŲfIab�ر����E ���� �� ���s�)@ �n�m o�@`O f �������i���ɔ3�ӹ�� �h]�[��ߚt9����f۶5����f[�du�#|=�-�$a�UX�p��+��z.G � �+F ��|��WC�ȔQ��;E ��-����@}����91k�/������G<�U��o�=��g>/�C � 4.]C ����0����)���#���u�� ���?f��syy�٪���&5{.{�5�t~N� � �� Bw@ �h���y}�jdB ]��������*.�7��g�� ��_��|@��nQ_A��/^������@@ �@@ �]�-�S�=R�Fנ� ��t��=R} ��ߐ�WWW�7n���I�tyk^"y�g_��&�� � @H��K��ſs�eU����C �� t��O���]�CJ?牛�P[��V��Ǟ{m��!0�bt�� ħtH��O��߾A�]��0�d.�~��iߠ� �Ϝ7�O<�De�B�B�x@�'OsB۲G�;�y���� �@p �Ys&@�c7���'� �)�@��-�S ;R�9��8Am��lߨ��L�@���O � @0Μ�X�|n�z���%�2�r�0��rh.`�:�T{��� �5u�7���Pu=GӮ�载p�o�/�r��}�[ � ���4� t)P>g�X�uL�k)�tMŁ�,`�r����]�l�sE?����o�+��<,�N��Id��^�9h @ �A��P �ſ�d� U[��P�!#�l���7�C��&r�k:�<v�M'�՚v1�-˖�[�k�չ�� � �ǕV@ ���]���d�V�L-L�z�4[�\������%^��E��:�S/�Y�~�7�G� �WZE :�e���V��,��m� [j\��O�xBkNc-ָ��{ :ׇ�!� ��´� � �O���� �P�(���?��d+@��O �qq�� `2 � Ax��O��� �(�@�Ko�� �� �,��m xJs � �/�4� �&���?�&[2�0H�����V��� @���3�T� �ـ �)��⿵�l�g�h�<^����V����� <'�A�A� �T�D R~,��v��qR5f)� ������h��q�q�kXz �B�@`/ & �_����� �(m"�o���`�5ib�W}�� ���%�O� �?[ZF �� ���wL� �3�q ���? ���� @���-�C� � � x)P^]"VK�j���f۵u�z@����4d!`O�V"� �^���i]}9���# ~�>x!@ �"m � �@��F�ݱ��������@�;�\�l�yu��@0Μr �͏O#� ��-�Sg[�� =�!�����Қ�]�=J�G/ 4, ]B �� � �@��.�[{�V��V��#�@����.��'�� �Ii| ��&@ Fa,�^���$c�� ���OY���S� @˲�)h'@ ��@ �k�Z �`�e�sx!��5`+@/��q ���"@ �+�"�@��\�;�l�)� �w� � P��A �aQ��%@ ��@ 2{���_�̴n���/���?[zPJϛ �@� Pi",���_�`�gC�T@��ʆ� u�" :V�>!�@{ � �V@���Û�N %n��q ���>����_����[I=�4��4� > ��J� A����l��Ɛt�l�"b+@�f �~5�G �� �H'�����3;���G g���b'����q ���"@ �+�"�@�*�-U�9V�1�R&Ug�Ԯ_t� طޣ�oYe�U���h� hT�� � 09��@ż�?<Z�RIZ���Z��a��6��y��ߎ��� �,�)�R�Gu�[ ����q��V@�֩��� P�K� @���!�@� �i�@�Z��O�?�.S��6����ֺݯ�0!�S��g/к�u~�Z�^��`@�ſS7�~k�D���/�?I �9) "�� >��$��Wi���sׯ8}���sb;�@�$�F$_=10R-"�����)��2�4��) �Ʃ�������V����f������_�ſS8��2�� qq0�$@ <�E@+�+�V�mMξO{KU0P�}{!҈�ʈ� C�*Q8�Z�V�0)��]0��m�Uq�����럭 �� ��A �� � ���ZE��) �`�ԢB�Yt#��I�����,�[�V��'$v,��-�>\��ڷտ��_�o@0`��?UL���&